AIX -UNIX lsof


 
Thread Tools Search this Thread
Operating Systems AIX AIX -UNIX lsof
# 1  
Old 09-03-2008
Power AIX -UNIX lsof

Hi,
I am using lsof command to find all open files in our AIX-unix 5.3 server.The o/p looks like this,
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
oracle 372902 cbn cwd VDIR 47,2 4096 4186880 /glotam (/dev/fslv00)

But i want to know which are the files opened in server, this output gives me only the INODE number not the file path of the opened file.How do i find the exact file path from this INODE(using find command i can get the file path).Is any other way to find directly the file path?

Regards,
Nags.
# 2  
Old 09-09-2008
Re lsof

A sample :
[root@srvaixnim]:/var/tmp> lsof
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
(unknown) 0 root cwd VDIR 10,4 4096 2 / (/dev/hd4)
init 1 root cwd VDIR 10,4 4096 2 / (/dev/hd4)
init 1 root 0u VREG 10,4 20736 908 / (/dev/hd4)
snmpmibd6 86258 root cwd VDIR 10,4 4096 5031 / (/dev/hd4)
...
errdemon 118968 root 3r VREG 10,5 40808 37651 /usr (/dev/hd2)
[root@srvaixnim]:/var/tmp> find /usr -inum 37651
/usr/lib/nls/msg/en_US/cmderrlg.cat
Bestov
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. OS X (Apple)

Lsof output

This is abridged lsof output from my safari process: Safari 13063 owner 9u unix 0x982ef3b9c1be1293 0t0 ->0x982ef3b9b7534eab Safari 13063 owner 10u unix 0x982ef3b9c1be0933 0t0 ->0x982ef3b9c1be1423 Safari 13063 owner 11u unix 0x982ef3b9c1be1423 ... (1 Reply)
Discussion started by: sakurashinken
1 Replies

2. Shell Programming and Scripting

Help required - lsof in AIX

Hi All, Output of the following command is ok so far ... netstat -an | grep 192.168.156.1.16507 | awk '{print $5}' | awk '{FS="."} {print $5}' 1297 1350 1394 1211 1255 1259 4606 2184 2009 4890 1398 3941 1671 1780 (1 Reply)
Discussion started by: sraj142
1 Replies

3. AIX

Get Next month in AIX from curent date in unix AIX

How could we derive teh Next month in MON-RR format from current date ie sysdate in UNI AIX sheel script.I coould get a command but i supports only inLinux susse andnotin AIX. I need for Unix AIX.Pls Help. Regards Shiv (2 Replies)
Discussion started by: SHIV75
2 Replies

4. HP-UX

lsof in HP-UX

In Linux and Solaris lsof accepts the -X switch which allows to see if deleted files are still in use and eat disk space. In HP-UX it is now working and it is a problem... today one of my filesystems on the server was increasing very fast but existing file sizes were not really changing. lsof shows... (3 Replies)
Discussion started by: Vorb
3 Replies

5. UNIX for Dummies Questions & Answers

about lsof

Hi, I typed lsof -i :80 in my putty but i am not able to get sockets related to port 80 Can any one help me out soon Can anyone point out the reason for not able to get the related sockets Output of what i am getting in my putty is displayed below training@use:~> lsof -i :80... (4 Replies)
Discussion started by: satheeshkr_cse
4 Replies

6. UNIX for Dummies Questions & Answers

lsof

I'm looking to list all of the files open at a certain time up on a UNIX box. From looking on the internet, it looks as though lsof is the most common. However have tried this and got the following: ksh: lsof: not found Now having gone into bash mode and hit tab twice I see that lsof... (3 Replies)
Discussion started by: meevagh
3 Replies

7. Shell Programming and Scripting

lsof in solaris

Hi .. I have written a cronjob to invoke a script that would transfer files based on some criteria. Consider folders A and B. Say I FTP a large file to A. Before the file gets fully transfered say the cronjob gets invoked. The script will move the file before its fully transfered. To detect... (1 Reply)
Discussion started by: champak
1 Replies

8. UNIX for Dummies Questions & Answers

lsof ???

Hi All, I'm having a problem with "lsof" in HP-UX system. Its giving me 2 two different results when running it. 1 . lsof -p 'PID' | wc -l -----gives some value 2 . lsof | grep 'PID' | wc -l The above two commands gives me two different values with the same PID...... Thanks (6 Replies)
Discussion started by: marc
6 Replies

9. UNIX for Dummies Questions & Answers

lsof output

what does this line of output signify from the lsof output: java 1419 root 7u sock 0,0 2170 can't identify protocol Thanks (2 Replies)
Discussion started by: skotapal
2 Replies

10. Filesystems, Disks and Memory

lsof

Could someone please give me a step for a hint on which version and where is the above utility is for version 4.3.3.0 of Aix. (1 Reply)
Discussion started by: jacl
1 Replies
Login or Register to Ask a Question