search for: lsi_mrdsnmpd

Displaying 7 results from an estimated 7 matches for "lsi_mrdsnmpd".

2015 Dec 29
6
Systemd and systemd-sysv-generator
...r 3 arguments (it tells me), but I didn't find clear documentation on this binary. And no arguments doesn't seem to fix the issue. The particular software in question is LSI MegaRaid SNMP daemon. I retrieved the latest version from LSI's site which was provided for EL7. ~]# systemctl lsi_mrdsnmpd.service start Unknown operation 'lsi_mrdsnmpd.service'. ~]# service lsi_mrdsnmpd start Reloading systemd: [ OK ] Starting lsi_mrdsnmpd (via systemctl): Failed to start lsi_mrdsnmpd.service: Unit lsi_mrdsnmpd.service failed to load: No such file or...
2015 Dec 29
3
Systemd and systemd-sysv-generator
On Tue, Dec 29, 2015 at 3:14 PM, Gordon Messmer <gordon.messmer at gmail.com> wrote: > On 12/29/2015 09:13 AM, Mike - st257 wrote: > >> ~]# /etc/init.d/lsi_mrdsnmpd start >> Reloading systemd: [ OK ] >> Starting lsi_mrdsnmpd (via systemctl): Failed to start >> lsi_mrdsnmpd.service: Unit lsi_mrdsnmpd.service failed to load: No such >> file or directory. >>...
2015 Dec 29
0
Systemd and systemd-sysv-generator
On 12/29/2015 09:13 AM, Mike - st257 wrote: > ~]# /etc/init.d/lsi_mrdsnmpd start > Reloading systemd: [ OK ] > Starting lsi_mrdsnmpd (via systemctl): Failed to start > lsi_mrdsnmpd.service: Unit lsi_mrdsnmpd.service failed to load: No such > file or directory. >...
2015 Dec 29
0
Systemd and systemd-sysv-generator
...dn't find clear > documentation on this binary. > And no arguments doesn't seem to fix the issue. > > The particular software in question is LSI MegaRaid SNMP daemon. > I retrieved the latest version from LSI's site which was provided for EL7. > > > ~]# systemctl lsi_mrdsnmpd.service start > Unknown operation 'lsi_mrdsnmpd.service'. Hi Mike, With "systemctl", the command comes before the name; did you try: systemctl start lsi_mrdsnmpd -Greg
2013 Feb 15
2
OT: LSI SAS1068e / Perc6/iR RAID Health
...NMP. I've used check_sasraid_megaraid Nagios script [0] in the past for PERC5i and PERC6i controllers in Dell PE2950s. For 2950s I've only had to install sas_snmp-3.11-0003.i386.rpm from LSI to get rolling. I've tried installing parts from the MSM zip/tarball mess to install only the lsi_mrdsnmpd daemon (lsi_mrdsnmpagent). PERC5i = LSI 8048e (megaraid) PERC6i = LSI SAS 1078 (megaraid) SAS6/iR = LSI SAS 1068e (mptfusion) [0] http://wleibzon.bol.ucla.edu/nagios/ [1] http://lists.centos.org/pipermail/centos/2009-November/085215.html Thanks for any nudges in the right direction. -- ---~~.~...
2015 Dec 29
0
Systemd and systemd-sysv-generator
Instead of converting the sysv script, you could trivially write your own, the following was tested against about 6 SNMP queries, the service stops and starts as expected. You may want to purge the sysv remnants. # cat /etc/systemd/system/lsi_mrdsnmpd.service [Unit] Description=LSI SNMP Agent startup/shutdown script Requires=network.target Requires=snmpd.service After=network.target After=snmpd.service [Service] Type=forking ExecStart=/etc/lsi_mrdsnmp/lsi_mrdsnmpagent -c /etc/snmp/snmpd.conf [Install] WantedBy=multi-user.target hth, jlc
2015 Dec 30
2
Systemd and systemd-sysv-generator
...curiosity has the best of me ... I would like to know why the SysV generator didn't do its job. And I wasn't able to find any "generated" unit files from those Dell OpenManage SysV scripts either. > You may want to purge the sysv remnants. > > # cat /etc/systemd/system/lsi_mrdsnmpd.service > [Unit] > Description=LSI SNMP Agent startup/shutdown script > > Requires=network.target > Requires=snmpd.service > > After=network.target > After=snmpd.service > > > [Service] > Type=forking > ExecStart=/etc/lsi_mrdsnmp/lsi_mrdsnmpagent -c /etc/snmp/...