effect of full root partition on server


 
Thread Tools Search this Thread
Operating Systems HP-UX effect of full root partition on server
# 1  
Old 12-10-2011
effect of full root partition on server

hi,
I want to know that "What Happen if the root partition gets full on the server? I have HP-Unix 11.11 installed.
# 2  
Old 12-12-2011
Many things...
It ca crash for a start...
# 3  
Old 12-12-2011
With the root partition full it can be impossible to log in. If you are logged in as root at the time, don't log out.
The continuous error messages output to the system console can make the system console unusable. The error messages to system logs and cstm logs can cause /var to fill.

The rest depends on how your system is configured. As long as you have separate mountpoints for /usr /var /opt /tmp and /home it's often recoverable if you are quick. You must reboot after clearing the problem because the /etc/utmp file is likely to be corrupted and the system will have stopped System Accounting.

To get an idea of what might be affected:
Code:
find // -xdev -mtime -1 -exec ls -ald {} \;

Filling /var can be a lot more difficult to deal with.
# 4  
Old 12-13-2011
Don't ever have entire / on disk, without the separate partitions for /var /tmp etc.

Example of good configuration :
Code:
/dev/vg00/lvol3    1048576  416032  627648   40% /
/dev/vg00/lvol1    1835008  170664 1651432    9% /stand
/dev/vg00/lvol8    17301504 10296080 6962808   60% /var
/dev/vg00/lvol7    7241728 4802312 2420416   66% /usr
/dev/vg00/lvol4    2097152 1584384  509056   76% /tmp
/dev/vg00/lvol6    9928704 8433328 1492712   85% /opt
/dev/vg00/lvol5    1048576  826152  220976   79% /home

This way, you will probably avoid complely crashed system caused by lack of disk space.
Don't chown e.g /oracledatabase to oracle user.
Rather make folder inside and mount your database mountpoints.

This way, if /oracledatabase disk subsystem fails, it can't write to /oracledatabase (since it's owned by root) and fill up / resulting in god knows what.

Hope that helps.
Regards
Peasant.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

TRU64 - Cluster boot partition is FULL

Good day, Anybody, know how to clean/free up the Cluster_boot partition in TRU64 Thank you in advance Miaka (0 Replies)
Discussion started by: miaka1012
0 Replies

2. Ubuntu

Regarding OS partition and root user

Dear Concern, I am new in ubuntu. Is root user disable in ubuntu? Also, is os partition default in ubuntu? I don't find any feature to create customize mount point to install OS. Below is my current OS partition. amirislam@blnidapp03:~$ df -h Filesystem Size Used... (1 Reply)
Discussion started by: makauser
1 Replies

3. Solaris

Need to partition root

Hello guys, I am using Solaris 10 x86 OS. While installing OS i have allocated entire 10 GB space to the root. Now i am not able to create new partition it says me "out of range" or "<cylinder number> not expected". Can someone please help me to allocated a default recommended space i.e 8GB or... (2 Replies)
Discussion started by: bhargav90
2 Replies

4. SuSE

Extend root partition on SuSE enterprise Server 11.1

Hello Folks, Greetings, I am in need of extending the / partition for one of my SuSE linux Enterprise Server 11.1 which is running on VMware. I will be able to extend the virtual lun from the vshphere console but not sure how to extend the root partition from the OS end. I am not sure if I... (1 Reply)
Discussion started by: PSP
1 Replies

5. HP-UX

/var partition full need help

My /var partition is almost utilized ... Here am not sure where to release space now OS/model : HP-UX B.11.11 U 9000/800 # bdf /var Filesystem kbytes used avail %used Mounted on /dev/vg00/lvol9 6144000 6142176 1824 100% /var <root@pb>/var # du -sk * | sort -n |... (20 Replies)
Discussion started by: Shirishlnx
20 Replies

6. Red Hat

increase root partition

i am using redhat 5.4 and my root size shows 98 %, how can i increase root size # df -h Filesystem Size Used Avail Use% Mounted on /dev/sda2 77G 16G 75G 98% / /dev/sda1 2.4G 82M 2.2G 4% /boot tmpfs 3.8G 0 3.8G 0%... (8 Replies)
Discussion started by: reply.ravi
8 Replies

7. UNIX for Advanced & Expert Users

Hard-disk partition is Full problem?

HI, Currently I am working in One of the webhosting company and I found on one of my server "/home" partition is getting full say 105% usage... But when I actually check the partition size using "du -h", exact partition utilization is only 60-70%. So... (1 Reply)
Discussion started by: jagdish.machhi@
1 Replies

8. UNIX for Dummies Questions & Answers

Full Partition?

Hi Everyone, I think I've filled up one of the partitions on my drive. I suspect that one of the applications I've been running has been spitting out junk files to this partition - most of which can be deleted. The problem is that I have no idea how to go look at what's on that partition and... (2 Replies)
Discussion started by: Choppy
2 Replies

9. UNIX for Advanced & Expert Users

root partition full and problem start

We have SunOS 5.7 m/c. Following is the situation and problem what we are facing - - The root partition was full. - No login was possible on server (not from console also) - M/c was power swithced off - After this only console login is possible. FTP is possible. No telnet is possible. I... (1 Reply)
Discussion started by: rahul72
1 Replies

10. Filesystems, Disks and Memory

root partition was full and problem start

We have SunOS 5.7 m/c. Following is the situation and problem what we are facing - - The root partition was full. - No login was possible on server (not from console also) - M/c was power swithced off - After this only console login is possible. FTP is possible. No telnet is possible. I... (3 Replies)
Discussion started by: rahul72
3 Replies
Login or Register to Ask a Question