Documentation for Crowd 2.5. Documentation for other versions of Crowd is available too.
サポート対象バージョン
Crowd supports MS SQL Server 2005 and 2008 versions.
When you run the Crowd Setup Wizard, you will be asked to choose a database and provide configuration settings for that database. It will make things easier if you have created the database and deployed the database driver before you start the Setup Wizard.
Follow the instructions below to set up MS SQL Server for Crowd.
Create a database user which Crowd will connect as (e.g. crowduser).
In SQL Server, the database user (crowduser above) should not be the database owner, but should be in the db_owner role
.
Additionally, you should create the database with case sensitive collation.
Ensure that the new database was set to use Read Committed with Row Versioning as its isolation level.
You can apply the new isolation by executing the following query:
ALTER DATABASE <database name> SET READ_COMMITTED_SNAPSHOT ON WITH ROLLBACK IMMEDIATE;
To verify the changes, use this query which should result in '1':
SELECT sd.is_read_committed_snapshot_on FROM sys.databases AS sd WHERE sd.[name] = '<database name>';
This step is only required if you have downloaded the WAR distribution of Crowd.
Download the SQL Server JDBC driver from JTDS (recommended), or I-net software(commercial).
jtds-[version].jar
) to the following directory:CROWD_INSTALL}/apache-tomcat/lib/
.CROWD_INSTALL}/apache-tomcat/common/lib/
.common/lib/
.lib/
.Complete the Crowd installation, then start Crowd and run the Setup Wizard as described in the Installation Guide.
Configuring Unicode Support in MS SQL Server
To configure Crowd to support Unicode in MS SQL Server 2005 and 2008, enter the following in the 'Hibernate Dialect' field on the Crowd Setup Wizard's Database Configuration screen:
com.atlassian.crowd.util.persistence.hibernate.SQLServerIntlDialect