Operating System - HP-UX
1836456 Members
2232 Online
110101 Solutions
New Discussion

Re: remote execution of a Veritas process hangs

 
SOLVED
Go to solution
Dan Copeland
Regular Advisor

remote execution of a Veritas process hangs

remsh executing a Veritas script (ltid) hangs w/ no return. Executing it locally works fine. The remsh worked fine before we put the 11.0 Dec 2002 patch bundles on.

Any thoughts?

tia,
Frank
7 REPLIES 7
Michael Steele_2
Honored Contributor

Re: remote execution of a Veritas process hangs

.rhosts
rlogin
rcp
remsh

If you can rlogin you can remsh. All of these are dependent upon the .rhosts file within $HOME.

vi $HOME/.rhosts

You can see everything with 'tcpdump' since you're remotely connected over the network.
Support Fatherhood - Stop Family Law
Michael Steele_2
Honored Contributor

Re: remote execution of a Veritas process hangs

Steven E. Protter
Exalted Contributor

Re: remote execution of a Veritas process hangs

If the target server has a file called /var/adm/inetd.sec it could be blocking access from your Veritas server.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Dan Copeland
Regular Advisor

Re: remote execution of a Veritas process hangs

All remsh, rcp, and rlogin functionality is working correctly for every command except the Veritas ltid command and this command executes correctly it's just that the remote server where the remsh is executed from never gets a return from the remsh. If you log on to the target server and kill the ltid process only then does the remsh command return.
Frank Slootweg
Honored Contributor
Solution

Re: remote execution of a Veritas process hangs

What often helps is using remsh's "-n" option and specifically redirecting standard input, output and error, i.e.

remsh host -n command /dev/null 2>/dev/null

If output/error should be kept, then redirect to a real file.
Tim Sanko
Trusted Contributor

Re: remote execution of a Veritas process hangs

Frank,

Veritas uses UDP sockets. It is not guarenteed to make connection. Check your overall network bandwidth used. I have seen inconsistant results with 30% bandwidth used across silkworm 3800 multi-gigabit fibre backbone.

IMHO look at isolating the backup VLAN if possible and trace,trace,trace and then start beating on Veritas if there are no errors found at cards or ports.

Tim
Dan Copeland
Regular Advisor

Re: remote execution of a Veritas process hangs

Thanks Frank, the -n w/ redirects worked...