mirror of
https://github.com/in-famous-raccoon/proxmox-snmp.git
synced 2025-07-17 07:36:26 +00:00
updated README.md
This commit is contained in:
@ -9,22 +9,20 @@
|
|||||||
|
|
||||||
### Paste content from sh file to /opt folder and make executable
|
### Paste content from sh file to /opt folder and make executable
|
||||||
`nano /opt/snmp-cpu-temp.sh`<br/>
|
`nano /opt/snmp-cpu-temp.sh`<br/>
|
||||||
`chmod +x /opt/snmp-cpu-temp.sh`
|
`nano /opt/snmp-lvm-used.sh`<br/>
|
||||||
|
`nano /opt/snmp-smart-status.sh`<br/>
|
||||||
|
`chmod +x /opt/snmp-*`
|
||||||
|
|
||||||
### Run snmpd as root, because debian added the user "Debian-snmp" to the snmp.service but for SMART/LVM Status we need to be root.
|
### Run snmpd as root, because debian added the user "Debian-snmp" to the snmp.service but for SMART/LVM Status we need to be root.
|
||||||
#### edit snmpd.service and replace "Debian-snmp" with "root"
|
#### edit snmpd.service and replace "Debian-snmp" with "root"
|
||||||
`nano /lib/systemd/system/snmpd.service`
|
`nano /lib/systemd/system/snmpd.service`
|
||||||
##### From
|
##### From
|
||||||
```
|
```
|
||||||
...
|
|
||||||
ExecStart=/usr/sbin/snmpd -Lsd -Lf /dev/null -u Debian-snmp -g Debian-snmp -I -smux,mteTrigger,mteTriggerConf -f -p /run/snmpd.pid
|
ExecStart=/usr/sbin/snmpd -Lsd -Lf /dev/null -u Debian-snmp -g Debian-snmp -I -smux,mteTrigger,mteTriggerConf -f -p /run/snmpd.pid
|
||||||
...
|
|
||||||
```
|
```
|
||||||
##### To
|
##### To
|
||||||
```
|
```
|
||||||
...
|
|
||||||
ExecStart=/usr/sbin/snmpd -Lsd -Lf /dev/null -u root -g Debian-snmp -I -smux,mteTrigger,mteTriggerConf -f -p /run/snmpd.pid
|
ExecStart=/usr/sbin/snmpd -Lsd -Lf /dev/null -u root -g Debian-snmp -I -smux,mteTrigger,mteTriggerConf -f -p /run/snmpd.pid
|
||||||
...
|
|
||||||
```
|
```
|
||||||
#### Restart SNMPD
|
#### Restart SNMPD
|
||||||
`systemctl restart snmpd.service`
|
`systemctl restart snmpd.service`
|
||||||
|
Reference in New Issue
Block a user