All Versions
Bamboo 5.13Bamboo 5.7.x
Bamboo 5.6.x
More...
The Bamboo upgrade tasks will fail if you are using a datasource to connect to your external database. To work around this issue please follow the procedure below:
cp bamboo.cfg.xml bamboo.cfg.xml.bak
bamboo.cfg.xml file in your root Bamboo-Home directory.<property name="hibernate.connection.datasource">jdbc/bamboo</property>
<property name="hibernate.c3p0.acquire_increment">1</property>
<property name="hibernate.c3p0.idle_test_period">100</property>
<property name="hibernate.c3p0.max_size">15</property>
<property name="hibernate.c3p0.max_statements">0</property>
<property name="hibernate.c3p0.min_size">0</property>
<property name="hibernate.c3p0.timeout">30</property>
<property name="hibernate.connection.driver_class">YOUR_DRIVER_NAME</property>
<property name="hibernate.connection.password">YOUR_DATABASE_PASSWORD</property>
<property name="hibernate.connection.url">YOUR_CONNECTING_URL</property>
<property name="hibernate.connection.username">YOUR_DATABASE_USERNAME</property>
bamboo.cfg.xml file and move your old bamboo.cfg.xml.bak from step (2) to bamboo.cfg.xml.