How to install Bamboo in ubuntu server
Quickloss3
Update the System: apt update && apt upgrade -y
Install Java: apt install openjdk-8-jdk
Check Java version: java -version
Install PostgreSQL on system: apt install postgresql postgresql-contrib
Login to postgresql shell: sudo -u postgres psql create database bamboo; create user bamboo with encrypted password 'yourpass'; grant all privileges on database bamboo to bamboo; \q
Download the Bamboo: cd /opt wget https://www.atlassian.com/software/bamboo/downloads/binary/atlassian-bamboo-8.1.2.tar.gz tar -xvf atlassian-bamboo-8.1.2.tar.gz mv atlassian-bamboo-8.1.2 bamboo cd /opt/bamboo/ ll
Configure Bamboo: mkdir -p /home/ubuntu//bamboo/bamboo-home vim /opt/bamboo/atlassian-bamboo/WEB-INF/classes/bamboo-init.properties Un-comment the line. #bamboo.home=C:/bamboo/bamboo-home Edit the un-commented line. bamboo.home=/home/ubuntu/bamboo/bamboo-home
Start the bamboo service: cd /opt/bamboo/bin ./start-bamboo.sh ufw allow 8085
Open Bamboo web interface: http://server-ip:8085
Agent Server------------- Install Java: apt install openjdk-8-jdk ... https://www.youtube.com/watch?v=5jxKw0ZHlb0
48523414 Bytes