...
For example, after RMsis upgrade, sometimes this issue is usually observed.
Symptoms:
You may see the following error:
...
Stop JIRA.
- Kill all processes related to JIRA / RMsis (they are typically named as Tomcat*, java). This is important because sometimes stopping JIRA does not terminate all the processes.
- On linux server, you can use the following commands
- List all java processes using: ps -ef | grep java
- Note down the process id of JIRA / RMsis processes from the output of above command.
- Use Kill command to kill the processes (related to JIRA / RMsis), if any. Example: kill -9 12345, where 12345 is the process ID.
- On Windows server, you can use the following commands
- Open a command prompt window (as Administrator)
- From "Start\Search box" Enter "cmd" then right-click on "cmd.exe" and select "Run as Administrator"
Find Process ID of process that is using the port on which RMsis in configured to run (e.g. port:"3060") using: netstat -aon | find "3060"
Note down the process id of the process
Then Kill the process by Process ID: taskkill /F /PID 12345, where 12345 is the process ID.
- Open a command prompt window (as Administrator)
- On linux server, you can use the following commands
- Restart JIRA.
- Try to access RMsis again.
Sample run on *nix server:
...
Sample run on windows server:
...