インデックス![]()
ダウンロード (PDF、HTML および XML 形式)
[Bamboo Knowledge Base Home]
Documentation for Bamboo 4.0.x. Documentation for earlier versions of Bamboo is available too. 
![]()
These instructions will help you connect Bamboo to an Oracle 11g database. Oracle 10g is no longer a supported database for use with Bamboo and the 11.2.x drivers from Oracle do not support 9i.
Bamboo provides two ways to connect to an Oracle database — using JDBC or using a datasource. JDBC is generally simpler and is the recommended method.
このページの内容
重要
Within that database instance, create a user which Bamboo will connect as (e.g. bamboo-user). Remember this database user name, as it will be used to configure Bamboo's connection to this database.
When you create a user in Oracle, Oracle will create a 'schema' automatically.
create user bamboo-user identified by password;
ユーザーが次の権限を持つことを確認します :
grant connect, resource, create table to bamboo-user;
To connect Bamboo to a Oracle database, using JDBC:
Select Direct JDBC connection. The 'Setup JDBC Connection' screen will appear as shown in the screenshot below.
| 設定 | 説明 |
|---|---|
| Driver Class Name | Type: oracle.jdbc.driver.OracleDriver |
| データベース URL | Type the URL where Bamboo will access your database, e.g. jdbc:oracle:thin:@localhost:1521:SID. For syntax, please see the Oracle documentation. |
| ユーザ名 | Type the username that Bamboo will use to access your database. |
| パスワード | Type the password that Bamboo will use to access your database. |
Screenshot: Setup JDBC Connection (Oracle)
To connect Bamboo to a Oracle database, using a datasource:
java:comp/env/jdbc/DataSourceName doesn't work, try jdbc/DataSourceName (and vice versa).Screenshot Setup Datasource Connection
5 Comments
Anonymous
Dec 07, 2010what size do i need for std. installation?
Anonymous
Sept 06, 2011File a support ticket. We did, and they looked at us like deers in the headlights.
The more tickets we get in to Atlassian, the more they're likely to start improving this stuff.
Anonymous
May 16, 2011Seems that the Oracle jdbc drivers are not included if you use the WAR installation method.
Anonymous
May 18, 2011Is there any way to create the database using DDL scripts? I'm at a loss for how to create a large set of build server farm databases without going through this painful process every single time (of course, I could build one and do an export, and reimport for every additional database I want to build, but that strikes me as ghetto).
Anonymous
Sept 06, 2011Unfortunately, there's not. We faced the same challenge, and raised the issue with support for those EXACT same concerns. The best thing they could do, they said, was to file it as an enhancement request.
What we've ended up doing is what you suggested - creating the database on a test instance, exporting out the DDL as the "gold master", and reimporting it in every future buildout we needed. Frankly, this is one of the great short-sighted visions of this product. Large-scale, enterprise installations.