Unsolved
This post is more than 5 years old
1 Rookie
•
100 Posts
0
1950
September 25th, 2006 01:00
nsrjobd: SYSTEM error: Bad input variable to function
CU have EBS 7.3.1
In the moemnt Backup is not running.
The only what I see in logfile is this:
09/23/06 13:43:35 nsrjobd: SYSTEM error: Bad input variable to function
09/23/06 13:51:05 nsrjobd: jobsdb size at 1574140 exceeded high size watermark. It needs to clean up old records
09/23/06 14:02:02 nsrjobd: Purged 2088 records.
09/24/06 01:38:53 nsrjobd: SYSTEM error: Bad input variable to function
09/24/06 13:33:40 nsrjobd: SYSTEM error: Bad input variable to function
09/25/06 01:44:02 nsrjobd: SYSTEM error: Bad input variable to function
09/25/06 09:00:15 nsrexecd: The user does not have the privileges perform the requested operation. Requester: LegatoUserNone/zrd-sun-10@(Unknown)
/etc/init.d/networker stop helps not.
/etc/init.d/networker start we see this message:
09/25/06 09:23:35 nsrmmgd: Starting nsrmmgd.
09/25/06 09:23:35 nsrmmgd: SYSTEM error: Lock file `/nsr/tmp/nsrmmgd.lck' cannot be locked.
Check for another copy of nsrmmgd already running.
09/25/06 09:23:35 nsrd: unable to start nsrmmgd
09/25/06 09:23:36 nsrd: shutting down
09/25/06 09:23:36 nsrd: @(#) Product: NetWorker
09/25/06 09:23:36 nsrd: @(#) Release: 7.3.1.Build.208
09/25/06 09:23:36 nsrd: @(#) Build number: 208
09/25/06 09:23:36 nsrd: @(#) Build date: Mon Jun 5 14:50:19 2006
09/25/06 09:23:36 nsrd: @(#) Build arch.: solaris7w
09/25/06 09:23:36 nsrd: @(#) Build info: DBG=0,OPT=-O2 -fno-strict-aliasing
09/25/06 09:23:36 nsrd: successful shutdown
In the moemnt Backup is not running.
The only what I see in logfile is this:
09/23/06 13:43:35 nsrjobd: SYSTEM error: Bad input variable to function
09/23/06 13:51:05 nsrjobd: jobsdb size at 1574140 exceeded high size watermark. It needs to clean up old records
09/23/06 14:02:02 nsrjobd: Purged 2088 records.
09/24/06 01:38:53 nsrjobd: SYSTEM error: Bad input variable to function
09/24/06 13:33:40 nsrjobd: SYSTEM error: Bad input variable to function
09/25/06 01:44:02 nsrjobd: SYSTEM error: Bad input variable to function
09/25/06 09:00:15 nsrexecd: The user does not have the privileges perform the requested operation. Requester: LegatoUserNone/zrd-sun-10@(Unknown)
/etc/init.d/networker stop helps not.
/etc/init.d/networker start we see this message:
09/25/06 09:23:35 nsrmmgd: Starting nsrmmgd.
09/25/06 09:23:35 nsrmmgd: SYSTEM error: Lock file `/nsr/tmp/nsrmmgd.lck' cannot be locked.
Check for another copy of nsrmmgd already running.
09/25/06 09:23:35 nsrd: unable to start nsrmmgd
09/25/06 09:23:36 nsrd: shutting down
09/25/06 09:23:36 nsrd: @(#) Product: NetWorker
09/25/06 09:23:36 nsrd: @(#) Release: 7.3.1.Build.208
09/25/06 09:23:36 nsrd: @(#) Build number: 208
09/25/06 09:23:36 nsrd: @(#) Build date: Mon Jun 5 14:50:19 2006
09/25/06 09:23:36 nsrd: @(#) Build arch.: solaris7w
09/25/06 09:23:36 nsrd: @(#) Build info: DBG=0,OPT=-O2 -fno-strict-aliasing
09/25/06 09:23:36 nsrd: successful shutdown
No Events found!



ble1
4 Operator
•
14.3K Posts
0
September 25th, 2006 02:00
Yes (or whoever is providing you support).
ble1
4 Operator
•
14.3K Posts
0
September 25th, 2006 02:00
mg115301
1 Rookie
•
100 Posts
0
September 25th, 2006 02:00
In the moment Backup works fine. We do this:
Subject:
Cannot run rpcinfo -p (Server_Name) from the client successfully
Note:
Fact: NetWorker
Symptom: Cannot run rpcinfo -p (Server_Name) from the client successfully
Symptom: Error: 'rpcinfo: can't contact portmapper:'
Symptom: Error: 'RPC: Rpcbind failure'
Symptom: Error: 'RPC: Failed (unspecified error)'
Cause: 1) Calls to 7938 by client solicit a denial by the lgtomapper
2) NetWorker server daemon binding is too high on the server (nsrd is at port 20352)
Fix: For a Fix or following workaround, see the following. For LGTpa30184, Contact Legato Customer Support for Details.
Perform the following:
1) Stop all NetWorker server processes
2) Run nsrexecd
3) Wait 30 seconds
4) Start nsrd
Alternatively you can follow LGTpa30184 and insert the following sleep line etc/rc2.d/S95networker, don't change anything else only add the line after the first "fi", this has the effect of delaying the startup of nsrd by 30 seconds:
case $1 in
'start')
(echo 'starting NetWorker daemons:') > /dev/console
if [ -f /usr/sbin/nsrexecd ]; then
(/usr/sbin/nsrexecd -s zinc -s tallboy) > /dev/console 2>&1
(echo ' nsrexecd') > /dev/console
(echo '') > /dev/console
fi
/usr/bin/sleep 30 <========= Insert this line here=================
if [ -f /usr/sbin/lgtolmd ]; then
(/usr/sbin/lgtolmd -p /nsr/lic -n 1) > /dev/console 2>&1
(echo 'lgtolmd') > /dev/console
(echo '') > /dev/console
fi