weblogic学习(WLST)

启动
方法一
java weblogic.WLST
在这里插入图片描述
/u01/app/oracle/product/fmw11g/wlserver_10.3/server/bin
在这里插入图片描述
source setWLSEnv.sh
weblogic学习(WLST)_第1张图片
java weblogic.WLST
weblogic学习(WLST)_第2张图片
readDomain:读取域信息
ls():读取内容
readDomain(’/u01/app/oracle/product/fmw11g/user_projects/domains/base_domain/’)
ls()
weblogic学习(WLST)_第3张图片
退出
weblogic学习(WLST)_第4张图片
使用脚本启动
创建脚本
在这里插入图片描述
java weblogic.WLST test.py
weblogic学习(WLST)_第5张图片
执行后不退出
java weblogic.WLST -i test.py
weblogic学习(WLST)_第6张图片
最简单的方法
/u01/app/oracle/product/fmw11g/wlserver_10.3/common/bin
在这里插入图片描述
在这里插入图片描述
weblogic学习(WLST)_第7张图片
使用帮助命令
help()
weblogic学习(WLST)_第8张图片
记录执行的命令
startRecording(‘lh.py’)
/u01/app/oracle/product/fmw11g/wlserver_10.3/common/bin/lh.py
在这里插入图片描述
readDomain(’/u01/app/oracle/product/fmw11g/user_projects/domains/base_domain/’)
ls()
stopRecording()
在这里插入图片描述
查看错误提示
readDomain(‘aaa’)
在这里插入图片描述
查看目录结构
在这里插入图片描述
cd:进入目录
weblogic学习(WLST)_第9张图片
在线模式修改参数
connect()
weblogic学习(WLST)_第10张图片
edit()
weblogic学习(WLST)_第11张图片
startEdit()
在这里插入图片描述
cd(‘Servers’)
weblogic学习(WLST)_第12张图片
create(‘Server-2’,‘Server’)
weblogic学习(WLST)_第13张图片
rw- ListenPort 7001
在这里插入图片描述
修改
set(‘ListenPort’,7008)
showChanges()
weblogic学习(WLST)_第14张图片
在这里插入图片描述
undo()回滚
在这里插入图片描述
cancelEdit()
在这里插入图片描述
观查修改
connect(‘weblogic’,‘Beijing_123’,‘t3://localhost:7001’)
weblogic学习(WLST)_第15张图片
ListenAddress,没有值
在这里插入图片描述
weblogic学习(WLST)_第16张图片
cmo.setListenAddress(‘localhost’)
在这里插入图片描述
weblogic学习(WLST)_第17张图片
weblogic学习(WLST)_第18张图片
weblogic学习(WLST)_第19张图片
activate()
weblogic学习(WLST)_第20张图片
weblogic学习(WLST)_第21张图片

你可能感兴趣的:(weblogic)