WebSphere 概要檔案管理,刪除和建立
參考事例
利用命令的方式在伺服器節點1檢視當前已經建立的DM和Node,然後刪除DM和節點,再重新建立DM、Node;
如下圖所示
cd d:\IBM\WebSphere\AppServer\bin
檢視當前的DM、Node
manageprofiles.bat -listProfiles
刪除profile
manageprofiles.bat -delete -profileName AppSrv01
manageprofiles.bat -delete -profileName Dmgr01
建立新profile前,需要刪除資料夾!!!
利用模板建立(建立管理概要)profile dmgr
manageprofiles.bat -create -templatePath d:\IBM\WebSphere\AppServer\profileTemplates\dmgr -profileName Dmgr01 -profilePath d:\IBM\WebSphere\AppServer\profiles\Dmgr01 -enableAdminSecurity true -adminUserName admin -adminPassword 111111
利用模板建立(建立應用概要)profile server
manageprofiles.bat -create -templatePath d:\IBM\WebSphere\AppServer\profileTemplates\default -profileName AppSrv01 -profilePath d:\IBM\WebSphere\AppServer\profiles\AppSrv01 -enableAdminSecurity true -adminUserName admin –adminPassword 111111
在伺服器節點2和3上檢視、刪除原有的Profiles,然後建立新的Profiles(這兩個節點只建立應用伺服器);
檢視當前的Node
manageprofiles.bat -listProfiles
刪除profile
manageprofiles.bat -delete -profileName AppSrv01
利用模板建立profile server
d:\IBM\WebSphere\AppServer\profiles\AppSrv01\bin
manageprofiles.bat -create -templatePath d:\IBM\WebSphere\AppServer\profileTemplates\default -profileName AppSrv01 -profilePath d:\IBM\WebSphere\AppServer\profiles\AppSrv01
同理進入管理控制檯刪除預設的server
manageprofiles 此命令在 websphere Application Server Network Deployment v6.1之上才有,之前的版本採用的命令為wasprofile.sh,這個需要特別注意。。
在Unix的機器上(包括AIX、HPUX)安裝websphere64位的話,想要建立Profile是沒有圖形化介面的,需要使用manageprofiles命令,下面就詳細描述一下如何使用這個命令。
1、建立DM的profile,使用的模版在{install_root}/profileTemplates/dmgr下
句法為:
manageprofile.sh -create –templatePath {install_root}/profileTemplates/dmgr
呼叫引數為:
-create 建立一個profile. (必選)
-templatePath 指定使用模版的路徑. (必選) 建立DM的路徑為{install_root}/profileTemplates/dmgr
-profileName 指定profile的名字. (可選)
-profilePath 指定proflile需要建立的路徑. (可選)
-hostName 指定profile對應的主機名稱. (可選)
-nodeName 指定profile對應的node的名稱. 此名稱必須在同一cell中唯一. (可選)
-cellName 指定profile對應的cell的名稱. 每一個profile的cell名稱必須唯一. (可選)
-isDefault 講此profile指定為預設的profile,在執行命令期間不需要使用profileName的引數. (可選)
-omitAction 附加條件. (可選)
-adminUserName 在指定administrative security選項後的管理員名稱. (可選)
-adminPassword 在指定administrative security選項後的管理員密碼. (可選)
-portsFile 指定profile的埠設定檔案. 此引數和-startingPort或-defaultPorts引數衝突. (可選)
-startingPort 制度建立profile是的所有的埠的起始的埠號. 同-portsFile或者-defaultPorts引數衝突. (可選)
-defaultPorts 對新建立的profile使用預設的埠號. 同-portsFile 或 -startingPort 引數衝突. (可選)
-validatePorts 進行埠號驗證,保證使用的埠號沒有已經被用或者被保留. (可選)
-enableAdminSecurity 新建立的profile使用使用者密碼方式認證,使用此引數後面跟 true. (可選)
-enableService 作為linux的service使用,使用此引數後面跟 true. (可選)
-serviceUserName 指定作為service使用時的使用者. (可選)
-webServerType 指定Web server的型別. (可選)
-webServerOS 指定Web server的作業系統的型別. (可選)
例子:
export WAS_HOME=d:\IBM
export PRO_HOME=d:\IBM\WebSphere\AppServer\profiles
以上指定websphere的安裝路徑和profile的路徑,或者輸入命令時替換
manageprofiles.sh -create \
-templatePath $WAS_HOME/profileTemplates/dmgr \
-profilePath $PRO_HOME/Dmgr01 \
-nodeName "nodename" \
-cellName "cell name" \
-enableAdminSecurity true \
-adminUserName wasadmin \
-adminPassword password \
-profileName Dmgr01 \
-hostName `hostname` \
2、建立custom的profile,使用的模版為{install_root}/profileTemplates/managed
句法為:
manageprofile.sh -create -templatePath {install_root}/profileTemplates/managed
呼叫引數同上:
要聯合到DM的例子
manageprofiles.sh -create \
-templatePath $WAS_HOME/profileTemplates/managed \
-profileName AppSrv01 \
-profilePath $PRO_HOME/AppSrv01 \
-nodeName test01 \
-hostName `hostname` \
-cellName test1 \
-dmgrHost 192.168.1.100 \
-dmgrPort 8879 \
-dmgrAdminPassword password \
-dmgrAdminUserName wasadmin
不用聯合到DM,而後用addNode.sh聯合的例子
manageprofiles.sh -create \
-templatePath $WAS_HOME/profileTemplates/managed \
-profilePath $PRO_HOME/AppSrv02 \
-nodeName test02 \
-cellName test2 \
-profileName AppSrv02 \
-hostName `hostname`
addNode.sh 192.168.1.100:8879 -username wasadmin -password password
3、建立appsrv的profile,使用的模版在install_root/profileTemplates/default
句法為:
manageprofile.sh -create -templatePath install_root/profileTemplates/default
呼叫引數同上:例子麼也就那樣
4、對於叢集來說,建立DM profile,然後建立多個custom的profile,addNode進去即可。或者把現有的app profile addNode到DM的概要檔案中,然後通過克隆建立叢集。