Installing Standalone Application Server, Creating Standalone Application Profiles And Deleting Standalone Application profile

  Profile Creations In WebSphere Application Server

Creating Standalone Application Server Profile: 

What is standalone application server profile ?

Each standalone application server profile includes a server1 application server process. Each profile defines a separate standalone application server that has its own administrative interface (Admin Console)

1. To Create a standalone profile, go to WAS Installed bin directory.

# cd /opt/IBM/WebSphere/AppServer/bin

# ./manageprofiles.sh -create -profileName AppSrv01 -profilePath /opt/IBM/WebSphere/AppServer/profiles/AppSrv01 -templatePath /opt/IBM/WebSphere/AppServer/profileTemplates/default



2. Verify post profile creation of standalone profile from the logs, look for "INSTCONFSUCCESS"

# grep -i INSTCONFSUCCESS /opt/IBM/WebSphere/AppServer/logs/manageprofiles/AppSrv01_create.log


3. Start the JVM by using below command.

# cd /opt/IBM/WebSphere/AppServer/profiles/AppSrv01/bin

# ./startServer.sh


4. How to Check Status of Standalone Application Server

#cd /opt/IBM/WebSphere/AppServer/bin

#  ./serverStatus.sh -all

5. Loginto Admin Console using port no. 9043 

https://localhost:9043/ibm/console

After loginto Admin Console like this




6. Deploy a EAR file from Admin console.


Delete Standalone Application Server Profile

1. Stop the JVM by using below command. 

# cd /opt/IBM/WebSphere/AppServer/profiles/AppSrv01/bin

# ./stopServer.sh


2. Listing  Available Profiles

#cd /opt/IBM/WebSphere/AppServer/bin

#  ./manageprofiles.sh -listProfiles

3. Delete the profile by using 

# cd /opt/IBM/WebSphere/AppServer/bin

# ./manageprofiles.sh -delete -profileName AppSrv01





Comments

Popular posts from this blog

SSL certificate in WebSphere Application Server

Tomcat Upgrade Steps on Windows.