| | 11 | |
| | 12 | JRF: There was an email warning about the load on ippdb08 getting high. EAM handled the problem and performed the following steps: |
| | 13 | - check on ganglia that load has been getting too high i.e. that the email is correct. |
| | 14 | - ssh to the machine, and log into the database using the nebulous login (the mysql database in this case is ippdb09). The reason for ssh to the machine is that you have to be local to see some of the processes. |
| | 15 | Can view the processes with: |
| | 16 | {{{ |
| | 17 | SHOW PROCESSLIST; |
| | 18 | }}} |
| | 19 | alternatively: |
| | 20 | {{{ |
| | 21 | SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST ORDER BY TIME DESC LIMIT 10; |
| | 22 | }}} |
| | 23 | Note that you need to have all privileges to see all these processes. In this case can you use the {{{nebulous}}} user, but beware that it has write privileges too! |
| | 24 | - the end column provides the process id for the job, go kill this to stop the request. It is best to kill this where it is running |
| | 25 | |