- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- users process with PID 0 in the system
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2007 06:59 PM
07-02-2007 06:59 PM
170 2042ACCA CSP_FAB 0
171 0 CSP_FAB 0
172 0 DIFFMOD6 0
173 0 CSP_TK 0
174 204190D0 CSP_FAB 0
175 20438CDF CSP_FAB 0
176 0 CSP_FAB 0
177 0 ETCHMOD6 0
178 0 CSP_FAB 0
179 0 CSP_TK 0
180 2044ACFB CSP_FAB 0
How can we stop such process? Does anyone has any idea ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2007 07:15 PM
07-02-2007 07:15 PM
Re: users process with PID 0 in the system
Some time those process goes to RWAIT (Resourse wait state) or MWAIT state. Then those process has PID 0.
Some time those processes can be killed by stopping the decnet network and restarting it.
$stop/net decnet
$start/net decnet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2007 07:36 PM
07-02-2007 07:36 PM
Solutionyou should be looking at the output of SHOW SYSTEM for the state of those processes. The output you've shown is most likely from some kind of application, which is unable to obtain status information from those processes and therefore shows a PID of 0...
Any process running in OpenVMS has to have a non-zero PID.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2007 08:30 PM
07-02-2007 08:30 PM
Re: users process with PID 0 in the system
Background: One of our application checks for the number of users before aloowing any new user to login. Some times it reports that maximum limit already reached and denies new logins into the application. we checked the system and found that the current users where much below the threshold set. We esclated it to the application vendor and gave us one utility which reads the UAF global sections and produces the list of users in the uaf global section. which doesn't match with sho user or show system outputs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2007 08:36 PM
07-02-2007 08:36 PM
Re: users process with PID 0 in the system
this may then simply be an application problem. What is the 'UAF global section' ?
Maybe those processes exited the application abnormally and there was no rundown-handler executed to clean up the entry in the 'UAF global section'.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2007 09:04 PM
07-02-2007 09:04 PM
Re: users process with PID 0 in the system
$ SHOW ACC ! check whether accounting is active
$ ACC/TYPE=PROCESS -
/SINCE=
/ID=
This would tell you when the given process exited and will also tell you the exit status.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2007 10:50 AM
07-03-2007 10:50 AM
Re: users process with PID 0 in the system
Killing "idle" processes is almost always a bad idea. It invariably causes more problems than it solves (if you doubt that, consider this posting!). I don't think I've ever seen an automated Idle Process Killer (IPK) that works properly and doesn't have the potential for causing great harm. Please think very hard about why you have an IPK at all, and if the perceived benefits outweigh problems caused by just this issue. You should also research what other problems you may experience by arbitrarily killing processes.
At the very least, you need to make sure the IPK doesn't just $DELPRC the target processes. It should $FORCEX, and you need to make sure the processes have exit handlers to clean up things like global sections and open files. Without properly implemented exit handlers, it's LIKELY you will corrupt files or data structures (indeed, the danging global sections you're describing here are a form of corruption).
$DELPRC is a very big hammer, which should be used VERY carefully.
Generic IPKs are a BAD solution looking for the wrong problem, and should be avoided.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2007 11:22 AM
07-03-2007 11:22 AM
Re: users process with PID 0 in the system
tty idle watcher someone whipped up that didn't run right and left zombies. later was
fixed to do $forcex, and fixed most of the
problems. Dean