- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Simple question
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
03-07-2003 09:02 AM
03-07-2003 09:02 AM
Simple question
I have N4000 box with hpux 11.0. This box, runs a several applications and frequently I??ve a file system full ( application and operation system ). The question is ???this frequently file system full on the files system of operation system could cause any problem on my system ????
Thanks,
Romildo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 09:06 AM
03-07-2003 09:06 AM
Re: Simple question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 09:09 AM
03-07-2003 09:09 AM
Re: Simple question
If your data file systems are full, that may affect your user operations. The best option would be to monitor the FS sizes everyday.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 09:17 AM
03-07-2003 09:17 AM
Re: Simple question
The FS's that are filling up - are they filling with log files, data files, or both? if your FS is filling with data, could you consider moving the data to it's own FS or extending the one you have? If log files are filling the FS, you might consider creating a FS dedicated to log files. (Call it /var/opt/logs or whatever.) Then point as many applications as possible to log into that FS. If the FS fills, at worst you don't get the logging you want. If you can't get the application to log in a different place, you may be able to link the file to /var/opt/logs and force the app to log in the other FS.
Hope it helps
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 09:22 AM
03-07-2003 09:22 AM
Re: Simple question
If you could expand on this, we could offer more precise assistance.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 09:25 AM
03-07-2003 09:25 AM
Re: Simple question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 09:33 AM
03-07-2003 09:33 AM
Re: Simple question
If /var hits 100% your system will halt. This is where your system writes logs and it simply can't run if its full.
If / "root" fills up, your system may stop accepting logins. The /etc/group or /etc/passwd file may get clobbered.
Application filesystems may be a problem too.
Lets say you have oracle or some other database writing archive logs(database transaction logs) to an application filesystem. Filesystem fills up. Oracle crashes, no more databse up. That would be a problem if that database powers a 24/7 customer service site or something.
Space management is a big issue. As sysadmin you need to stay on top of it.
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
03-07-2003 10:37 AM
03-07-2003 10:37 AM
Re: Simple question
To clariffy the question. The box runs three instances of sybase dataserver using raw devices. Runs batches programs (C) too, that uses flat file on file system of application only. After four months active and various file system full on /, /var and /tmp, the databases servers has problems with shared memory and solution was a system reboot.
The system operation file system was quite dimensioned, but s.. happens.
I oppen hp call and the aswer is that no relation on ???file system full??? ( of operation system??s ) and ???shared memory problems???. Is it true ?
Thanks all,
Romildo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 10:51 AM
03-07-2003 10:51 AM
Re: Simple question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 11:04 AM
03-07-2003 11:04 AM
Re: Simple question
find /name_of_file_system -type f -mtime +30 -exec rm {} \;
This would search your filesystem for files not touched in 30 days and remove them. If you put this in a cron job that runs every night, or even once a week, you'll have less trouble with things filling up.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 11:15 AM
03-07-2003 11:15 AM
Re: Simple question
The / directory should never grow in size. It is a static directory and contains /dev and /etc. /dev may increase by a few bytes as device files are add, while /etc might increase when config files are added and/or edited. The 3 primary sysadmin errors causing / to fill up are:
1. root 'droppings' because root' HOME directory defaults to /, a very bad choice. root's HOME should be moved to /home/root and the passwd file updated accordingly. This prevents mistakes from taking out the entire opsystem (reboot).
2. Applications install in non-standard directories (ie, the app is stored in /app_name or similar) and this is very bad. Move (or remove & reinstall) apps in /opt where they belong.
3. A misspelled devicefile used for a backup automatically becomes an ordinary file as in:
tar cvf /dev/rmt/om /opt
where om should have been 0m (zero versus the letter o). There must be no ordinary files in the /dev directory (hint find /dev -type f)
All Unix systems require active management of /tmp and /var as poor user habits and/or applications will easily fill up these filesystems with junk. And /var also has numerous log files that only grow loarger--these must be trimmed on a regular basis. Your system will continue to be very unstable unless disk space is monitored on a regular basis (hint: cron jobs).
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 12:03 PM
03-07-2003 12:03 PM
Re: Simple question
Thank Bill and Clay, you are right, the sybase process was unstable and the DBA adm kill then with ???kill -9???, before clean shared memory with ???ipcrm??? and try to start instances, but it didn??t go on. Then the reboot on the server was need.
Thanks
Romildo