2011년 7월 22일 금요일

[WebSphere] Profiles Create & Delete

Profiles 만들기

(64bit WebSphere 제품에서는 필요한 명령 중에 하나일 것이다.)
profiles Templates만 제대로 지정한다면 PMT를 이용하여 프로파일 생성하는 것과
거의 동일하고 쉽게 프로파일을 만들 수 있다.
Parameter가 다소 길기 때문에 따로 shell이나 notepad에 만들어서 실행하면 간편하다.
그리고, 한줄로 입력해야 한다.

### Deploy Mamager profile
vi dmgr.sh
/usr/IBM/WebSphere/AppServer/bin/manageprofiles.sh -create \
        -templatePath /usr/IBM/WebSphere/AppServer/profileTemplates/dmgr \
        -profilePath /usr/IBM/WebSphere/AppServer/profiles/Dmgr01 \
        -profileName Dmgr01 \
[ ## optional ##
        -cellName was70ndCell01 \
        -nodeName was70nd01Manager01 \
        -hostname was70nd
]


### Application Server profile
vi node.sh
/usr/IBM/WebSphere/AppServer/bin/manageprofiles.sh -create \
        -templatePath /usr/IBM/WebSphere/AppServer/profileTemplates/default \
        -profilePath /usr/IBM/WebSphere/AppServer/profiles/AppSrv11 \
        -profileName AppSrv11 \
[ ## optional ##
        -cellName was70ndCell02 \
        -nodeName was70ndNode01 \
        -hostname was70nd
]


프로파일 삭제하기
위치: /usr/IBM/WebSphere/AppServer/bin
명령: manageprofiles.sh -delete -profilesName AppSrv11

댓글 없음:

댓글 쓰기