linux下启动停止WebSphere

更新时间:2023-11-08 08:55:01 阅读量: 教育文库 文档下载

说明:文章内容仅供预览,部分内容可能不全。下载后的文档,内容与下面显示的完全一致。下载之前请确认下面内容是否您想要的,是否完整无缺。

linux下启动停止WebSphere

1.以root用户身份登陆,进入websphere安装目录的bin目录下,

# cd /opt/WebSphere/AppServer/bin(此路径根据WebSphere具体安装路径确定) //启动服务

[root@localhost bin]$ ./startServer.sh server1 //停止服务

[root@localhost bin]$ ./stopServer.sh server1 [root@localhost bin]$ 如果是集群可能的路径是 /opt/WebSphere/AppServer/bin //启动服务

[root@localhost bin]$ ./startManager.sh //停止服务

[root@localhost bin]$ ./stopManager.sh

如果启动时出现这样的错误信息: ADMU0118E: 日至文件无法写到位置

/opt/WebSphere/AppServer/logs/server1/startServer.log请使用 -logfile 指定不同的位置 ADMU3100I: 正在从服务器读取配置server1 ADMU0111E: 程序退出,带有错误。

com.ibm.ws.process.exception.InvalidFileException:

PROC0007E: Some files required by the process or the process definition were unaccessable. Please check the standard in, out, and error file redirects and directories. Process could not be created. ADMU0211I: 在文件

/opt/WebSphere/AppServer/logs/server1/startServer.log 中可看到错误的详细信息

ADMU1211I: 要获取故障的全部跟踪,使用 -trace 选项

可能是登陆的用户没有足够的权限,需要使用有权限的用户启动。 2.服务启动后进入管理控制台 http://localhost:9090/admin

进入/WebSphere/AppServer/firststeps/使用命令 [root@tc10 firststeps]# ./firststeps.sh 可以打开WAS第一步。

本文来源:https://www.bwwdw.com/article/3p32.html

Top