1.查看环境配置信息D:Program FilesIBMWebSphereAppServerprofilesAppSrv01logsAboutThisProfile.txt
要创建的应用程序服务器环境: 应用程序服务器位置: D:Program FilesIBMWebSphereAppServerprofilesAppSrv01需要的磁盘空间: 200 MB概要文件名: AppSrv01将此概要文件设为缺省概要文件: True节点名: arcgis0Node01主机名: arcgis0启用管理安全性(建议): True管理控制台端口: 9060管理控制台安全端口: 9043HTTP 传输端口: 9080HTTPS 传输端口: 9443引导程序端口: 2809SOAP 连接器端口: 8880将应用程序服务器作为服务运行: True创建 Web 服务器定义: False
2.查看AppSrv01 的日志D:Program FilesIBMWebSphereAppServerprofilesAppSrv01logsserver1
3.Appsrv01 start/stop命令D:Program FilesIBMWebSphereAppServerprofilesAppSrv01in
4.修改主机名端口信息文件D:Program FilesIBMWebSphereAppServerprofilesAppSrv01configcellsarcgis0Node01Cell odesarcgis0Node01serverindex.xml
5.修改JVM内存设置1.修改配置文件D:Program FilesIBMWebSphereAppServerprofilesAppSrv01configcellsarcgis0Node01Cell odesarcgis0Node01serversserver1server.xml
2.(图形)服务器-->WebSpehre Application Server -->server1-->java和 进程管理-->进程定义--> JAVA 虚拟机-->初始堆大小、最大堆大小-->保存
中文字符乱码:
JVM参数:
-Ddefault.client.encoding=GBK -Dclient.encoding.override=GBK -Dfile.encoding=GBK -Duser.language=zh -Duser.region=CN
6.修改Websphere变量
Websphere修改变量错误导致控制台无法启动
因为是websphere变量错误控制台无法启动,所以我们只能去修改变量配置文件;
进入
C:ProgramFilesIBMWebSphereAppServerprofilesAppSrv01configcellsWIN-9389OC4NMRSNode01Cell odesWIN-9389OC4NMRSNode01 (全局变量)variables.xml
symbolicName="JAVA_HOME"value="${WAS_INSTALL_ROOT}/java
symbolicName="WAS_INSTALL_ROOT"value="C:Program FilesIBMWebSphereAppServer
C:ProgramFilesIBMWebSphereAppServerprofilesAppSrv01configcellsWIN-9389OC4NMRSNode01Cell odesWIN-9389OC4NMRSNode01serversserver1 (server1局部变量)
server1变量的优先级高于WIN-9389OC4NMRSNode01(主机名+节点) 中的变量;
variables.xml
symbolicName="JAVA_HOME"value="${WAS_INSTALL_ROOT}/java
symbolicName="WAS_INSTALL_ROOT"value="C:Program FilesIBMWebSphereAppServer
7.修改wasadmin密码
管理控制台密码遗忘有两种补救措施:
方法一:命令行——从$WAS_HOME/profiles/xxx 概要文件名/bin目录下,运行 wsadmin -conntype NONE 。当wsadmin的命令行窗口出现之后,运行 securityoff 。上述操作在应用服务器启动或停止的状态都能发出。再次启用WAS时,就是停用管理安全性的状态了。
方法二:修改配置文件——修改$WAS_HOMEconfigcellsxxx 下的security.xml,把第一个enable改成false就取消安全性了
8.创建概要文件:
注意:大小写
创建概要文件:
windows: manageprofiles.bat -create -profileName AppSrv02
unix:./manageprofiles.sh -create -profileName AppSrv01
-profilePath /opt/IBM/WebSphere/AppServer/profiles/AppSrv01
-templatePath /opt/IBM/WebSphere/AppServer/profileTemplates/default
列出概要文件:
D:Program FilesIBMWebSphereAppServerin>manageprofiles.bat -listProfiles[AppSrv01, AppSrv02]
cd /usr/IBM/WebSphere/AppServer/bin
查看删除概要
./manageprofiles.sh -listProfiles
[Dmgr01, AppSrv01]
./manageprofiles.sh -delete -profileName Dmgr01
./manageprofiles.sh -delete -profileName AppSrv01
创建管理概要
./manageprofiles.sh -create -profileName Dmgr03 -profilePath /usr/IBM/WebSphere/AppServer/profiles/Dmgr03
-templatePath /usr/IBM/WebSphere/AppServer/profileTemplates/dmgr/
如果概要文件需要在不同的机器上运行,设置 -hostName 为IP地址,默认为主机名
也可以自定义 -nodeName -cellName 值
创建应用概要
./manageprofiles.sh -create -profileName app3 -profilePath /usr/IBM/WebSphere/AppServer/profiles/AppSrv03 -templatePath /usr/IBM/WebSphere/AppServer/profileTemplates/default/
启动管理控制
/usr/IBM/WebSphere/AppServer/profiles/Dmgr03/bin/startManager.sh
查看SOAP端口
grep SOAP /usr/IBM/WebSphere/AppServer/profiles/Dmgr03/logs/AboutThisProfile.txt
管理 SOAP 连接器端口: 8888
增加应用概要
/usr/IBM/WebSphere/AppServer/profiles/AppSrv03/bin/addNode.sh 127.0.0.1 8888
启动
/usr/IBM/WebSphere/AppServer/profiles/AppSrv03/bin/startNode.sh
9.Websphere 修改端口配置(修改配置文件,图形)C:WebSphere6AppServerprofilesAppSrv01configcellssoftoaNode01Cell odessoftoaNode01serverindex.xml把9080端口改为80然后重启WAS服务
10.解决中文乱码问题
1、应用程序服务器 > server1 > 进程定义 > Java 虚拟机,为通用 JVM 自变量指定
-Ddefault.client.encoding=GBK -Dclient.encoding.override=GBK -Dfile.encoding=GBK -Duser.language=zh -Duser.region=CN进入查看D:Program FilesIBMWebSphereAppServerprofilesAppSrv01configcellsarcgis0Node01Cell odesarcgis0Node01serversserver1server.xml
转载:https://blog.csdn.net/cijian5351/article/details/100694151