这期内容当中小编将会给大家带来有关weblogic脚本工具WLST怎么用,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
1. 进入目录, 比如
cd /ebs_nas/oracle/Middleware/wlserver_10.3/common/bin
2. 启动脚本工具 WLST
$ ./wlst.sh
wls:/offline> exit() 退出
3. 连接节点管理器(NodeManager)和weblogic服务器(console)
wls:/offline> nmConnect("weblogic","webl0gic","localhost","5557","mydomain",
"/opt/appsvr/product/wls_103/user_projects/domains/mydomain","plain")
wls:/offline> connect('weblogic','webl0gic', localhost.com:7001')
4. 运行如下命令产生密钥文件,注意修改相应的目录
wls:/offline> storeUserConfig('/opt/appsvr/product/wls_103/user_projects/domains/mydomain/configfile.secure',
'/opt/appsvr/product/wls_103/user_projects/domains/mydomain /keyfile.secure')
5.怎么使用这些密钥文件
连接节点管理器
nmConnect (userConfigFile='/opt/appsvr/product/wls_103/user_projects/domains/mydomain/configfile.secure',
userKeyFile='/opt/appsvr/product/wls_103/user_projects/domains/mydomain/keyfile.secure',
host='localhost',port='5557',domainName='mydomain',
domainDir='/opt/appsvr/product/wls_103/user_projects/domains/mydomain',nmType='plain')
连接weblogic console服务器
connect(userConfigFile='/opt/appsvr/product/wls_103/user_projects/domains/mydomain/configfile.secure',
userKeyFile='/opt/appsvr/product/wls_103/user_projects/domains/mydomain/keyfile.secure',
url='localhost':7001')
上述就是小编为大家分享的weblogic脚本工具WLST怎么用了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注亿速云行业资讯频道。
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/200173.html