Created
April 26, 2013 15:30
-
-
Save laszlocsontos/5468140 to your computer and use it in GitHub Desktop.
Create a WebSphere profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PROFILE=newProfile | |
# Create new profile | |
manageprofiles.sh -create \ | |
-profileName $PROFILE \ | |
-profilePath /opt/ibm/was/v7/profiles/$PROFILE \ | |
-templatePath /opt/ibm/was/v7/profileTemplates/default \ | |
-enableAdminSecurity false \ | |
-startingPort 31764 \ | |
-isDefault false \ | |
-isDeveloperServer | |
# Create startup script | |
/opt/ibm/was/v7/profiles/$PROFILE/bin/startServer.sh server1 -script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, Laci!