| | 197 | == Administration == |
| | 198 | |
| | 199 | === stop_rasdaman.sh fails to stop rasdaman === |
| | 200 | |
| | 201 | If `stop_rasdaman.sh`, `sudo service rasdaman stop`, or `sudo systemctl stop rasdaman.service` fail to stop rasdaman, then it's necessary to do it manually. You have to manually kill first the rasmgr process and then the rasserver processes: |
| | 202 | 1. `sudo pkill rasmgr` |
| | 203 | * check: if `pgrep rasmgr` still prints a pid, then it has to be killed with `sudo pkill -9 rasmgr` |
| | 204 | 1. repeat the same with rasserver: `sudo pkill rasserver` |
| | 205 | * check: if `pgrep rasserver` still prints some pids, then it has to be killed with `sudo pkill -9 rasserver` |
| | 206 | |
| | 207 | Afterwards you can start rasdaman again. |
| | 208 | |