You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

This is a description of how to install Bamboo 2.1.4 under Tomcat 6.

  1. Attach the amit-dsl locker:
    attach amit-dsl
    

  2. Make sure the dependencies are met:
    yum install httpd-devel openssl-devel
    

  3. Create the Bamboo home directory:
    mkdir /usr/local/bamboo
    chown -R www:www /usr/local/bamboo
    

  4. 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';
    

  5. 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
    

  6. 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
    

  7. 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
    

  • No labels