- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: My Linux is Dying
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-10-2004 09:59 PM
07-10-2004 09:59 PM
My Linux is Dying
There are many problems with my Red Hat AS 3 Server (runs on hp Proliant DL580):
First, it does not accept new connections (telnet, ssh). However, existing connections are working. Web connections work either.
Second, when I run xinetd -c, the proccess (xinetd -c) remains in the system (PPID=1).
Third, /var/log/messages is empty.
Another problem is that the load average is about 140 (cpus are 99% idle).
If that's not enough, crontab is not working too.
It happened also a week ago, and reboot solved the problems.
Anybody has a idea what is wrong here?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2004 11:57 PM
07-10-2004 11:57 PM
Re: My Linux is Dying
1) "df" output
2) top [top -b] output
3) "free" & "vmstat" output
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2004 12:42 AM
07-11-2004 12:42 AM
Re: My Linux is Dying
There are two more things we noticed about the server: when we kill a process, it becomes defunct;
And there are about 20 CROND processes in the system.
Thanx, Maxim.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2004 07:38 AM
07-11-2004 07:38 AM
Re: My Linux is Dying
Then you need to look at its cron schedule and see what its running and if there is enough time between runs on repetitive processes.
You need to look for full filesystms on the df -h especially /var because you can't run your system without /var
You more than likely have a cron job calling itself over and over again.
or worse, you have an authorized or unauthorized user doing the same thing.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2004 05:56 PM
07-11-2004 05:56 PM
Re: My Linux is Dying
And regarding cron - there are two ways to deal with "too many crons":
- just take off cron : chkconfig crond off; chkconfig anacron off; service crond stop
- check crontabs of all users and delete problematic part.