- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Unknown File
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
12-18-2001 12:05 PM
12-18-2001 12:05 PM
[Tue Oct 30 03:20:35 2001 EST]::Client Connected [ConnId=0, Sockfd=19, PID=13200
]
[Tue Oct 30 03:21:31 2001 EST]::Client Status [ConnId=0, PID=13200]
>> Read EOF on socket, Connection terminated
[Tue Oct 30 03:21:31 2001 EST]::Client Disconnected [ConnId=0, Sockfd=0, PID=132
00]
[Tue Oct 30 07:10:21 2001 EST]::Client Connected [ConnId=1, Sockfd=19, PID=13244
]
[Tue Oct 30 07:10:38 2001 EST]::Client Status [ConnId=1, PID=13244]
>> Read EOF on socket, Connection terminated
Can anyone help me with this? Has anyone ever see this? I have looked and looked and can not figure out where it is coming from. Thanks in advance for your help.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2001 12:08 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2001 12:11 PM
12-18-2001 12:11 PM
Re: Unknown File
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2001 12:28 PM
12-18-2001 12:28 PM
Re: Unknown File
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2001 12:38 PM
12-18-2001 12:38 PM
Re: Unknown File
lsof is list open file. It is a non-standard utility that is available from any of the HP-UX Porting Centre's. It is a tool no admin should be without.
I would try one more thing. Do an ls -b. This will print any non-printable ASCII characters in the filename as octal digits. It is possible that the filename only appears to be null.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2001 12:54 PM
12-18-2001 12:54 PM
Re: Unknown File
Hi,
INfo on lsof and the download link:
lsof-4.55
List files, sockets, etc opened by processes. Also gives a large amount of other related information. Can select by process ID, username or filename. It is a complete redesign of the fstat/ofiles utilities. This release now has lots of additions and bug fixes including support for HP-UX 11.X. Note that the binary releases of lsof on this archive will ONLY run on OS release they were compiled on and will run on 32-bit HP-UX only. If you have any other release of HP-UX, you must build lsof yourself from the source code.
http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.55/
-raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2001 12:56 PM
12-18-2001 12:56 PM
Re: Unknown File
I would also suggest to track the processes writing into the file by running,
ps -ef in a loop and redirecting it to a file and greping the process id shown in the unknown file to the psef output file.
while true
do
ps -ef >>/tmp/psout
sleep 10
done &
grep
The process name would give clue on what is actually writing/owning the file in question.
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2001 02:18 PM
12-18-2001 02:18 PM
Re: Unknown File
this looks like an Oracle listener logfile (so it IS oracle, actually) using the protocl "IPC" (which is named pipes). Could it be someone has added a parameter into Oracle's listener.ora or sqlnet.ora, and assigned the value of "(null)" to the name of the logfile (do not remember the parameter name)? Read those files in "/etc/" or "$ORACLE_HOME/network/admin/" to check.
HTH,
Wodisch