rc.log flooded


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers rc.log flooded
# 1  
Old 08-23-2002
Question rc.log flooded

Hi folks,

its the right forum for me - no clue about UNIX. Unfortunately I'm working with a industrial control system on a HP-UX platform. My problem is that the /etc/rc.log file gets flooded with messages telling me:

EpaSelectSocket[10123]: ERROR [0] fds[0].revents = 8

What does it mean? And do I have a chance to solve the problem? Smilie

Your help is greatly appreciated. Please save my harddisk Smilie

teekay
# 2  
Old 08-23-2002
Perhaps someone familiar with your OS can help you with this error.

In the meantime, if your system is getting flooded and your hard disk is in danger simply build a symbolic link that links /dev/null to your /etc/rc.log file. Something like:

ln -sf /dev/null /etc/rc.log

Something like this will save your hard drive while you are looking for the real solution.
# 3  
Old 08-23-2002
Great, lets send it into the nirwana!

yes, I thought about asking the techies @ the supplier, but they all left for better jobs... Smilie

Is there something like the DOS-"autoexec.bat" where to place that command?

Thanx
teekay
# 4  
Old 08-23-2002
You just execute the command from the command line once. It is not necessary to put it in a startup file.

Sometimes the ln -sf (force the symbolic link) does not work as planned and it is necessary to remove the offending file first and then build the symbolic link.
# 5  
Old 08-23-2002
HPUX Resources...

You should feel priviledged that Neo answered your post!!!Smilie

I am an HP Admin and I have never seen that error before. Of course I have only been doing UNIX for 5 years.

I do know of a great website. www.itrc.hp.com. It is a resource for HPUX. It has forums and technical white papers.

Also, you can go to www.docs.hp.com for all the Published documents that HP has.


Smilie
Smilie
# 6  
Old 08-23-2002
The /etc/rc.log logs startup run-commands...
It may be helpful to watch the machine reboot, and see where the errors are as it's coming back up, if possible.

Also, I tried a Google search for "EpaSelectSocket", with 0 hits - you may have to contact the vendor in the case that this is a custom application.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Log all the commands input by user at real time in /var/log/messages

Below is my script to log all the command input by any user to /var/log/messages. But I cant achieve the desired output that i want. PLease see below. function log2syslog { declare COMMAND COMMAND=$(fc -ln -0) logger -p local1.notice -t bash -i -- "$USER:$COMMAND" } trap... (12 Replies)
Discussion started by: invinzin21
12 Replies

2. Web Development

How to log http 404 error to a separate log file?

Apache Web Server: how to log http 404 error to a separate log file and i do not want to log in access.log please advice. (2 Replies)
Discussion started by: raghur77
2 Replies

3. Shell Programming and Scripting

Log search and mail it if the log is updated before 24 hours from the current time

Hi , We have around 22 logs , each has different entries. I have to automate this using shell script. The ideas which am sharing is given below 1) We use only TAIL -100 <location and name of the log> Command to check the logs. 2) We want to check whether the log was updated before 24... (13 Replies)
Discussion started by: Kalaihari
13 Replies

4. Shell Programming and Scripting

Check log file size every 10 minute. Alert if log not update

How to check log size every 10min. by script (can use crontab) if log size not change with alert "Log not update" Base run on SunOS 5.8 Generic_Virtual sun4u sparc SUNW,SPARC-Enterprise logFiles="log1.log log2.log" logLocation="/usr/home/test/log/" Out put. Tue Jan 31... (3 Replies)
Discussion started by: ooilinlove
3 Replies

5. Shell Programming and Scripting

Monitor log entries in log files with no Date format? - Efficient logcheck?

is there a way to efficiently monitor logfiles that do not have a date or time format? i have several logs on several different servers that need to be monitored. but i realized writing a script for this would be very complex and time consuming giving the variety of things i need to check for i.e.... (2 Replies)
Discussion started by: SkySmart
2 Replies

6. HP-UX

Script to monitor /var/opt/resmon/log/event.log file

AM in need of some plugin/script that can monitor HP-UX file "/var/opt/resmon/log/event.log" . Have written a scrip in sh shell that is working fine for syslog.log and mail.log as having standard format, have interrogated that to Nagios and is working as I required . But same script failed to... (3 Replies)
Discussion started by: Shirishlnx
3 Replies

7. Shell Programming and Scripting

How can view log messages between two time frame from /var/log/message or any type of log files

How can view log messages between two time frame from /var/log/message or any type of log files. when logfiles are very big and especially many messages with in few minutes, I would like to display log messages between 5 minute interval. Could you pls give me the command? (1 Reply)
Discussion started by: johnveslin
1 Replies

8. Shell Programming and Scripting

Perl's buffered I/O is causing me to miss latest log file entries in log colorizer. How to fix?

I've been finding myself using a log file colorizer written in perl to reformat and colorize the output from many different programs. Mainly, however, I use it to make the output from "tail -f" commands more readable. The base perl script I use is based on "colorlogs.pl" available from the... (1 Reply)
Discussion started by: rcsteiner
1 Replies

9. Emergency UNIX and Linux Support

/var/log/wtmp SuSE log permission rollback

Hello All, On my SuSE system, I have wtmp log this log file permission is 644 but every reboot the file permission rollback to 664. In the logrotate.conf and logrotate.d/wtmp files the wtmp logrotate set to 644. I would like to know, which "file" or "script" modify the wtmp log to rollback to... (7 Replies)
Discussion started by: kalaso
7 Replies

10. UNIX for Advanced & Expert Users

CVS command checkin log minus tag log

Hi What is the cvs command for getting the diff between the checkin log and tag log. i am trying cvs rdiff -s -r <branch Tag> -r <branch> <module> but it is not giving me the files that were not tagged. I think it is doing a diff for common files in head and tag. Please help ... (0 Replies)
Discussion started by: rakeshou
0 Replies
Login or Register to Ask a Question