This is a description of how to install Bamboo 2.1.4 under Tomcat 6.
- Attach the amit-dsl locker:
attach amit-dsl
- Make sure the dependencies are met:
yum install httpd-devel openssl-devel
- Create the Bamboo home directory:
mkdir /usr/local/bamboo chown -R www:www /usr/local/bamboo
- In the MySQL client, create the database and grant the proper permissions:
create database bamboo; grant select, insert, update, delete, create, drop, index, alter, create temporary tables, lock tables on bamboo.* to 'bamboo'@'localhost' identified by '<DB Password';
- Extract the Tomcat 6 tarball into the /usr/local directory, and create the symlink:
cd /usr/local tar xzvf /mit/amit-dsl/Public/Java/apache-tomcat-6.0.18.tar.gz ln -s apache-tomcat-6.0.18 tomcat
- Copy the Tomcat init script into the /etc/init.d directory and enable it:
cp /mit/amit-dsl/Public/Java/tomcat /etc/init.d chmod a+rx /etc/init.d/tomcat chkconfig --levels 2345 tomcat on
- Place the war files in the webapps directory. Please note that the bamboo war file should be renamed to "bamboo.war" prior to placement:
mv atlassian-bamboo-2.1.4.war bamboo.war cp /mit/amit-dsl/Public/Bamboo/bamboo.war /usr/local/tomcat/webapps cp /mit/amit-dsl/Public/Java/monitor.war /usr/local/tomcat/webapps cp /mit/amit-dsl/Public/Shibverify/shibverify.war /usr/local/tomcat/webapps