/var/log issues on captivators
Here are the instructions for salvaging a full /var/log on a captivator.
1. Use 'df' and 'ls' to determine that /var/log/httpd/access_log is the source of the problem. Often a "sudo du /var/log/* | sort -n" works well.
2. Stop the web server: sudo /sbin/service httpd stop
3. Truncate the large file: sudo su - -c "cat /dev/null > error_log"
4. Restart the web server: sudo /sbin/service httpd start
5. Restart syslog: sudo /sbin/service syslog restart