Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. mysql> grant all on slurm_acct_db.* TO 'slurm'@'localhost'
  2. -> identified by 'some_pass' with grant option;
  3. mysql> create database slurm_acct_db;
  4.  
  5. AuthType=auth/munge
  6. DbdAddr=localhost
  7. DbdHost=localhost
  8. SlurmUser=slurm
  9. DebugLevel=4
  10. LogFile=/var/log/slurm/slurmdbd.log
  11. PidFile=/var/run/slurmdbd.pid
  12. StorageType=accounting_storage/mysql
  13. StorageHost=localhost
  14. StoragePass=some_pass
  15. StorageUser=slurm
  16. StorageLoc=slurm_acct_db
  17.  
  18. $ systemctl start slurmdbd
  19. Job for slurmdbd.service failed because the control process exited with error code. See "systemctl status slurmdbd.service" and "journalctl -xe" for details.
  20. $ systemctl status slurmdbd.service
  21. ● slurmdbd.service - Slurm DBD accounting daemon
  22. Loaded: loaded (/etc/systemd/system/slurmdbd.service; enabled; vendor preset: disabled)
  23. Active: failed (Result: exit-code) since lun 2017-11-20 10:39:26 CET; 53s ago
  24. Process: 27592 ExecStart=/usr/sbin/slurmdbd $SLURMDBD_OPTIONS (code=exited, status=1/FAILURE)
  25.  
  26. nov 20 10:39:26 nodo00 systemd[1]: Starting Slurm DBD accounting daemon...
  27. nov 20 10:39:26 nodo00 systemd[1]: slurmdbd.service: control process exited, code=exited status=1
  28. nov 20 10:39:26 nodo00 systemd[1]: Failed to start Slurm DBD accounting daemon.
  29. nov 20 10:39:26 nodo00 systemd[1]: Unit slurmdbd.service entered failed state.
  30. nov 20 10:39:26 nodo00 systemd[1]: slurmdbd.service failed.
  31. $ journalctl -xe
  32. nov 20 10:39:26 nodo00 polkitd[1078]: Registered Authentication Agent for unix-process:27586:119889015 (system bus name :1.871 [/usr/bin/pkttyagent --notify-fd 5 --fallback], object path /or
  33. nov 20 10:39:26 nodo00 systemd[1]: Starting Slurm DBD accounting daemon...
  34. -- Subject: Unit slurmdbd.service has begun start-up
  35. -- Defined-By: systemd
  36. -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
  37. --
  38. -- Unit slurmdbd.service has begun starting up.
  39. nov 20 10:39:26 nodo00 systemd[1]: slurmdbd.service: control process exited, code=exited status=1
  40. nov 20 10:39:26 nodo00 systemd[1]: Failed to start Slurm DBD accounting daemon.
  41. -- Subject: Unit slurmdbd.service has failed
  42. -- Defined-By: systemd
  43. -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
  44. --
  45. -- Unit slurmdbd.service has failed.
  46. --
  47. -- The result is failed.
  48. nov 20 10:39:26 nodo00 systemd[1]: Unit slurmdbd.service entered failed state.
  49. nov 20 10:39:26 nodo00 systemd[1]: slurmdbd.service failed.
  50. nov 20 10:39:26 nodo00 polkitd[1078]: Unregistered Authentication Agent for unix-process:27586:119889015 (system bus name :1.871, object path /org/freedesktop/PolicyKit1/AuthenticationAgent,
  51. nov 20 10:40:06 nodo00 gmetad[1519]: data_thread() for [HPCSIE] failed to contact node 192.168.2.10
  52. nov 20 10:40:06 nodo00 gmetad[1519]: data_thread() got no answer from any [HPCSIE] datasource
  53. nov 20 10:40:13 nodo00 dhcpd[2320]: DHCPREQUEST for 192.168.2.19 from 00:1e:67:48:79:d0 via enp6s0f1
  54. nov 20 10:40:13 nodo00 dhcpd[2320]: DHCPACK on 192.168.2.19 to 00:1e:67:48:79:d0 via enp6s0f1
  55. nov 20 10:40:39 nodo00 dhcpd[2320]: DHCPREQUEST for 192.168.2.13 from 00:1e:67:48:74:e0 via enp6s0f1
  56. nov 20 10:40:39 nodo00 dhcpd[2320]: DHCPACK on 192.168.2.13 to 00:1e:67:48:74:e0 via enp6s0f1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement