This article details the steps necessary to install InfoGlue CMS 2.6.0 on CentOS 5.
Setting up Java:
- Download JDK 6 update 6
- Install JDK 6 update 6:
- # chmod +x jdk-6u6-linux-i586.rpm.bin
- # ./jdk-6u6-linux-i586.rpm.bin
- Download Java 1.6.0 RPM
- Install Java 1.6.0 RPM:
- # rpm -ivh java-1.6.0-sun-compat-1.6.0.06-1jpp.i586.rpm
- Execute the following and select Java version 1.6:
- # alternatives --config java
- Test Java version:
- # java -version
- Output should look like the following:
- java version "1.6.0_06"
Java(TM) SE Runtime Environment (build 1.6.0_06-b02)
Java HotSpot(TM) Client VM (build 10.0-b22, mixed mode, sharing)
Setting up Tomcat 5.5:
- Install tomcat from yum repositories:
- # yum update
- # yum install tomcat5
- Configure tomcat server to start on boot:
- # chkconfig tomcat5 on
- Start tomcat service:
- # service tomcat5 start
Setting up MySQL:
- Install MySQL from yum repositories:
- # yum install mysql-server
- Add the following to the [mysqld] section of /etc/mysql/my.cnf:
default-character-set=utf8
- Configure mysql server to start on boot:
- # chkconfig mysqld on
- Start mysqld service:
- # service mysqld start
Setting up InfoGlue CMS:
- Download InfoGlue 2.6.0 Final
- # unzip InfoglueInstaller2.6.0FinalTomcat6.zip
- # cd InfoglueInstaller
- # chmod +x installcmd.sh
- # ./installcmd.sh
- Follow the prompts and enter appropriate configuration parameters
- Test to make sure InfoGlue is working:
- Open http://localhost:8080/infoglueCMS
- Enter the account information entered during setup
References: