Tags: trace

How to find and trace open ports in unix

Technology, Linux, Solaris, HP-UX Send feedback »
Listing all the preocess ids: # /usr/bin/ps -ef | sed 1d | awk '{print $2}' Mapping the files to ports using the PID: # /usr/proc/bin/pfiles 2>/dev/null | /usr/xpg4/bin/grep or # /usr/bin/ps -o pid -o args -p | sed 1d Mapping the sockname to po… more »

How to trace port in AIX

Aix Send feedback »
1. netstat -Aan | grep <Port Name> - This shows if the specified is being used. The hex number in the first column is the address of protocol control block (PCB) bash-3.00# netstat -Aan | grep 32775 f100060000942398 tcp4       0      0  *.32775  … more »

Oracle: Usefull Commands

Technology, Oracle Send feedback »
1.EXPORT: exp system@test owner=test123 file=d:\oracle\user.dmp log=d:\oracle\userdump.log rows=y statistics=none feedback=100 indexes=y consistent=y compress=n; (for individual tables=table1,table2,.....) 2.IMPORT: imp system@test fromu… more »