CreateProfile - cws-khuntly/WebSphere GitHub Wiki


date: 2025-05-08 13:17:47 created: 2025-05-08 13:17:35 categories:

  • WebSphere / Server Build / Application Server

Create Server Profile

Login to the application server host via SSH

Export the WAS_INSTALL_ROOT variable:

WAS_INSTALL_ROOT="/opt/IBM/WebSphere/AppServer"

Export the profile name variable:

PROFILE_NAME=XXX

Export the server name variable:

SERVER_NAME=XXX

Execute the following command:

${WAS_INSTALL_ROOT}/bin/manageprofiles.sh -create \

    -templatePath ${WAS_INSTALL_ROOT}/profileTemplates/default -isDefault -applyPerfTuningSetting standard \

    -hostName $(hostname -f) -cellName $(hostname -s)Cell -nodeName $(hostname -s)Node -appServerNodeName dmgrNode \

    -profileName ${PROFILE_NAME} -profilePath /opt/IBM/WebSphere/profiles/${PROFILE_NAME} -serverName ${SERVER_NAME}

⚠️ **GitHub.com Fallback** ⚠️