NewNode - cws-khuntly/WebSphere GitHub Wiki
date: 2025-05-08 14:49:28 created: 2025-05-08 14:49:14 categories:
- WebSphere / Server Build / Portal Server / Remote Search Services / Server build
Login to the Remote Search host via SSH
Export the WAS_INSTALL_ROOT variable:
declare -x WAS_INSTALL_ROOT="/opt/IBM/WebSphere/AppServer"
Export the profile name variable:
declare -x PROFILE_NAME=XXX
Export the server name variable:
declare -x SERVER_NAME=XXX
Create application server profile:
Turn off shell history:
set +o history
Create the profile:
${WAS_INSTALL_ROOT}/bin/manageprofiles.sh -create \
-templatePath ${WAS_INSTALL_ROOT}/profileTemplates/default -isDefault -applyPerfTuningSetting standard \
-hostName ${HOSTNAME} -cellName ${HOSTNAME}Cell -nodeName ${HOSTNAME}Node -appServerNodeName dmgrNode
-profileName ${PROFILE_NAME} -profilePath /opt/IBM/WebSphere/profiles/${PROFILE_NAME} -serverName ${SERVER_NAME}
Turn on shell history:
set -o history