Glass Fish ESB Installation in AIX
Step by Step Installation in AIX
How to install Java (Java5.sdk.tar.gz)
# cd /opt
# gunzip -c Java5.sdk.tar.gz| tar -xvf –
# inutoc
# smitty install
Move the cursor on Install and Update Software and press enter
Move the cursor in Install Software and press enter
Enter the path of the tar file
Install Glassfish ESB Components Using the Glassfish ESB Installer
Before You Begin
When installing GlassFish ESB on UNIX systems, such as AIX machines, you need to set the DISPLAY variable to install in GUI mode. How you do this depends on how you connect to your system, as described below.
If you receive the error message “No X11 DISPLAY variable was set, but this program performed an operation which requires it” and you use the SSH command to connect to your system from another Windows machine, you need to set the DISPLAY variable.
Follow this step
1. First try to access through VNC Server and if VNC Server is not installed then
installed exceed Hummingbird .
How to start Exceed Hummingbird
Click on start
Click on programs
Click on Hummingbird Connectivity 10
Click on Exceed
Again click on Exceed
Configuring PuTTY
When you run PuTTY for the first time, you will see a window like the one below
After login export the Display by executing this command
# export DISPLAY=IP Address:0.0
For AIX, change the execution mode with the command chmod a+x installer_file.sh, then start the installation with the command ./installer_file.sh.
# ./glassfishesb-v2.2-full-installer-aix.sh
· Tip –
You can click the Customize button to choose to only install the GlassFish ESB runtime (domain) or the design-time (NetBeans tools). Use the Next and Previous buttons to navigate forward and backward in the installation.
Step 2. Click Next on the Introduction page to begin the installation.
The License Agreement window appears.
On the License Agreement page, read the license agreement, Select I Accept the Terms of the License Agreement, and then click Next.
Step 3. The NetBeans IDE Installation window appears.
Do the following:
a. Verify or modify the location for the NetBeans IDE.
b. Verify or modify the location of the associated IBM JDK.
c. Click Next.
Step 4. The GlassFish Installation window appears.
- · Note –
The GlassFish admin password, which is adminadmin by default, is specified here; but not the master password. The default master password is changeit. If you need to change the master password, run the following command:
asadmin change-master-password new-password
Substitute the actual password for new-password.
· Do the following:
a. Verify or modify the location for GlassFish.
b. Verify or modify the location of the associated Sun JDK.
c. If you have no port conflict, accept the default server properties; otherwise modify the port numbers as needed.
d. Click Next.
Step 5. When the Summary page appears, verify each component of the installation and then click Install. If you need to make changes, click Previous to return to a previous screen.
When the Registration Screen appears, you can do one of the following:
· Open the registration page in a browser when you click Finish.
The Registration form appears, requesting general information, such as name, email address, and so on. It requires that you set up a password for your account. This page also allows you to log in with your existing Sun Online Account email address and password.
Note – You must have a Sun Online account set up before you can register GlassFish ESB and receive the benefits of registration.
Mysql Server Installation
# unzip openlogic-mysql-5.0.67-aix-5.3-powerpc-bin-1.zip
# cd mysql-5.0.67
1. First add a group mysql through smitty
2. Second add a user mysql with the group mysql
# chown -R mysql .
# chgrp -R mysql .
#scripts/mysql_install_db --user=mysql
# chown -R root .
# chown -R mysql data
# bin/mysqld_safe --user=mysql &
# mysqladmin -u root password 'mysql’; ( set the mysql password )
#mysql – u root –p
it will ask for the password
Give the password mysql
mysql>use mysql;
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY "mysql" WITH GRANT OPTION;
Note : If the server reboot then go
# cd /opt/ mysql-5.0.67
# bin/mysqld_safe --user=mysql & ( Starting the Service )
How to install Apache-Tomcat ( apache-tomcat-6.0.30.tar.gz )
# gunzip -c apache-tomcat-6.0.30.tar.gz | tar -xvf –
# cd apache-tomcat-6.0.30
The installation path is /usr/local/ apache-tomcat-6.0.30
# cd bin
# ./startup.sh ( This will start up the service for apache-tomcat )
Checklist for the software in the AIX
1. For Java : Java5.sdk.tar.gz
2. For connecting to server: Putty, Vnc viewer, Exceed
3. For Glassfish: glassfishesb-v2.2-full-installer-aix.sh
4. For Mysql server: openlogic-mysql-5.0.67-aix-5.3-powerpc-bin-1.zip
5. For Apache Tomcat: apache-tomcat-6.0.30.tar.gz