[Other doc versions]
[Doc downloads]
For long-term use on a Windows server, Stash should be configured to run as a Windows service. This has the following advantages:
Note that Stash should be run using a non-administrator user account that has read and write access to the Stash home directory and the <Stash installation directory
>.
On this page:
Before you start
If you are using a 64-bit version of Windows, first ensure that Stash uses a 64-bit JVM (check by running java -version
in a Command Prompt, and ensure that the JAVA_HOME
system environment variable points to the 64-bit JVM), and then replace the 32-bit Tomcat binaries with their 64-bit counterparts in the <Stash installation directory>/bin
directory:
cd <STASH-INST/bin> rename tomcat.exe tomcat.exe.x86 rename tc-native-1.dll tc-native-1.dll.x86 rename tomcat.exe.x64 tomcat.exe rename tc-native-1.dll.x64 tc-native-1.dll
JAVA_HOME
variable is set to the root of your Java platform's installation directory.JAVA_HOME
cannot contain spaces, so the default Java installation directory of C:\Program Files\Java won't work.STASH_HOME
as a system environment variable.To run Stash as a Windows service:
bin
subdirectory. If a directory in the path has spaces (e.g. C:\Program Files\..
), use its eight-character equivalent (e.g. C:\Progra~1\..
).Run the following commands:
> service.bat install > tomcat7 //US//STASH --Startup auto
This will create a service with the name "STASH" and a display name of "Atlassian Stash". If you would like to customize the name you can instead run:
> service.bat install MyName > tomcat7 //US//MyName --Startup auto
This will create the service as "MyName" with a display name of "Atlassian Stash MyName".
Run the following command to increase the amount of memory that Stash can use (the default is 768 Mb):
> tomcat7 //US//service_name --JvmMx 1024
Here is an example:
C:\Program Files (x86)\atlassian-stash-2.0.0\bin>service.bat install Installing the service 'STASH' ... Using CATALINA_HOME: "C:\Program Files (x86)\atlassian-stash-2.0.0" Using CATALINA_BASE: "C:\Program Files (x86)\atlassian-stash-2.0.0" Using JAVA_HOME: "C:\Java\jre6" Using JVM: "auto" The service 'STASH' has been installed. C:\Program Files (x86)\atlassian-stash-2.0.0\bin>tomcat7.exe //US//STASH --Startup auto C:\Program Files (x86)\atlassian-stash-2.0.0\bin>tomcat7.exe //US//STASH --JvmMx 1024 C:\Program Files (x86)\atlassian-stash-2.0.0\bin>net start STASH The Atlassian Stash service is starting. The Atlassian Stash service was started successfully.
%JAVA_HOME%/bin
. There are two options to resolve this problem:Stash installation directory
>.