1. decompress and copy the entire confluence directory under the confluence-2.3.3-std
Under the atlassian-jira-enterprise-3.6.3-standalone directory, the same level as Atlassian-Jira
2. Set the confluence-init.properties File
Open confluence/WEB-INF/classes/confluence-init.properties and set confluence. Home
NOTE: If confluence. Home = E: \ websit \ confluence \ TMP is set, the actual result is confluence. Home = E: \ websitconfluencetmp.
3. Edit Tomcat context Descriptors
(1) Create the confluence. xml file in the Jira CONF/Catalina/localhost directory (if tomcat has a hostname host name, change localhost to hostname)
(2) Open confluence. xml and add the following lines (Tomcat 5.5.x ):
<Context Path = "/confluence"
Docbase = "E:/websit/Jira/confluence"
DEBUG = "0" reloadable = "true" swallowoutput = "true">
<Logger classname = "org. Apache. Catalina. Logger. filelogger" prefix = "Atlassian-Confluence." suffix = ". log" timestamp = "true"/>
<Resource Name = "JDBC/jirads" auth = "Container" type = "javax. SQL. datasource"
Username = "jirauser"
Password = "password"
Driverclassname = "net. SourceForge. jtds. JDBC. Driver"
Url = "JDBC: jtds: sqlserver: // localhost: 1433/jiradb"/>
</Context>
Check that an empty Database "jiradb" and "confluencedb" is created on SQL Server"
4. Start Jira and access confluence through http: // localhost: 8080/confluence.
5. Set the classes used by confluence to connect to the database:
Net. SourceForge. jtds. JDBC. Driver
6. Set JDBC:
JDBC: jtds: sqlserver: // localhost: <port>/confluencedb
complete the confluence installation settings in sequence. If an unexpected error occurs, stop Jira, clear the folder where confluence. Home is located, and switch back to step 4.