1754297 Members
2945 Online
108813 Solutions
New Discussion юеВ

shutdown -rn hangs

 
SOLVED
Go to solution
Ionut Grigorescu_2
Super Advisor

shutdown -rn hangs

Hi all,

I have a rp5470 box with HPUX11.i which hangs up by shutdown -rn - see below:
Stopping Internet Services ................................... OK
Stop NFS client subsystem .................................... OK
Stop NIS client subsystem .................................... OK
Stop NIS server subsystem .................................... OK
Stop NIS+ client subsystem ................................... OK
Stop NIS+ server subsystem ................................... OK
Stop NFS core subsystem ...................................... OK
Stopping name server daemon .................................. N/A
Unconfigure LAN interfaces ................................... OK
Disable nettl tracing for HP Open Call ....................... OK
Unconfigure HP Gigabit Ethernet interfaces ................... OK
Unconfigure HP iether 100BT/Gigabit Ethernet interfaces ...... OK
Unconfigure HP igelan Gigabit Ethernet interfaces ............ OK
Stop network tracing and logging daemon ...................... OK
Stop pty allocator daemon .................................... OK
Stop system message logging daemon ........................... OK
Stop Software Distributor agent daemon ....................... OK
Unconfigure Loopback interfaces (lo0) ........................ OK
Stopping VERITAS Enterprise Administrator Service (vxsvc) ....
I don't know what is this vxsvc , I still have access to console and I can kill vxvsc but I don't know if it's safe so.

Thank you ,
ionu
If it weren't for STRESS I'd have no energy at all
9 REPLIES 9
melvyn burnard
Honored Contributor
Solution

Re: shutdown -rn hangs

That is used for the VxVM EA management interface (V3.5 of VxVM I believe).
It should not cause any issues if you do kill it.
There is a known issue with this, and there are various VxVM EA patches you install to fix this.
You could:
1) search omn the ITRC Patches to get any VxVM patches.
2) Install the latest Patch bundle from HP
3) log a call with your local HP RC to get the correct patches
4) visit http://support.veritas.com/docs/260954



My house is the bank's, my money the wife's, But my opinions belong to me, not HP!
Stefan Farrelly
Honored Contributor

Re: shutdown -rn hangs

Weve had problems with this vxvsc process also on 11.11 boxes - namely it running away and consuming 100% of a cpu on occasion for no apparent reason. After discussions with the HP Response centre we found out it is not needed if you are using LVM only (and not Vertias volume manager instead) so we disabled this process from running on all 11.11 servers and weve had no problems with it since! (remove the startup and shutdown symbolic links from /sbin/rc2.d/S999isisd and /sbin/rc1.d/K999isisd). HP will probably fix these problems with a patch for it at some point in the future so you wont have to disable it.

Im from Palmerston North, New Zealand, but somehow ended up in London...
Bharat Katkar
Honored Contributor

Re: shutdown -rn hangs

COnfig file of VXsvc is kept in /etc/vx/isis/Registry. May be you have some problem with the configuration. I suggest you to take a look at it using "vxregctl" tool.

Before that you can check the svc log file located at /var/vx/isis/vxisis.log for any errors.

Most importantly when you kill the process may be "vxisis.lock" remains there and gives you problem when you try to start the service again.

Hope this helps yuo more.
You need to know a lot to actually know how little you know
Ionut Grigorescu_2
Super Advisor

Re: shutdown -rn hangs

Thank you,

case closed.
If it weren't for STRESS I'd have no energy at all
Kent Ostby
Honored Contributor

Re: shutdown -rn hangs

Specifically, if you are running 11.11, you would want to install patchs PHCO_28651 and PHCO_28656.

The patches contain this note as well:

This patch majorly contains bug fixes of the VERITAS
Enterprise Administrator (VEA), which were done
between the VEA release 3.0.2.261 and the VEA release
3.0.2.272, as reported by different VERITAS point
products using VEA.

Best regards,

Kent M. Ostby

"Well, actually, she is a rocket scientist" -- Steve Martin in "Roxanne"
Jeff Carlin
Frequent Advisor

Re: shutdown -rn hangs

Thank-you for posting this problem Ionut. This thread just help me out!
Where wisdom is called for, force is of little use. --Of course, a hammer does wonders for relieving stress.
Mark Gibbons
Occasional Advisor

Re: shutdown -rn hangs

I read this thread with a great deal of interest because my customer has an HP-UX 11.11 system that has hung at shutdown time exactly as described. The patches mentioned are not installed on this system because LVM is used, so I was considering disabling vxsvc as suggested above. My question centres around how I determine for sure that Veritas volume manager is not in use. My fstab lists file-systems of type "vxfs", my /var/vx/isis/vxisis.log file says "vxinstall has not been run".

What can I check to be certain that it is safe to disable the vxsvc service on this system?
Robert-Jan Goossens
Honored Contributor

Re: shutdown -rn hangs

Hi Mark,

it is save to disable this service if you are not using VXVM (Veritas Volume manager)

There a number of ways to verify if your disk are under LVM or VXVM control.

run next command
# vxdisk list

or check the ouput from the bdf command.

VXVM managed system
Filesystem kbytes used avail capacity Mounted on
/dev/vx/dsk/bootdg/rootvol 14461995 3721467 10595909 26% /
/dev/vx/dsk/bootdg/var 13429995 1904980 11390716 15% /var
/dev/vx/dsk/prd1/Home 2031711 509768 1420358 27% /Home

LVM managed system
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol3 255253 29137 200590 13% /
/dev/vg00/lvol1 95701 37074 49056 43% /stand
/dev/vg00/lvol7 1501651 508514 1189217 79% /home
/dev/vg01/lvol7 2252800 1190226 996167 54% /app/oracle

look at the "dev/vgxx" or the "/dev/vx/dsk/bootdg" in the above output.

Hope this helps,
Robert-Jan
Mark Gibbons
Occasional Advisor

Re: shutdown -rn hangs

Many thanks Robert-Jan that has cleared things up splendidly.