Yesterday I started with the installation of websphere on Linux, Suse 9.3. I downloaded was.cd.6000.trial.base.linux.ia32.tar.gz from the ibm website, and unpacked it.
As logged in user, I issued a xhost + command.
Then as root, I ran WAS/install to start the installation.
I chose defaults, and a full installation, which installs under /opt/IBM/WebSphere/AppServer/.
At the end of the installation, the install program asks to run firststeps. I started that, and asked to check the installation. This check succeeded, amongst it also started the AppServer.
The links of Sample Gallery and AdminConsole however did not work. Probably it is not capable of starting up a webbrowser by itself. So, I just stopped the AppServer again from the firststeps, and finished the installation.
The server can be started now as root from /opt/IBM/WebSphere/AppServer/ :
bin/startServer.sh server1
and stopped again with
bin/stopServer.sh server1
You can see that the server is running with the command
netstat -an | grep LISTEN
you should see ports 9080, 9060, 9443, ..
To start the adminconsole, open a browser with
http://localhost:9060/ibm/console/
Examples applications can be opened with
http://localhost:9080/WSsamples/en/index.html
http://localhost:9080/hitcount
http://localhost:9080/PlantsByWebSphere/
Next: how to do a simple deployment.
As logged in user, I issued a xhost + command.
Then as root, I ran WAS/install to start the installation.
I chose defaults, and a full installation, which installs under /opt/IBM/WebSphere/AppServer/.
At the end of the installation, the install program asks to run firststeps. I started that, and asked to check the installation. This check succeeded, amongst it also started the AppServer.
The links of Sample Gallery and AdminConsole however did not work. Probably it is not capable of starting up a webbrowser by itself. So, I just stopped the AppServer again from the firststeps, and finished the installation.
The server can be started now as root from /opt/IBM/WebSphere/AppServer/ :
bin/startServer.sh server1
and stopped again with
bin/stopServer.sh server1
You can see that the server is running with the command
netstat -an | grep LISTEN
you should see ports 9080, 9060, 9443, ..
To start the adminconsole, open a browser with
http://localhost:9060/ibm/console/
Examples applications can be opened with
http://localhost:9080/WSsamples/en/index.html
http://localhost:9080/hitcount
http://localhost:9080/PlantsByWebSphere/
Next: how to do a simple deployment.
Comments