This page describes how to connect Stash to a Oracle database. 

The overall process for using a Oracle database with Stash is:

  • Install Oracle where it is accessible to Stash.
  • Create a database and user on the Oracle server for Stash to use.
  • Install Stash on Windows, or on Linux or Mac.
  • 次のいずれかを実行します。
    • at Stash install time, run the Setup Wizard to connect Stash to the Oracle database, or
    • at a later time, migrate Stash to the Oracle database.

It is assumed here that you already have Oracle installed and running. For information about installing Oracle and creating Oracle databases, see the Oracle documentation pages. For the versions of Oracle supported by Stash see Supported platforms.

このページの内容

関連ページ

Prerequisites

Backup

If you are migrating your data from the internal Stash database, back up the Stash home directory.

If you are migrating your Stash data from a different external database, back up that database by following the instructions provided by the database vendor before proceeding with these instructions.

See Data recovery and backups.

Create the Oracle schema for Stash

Before you can use Stash with Oracle, you must set up Oracle as follows:

The format of the command to create a user in Oracle is:

CREATE USER <user> 
	IDENTIFIED BY <password>;
GRANT CONNECT, RESOURCE to <user>;
CREATE VIEW <user>.all_objects AS
  SELECT *
  FROM sys.all_objects
  WHERE owner = upper('<user>');

Here is a simple example, using SQL*Plus, of how one might create a user called stash with password jdHyd6Sn21 in tablespace users, and grant the user a minimal set of privileges. When you run the command on your machine, remember to replace the user name, password and tablespace names with your own values.

CREATE USER stash
  IDENTIFIED BY jdHyd6Sn21;
 
GRANT CONNECT, RESOURCE to stash;
CREATE VIEW stash.all_objects AS
  SELECT *
  FROM sys.all_objects
  WHERE owner = upper('stash');

This creates an empty Oracle schema with the name stash, and a user that can log in from the host that Stash is running on and who has full access to the newly created schema. In particular, the user is allowed to create sessions and tables.

Stash's default configuration caps out at 80 connections to the database, but most of the time it will not use that many. Stash will generally require about 25–30 connections to the database. Please refer to Stash config properties - Database pool for its default values.

Connect Stash to the Oracle database

You can now connect Stash to the Oracle database, either:

When running the Setup Wizard at install time

  1. Select External at the 'Database' step.
  2. Select Oracle for Database Type.
  3. Complete the form. See the table below for details.
  4. Click Next, and follow the instructions in the Stash Setup Wizard.

When migrating to Oracle

  1. In the Stash administration area, click Database (under 'Settings').
  2. Click Migrate database.
  3. Select Oracle for Database Type.
  4. Complete the form. See the table below for details.
  5. Click Start Migration.
ホスト名

The host name or IP address of the computer running the Oracle server.

ポートThe TCP port with which Stash can connect to the database server. The default value is the default port that Oracle runs against. You can change that if you know the port that your Oracle instance is using.
データベース名The system identifier of the Oracle instance that Stash should connect to. Stash does not support connecting to Oracle servers which are using SIDs or TNS Alias to identify themselves; it requires the fully qualified Service Name instead.
Database usernameThe username that Stash should use to access the database.
データベース パスワードThe password that Stash should use to access the database.

Install the JDBC driver

This section is only relevant to some distributions of Stash, for example if you are running Stash via the Atlassian Plugin SDK, or have built Stash from source.

If the Oracle JDBC driver is not bundled with Stash, you will need to download and install the driver yourself.

  1. Download the appropriate JDBC driver from the Oracle download site.
  2. Copy the downloaded jar file to your <Stash home directory>/lib directory (for Stash 2.1 or later).
  3. Stop, then restart, Stash on Windows, or on  Linux and Mac.