- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: unknow prompt by 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
10-17-2004 03:57 PM
10-17-2004 03:57 PM
"OCT 18 11:08:24 hostname last message repeated 7 times" & "OCT 18 11:08:39 ( have 0, SMTP-DAEMON needs 101 in /var/spool/mqueue.)
I can't login as system keep prompted that there is something wrong with VUE..
May I know wat could have caused this and how should I resolve it.
Thank you all!!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2004 04:36 PM
10-17-2004 04:36 PM
Re: unknow prompt by system.
try to clean up these filesystems.
telnet the system and cleanup the files.
regards,
Govind,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2004 04:44 PM
10-17-2004 04:44 PM
Re: unknow prompt by system.
This is due to lask of enough space in /var.
At the console do bdf and see the free available space.Then try to delete the files that you thing are not required ot move them some where else.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2004 05:12 PM
10-17-2004 05:12 PM
Re: unknow prompt by system.
Please refer these threads :
http://forums1.itrc.hp.com/service/forums/questionanswer.do?admit=716493758+1098076217883+28353475&threadId=84711
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=104564
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2004 08:24 PM
10-17-2004 08:24 PM
Re: unknow prompt by system.
I have tried to clear the /var/adm/syslog/mail.log and also clear files in the /tmp directory, however when I ran df -k the free space allocated to /var is still 0.. is there any reason why is this so? anyway is there anyway to find under /var which files that is excessively large?
Thank you!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2004 08:28 PM
10-17-2004 08:28 PM
Re: unknow prompt by system.
fuser -u "file"
If the file is not in use, and you delete/move/null out, the space will be reclaimed.
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2004 08:32 PM
10-17-2004 08:32 PM
Re: unknow prompt by system.
Can u try check the /var filesystem size.Freeup if it is full.
rgards
SK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2004 09:22 PM
10-17-2004 09:22 PM
Re: unknow prompt by system.
can u tell us whts the fstype, and what size of the /var. see if u can remove files.
#cd /var
#du -sk * ---> paste this output..
thanks & regards,
Govind.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2004 02:18 AM
10-18-2004 02:18 AM
Re: unknow prompt by system.
If you are goinh to remove these files use >/dev/null instead of the 'rm' command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2004 05:47 PM
10-18-2004 05:47 PM
Re: unknow prompt by system.
THank YOu!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2004 06:05 PM
10-18-2004 06:05 PM
Re: unknow prompt by system.
We can collect file size on the particular file system with,
du -x
du -xk /home
will generate file size in kill bytes there. You can do grep to get that file or sort with file size of first filed there.
du -xk /tmp | sort -nbrk 1
it will generate file size with most - least in kill bytes.
HTH.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2004 07:52 PM
10-18-2004 07:52 PM
Re: unknow prompt by system.
I did a "du -sk" under "/var" and it gives "203702". May I know what this means?
Thank u.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2004 01:09 AM
10-19-2004 01:09 AM
Solutioncd /var
du -sk *|sort -n
will tell you the biggest file or directory in /var.
fuser -c /var
will tell you who has open files on /var (the -c option lets you know about all subdirectories as well).
When this is all over, look at the lsof utility, and make it part of your standard toolkit on all servers.