Start and Stop JIRA applications
System administration
- Finding your Server ID
- Increasing JIRA application memory
- Using the database integrity checker
- Precompiling JSP pages
- Logging and profiling
- Backing up data
- Restoring data
- Search indexing
- Using robots.txt to hide from search engines
- Licensing your JIRA applications
- Viewing your system information
- Monitoring database connection usage
- Viewing JIRA application instrumentation statistics
- Generating a thread dump
- Finding your JIRA application Support Entitlement Number (SEN)
- Auditing in JIRA applications
- Important directories and files
- Integrating JIRA applications with a Web server
- Securing JIRA applications with Apache HTTP Server
- Changing JIRA application TCP ports
- Connecting to SSL services
- Running JIRA applications over SSL or HTTPS
- Configuring security in the external environment
- Data collection policy
- JIRA Admin Helper
- Raising support requests as an administrator
- Start and Stop JIRA applications
On this page
Related content
- No related content found
How you start and stop your JIRA application depends on whether you are running JIRA as a Service.
Windows
If you installed JIRA as a service, you can Start JIRA Server and Stop JIRA Server from the Windows Start menu.
You can't start or stop JIRA manually using the start-jira.bat and stop-jira.bat file.
If you didn't install JIRA as a service you'll need to start and stop JIRA manually.
- To start JIRA run
<installation-directory>\bin\start-jira.bat - To stop JIRA run
<installation-directory>\bin\stop-jira.bat
We recommend running JIRA with a dedicated user account. To do this, use use the runas command to execute start-jira.bat.
> runas /env /user:<DOMAIN>\<jira> start-jira.bat
Where <DOMAIN> is your Windows domain or computer name and <jira> is the name of your dedicated user.
Linux
If you installed JIRA as a service, use one of the following commands to start or stop JIRA.
$ sudo /etc/init.d/jira start
$ sudo /etc/init.d/jira stop
You can't start or stop JIRA manually using the start-jira.sh and stop-jira.sh files.
If you didn't install JIRA as a service you'll need to start and stop JIRA manually.
- To start JIRA run
<installation-directory>\bin\start-jira.sh - To stop JIRA run
<installation-directory>\bin\stop-jira.sh
We recommend running JIRA with a dedicated user account:
$ su -u <user>
$ ./start-jira.sh
Where <user> is the name of your dedicated user.
If you're using Ubuntu the command is a little different:
$ sudo su <user>
$ ./start-jira.sh
Related content
- No related content found