WAS: Criação do Deployment Manager via Response File: Difference between revisions

From Wiki
No edit summary
No edit summary
 
Line 39: Line 39:


== Ver também ==  
== Ver também ==  
* [[WAS: Criação do Profile de Node Agent via Response File]]
* [[WAS: Verificando a versão de uma aplicação]]





Latest revision as of 20:39, 4 February 2013

Exemplo para criar o Deployment Manager do Connections 4

Configurando o Deployment Manager

Crie o arquivo

vi /opt/Packages/createDmgrResponse.txt

com as opções:

create
profileName=Dmgr01
profilePath=/opt/IBM/WebSphere/AppServer/profiles/Dmgr01
templatePath=/opt/IBM/WebSphere/AppServer/profileTemplates/management
nodeName=dmgr01node
cellName=connectionsCell
hostName=condmgr01
serverType=DEPLOYMENT_MANAGER
enableAdminSecurity=true
isDefault
personalCertValidityPeriod=15
signingCertValidityPeriod=15
adminUserName=wsadmin
adminPassword=c4demo
 

Salvar e Feche.

Execute o comando

cd /opt/IBM/WebSphere/AppServer/bin

./manageprofiles.sh -response /opt/Packages/createDmgrResponse.txt

retornando a seguinte mensagem

INSTCONFSUCCESS: Success: Profile Dmgr01 now exists. Please consult
/opt/IBM/WebSphere/AppServer/profiles/Dmgr01/logs/AboutThisProfile.txt for more information about this profile.


Ver também