This documentation relates to an earlier version of Bamboo.
View

Unknown macro: {spacejump}

or visit the current documentation home.

In case you wish to configure an external database you will need to create it before connecting bamboo to it.

Mysql

mysql> create database bamboodb character set utf8;
mysql> grant all privileges on bamboodb.* TO 'bamboouser'@'localhost' IDENTIFIED BY 'password';
mysql> flush privileges;
mysql> quit

Postgres

Suppose you have postgresql 8.3 installed

sudo -s -H -u postgres
# Create the Bamboo user:
/opt/PostgreSQL/8.3/bin/createuser -S -d -r -P -E bamboouser
# Create the bamboo database:
/opt/PostgreSQL/8.3/bin/createdb -O bamboouser bamboo
exit

Please make sure a completely empty bamboo database is created. Some templates insert default tables into each new database. This leads to conflicts when installing bamboo.

Oracle

T.B.C.

  • No labels