by Rich Kreider
There are numerous ways to accomplish getting the PID for an established network connection in AIX and Linux using tools like ss or more popular lsof. In my situation, the system I was working on did not have ss or lsof, so I used netstat and rmsock.
If I know I have an established connection to a remote host 192.168.9.150, I can use netstat to narrow down and obtain the PCB/ADDR using the following command.
~ # netstat -naA|grep 192.168.9.150
f10000f3026fcb58 tcp4 0 0 10.147.204.10.40107 Continue Reading...
Had an issue with dialout on an AIX system this morning. Problem resolved, but I learned a pretty handy little command for testing dial-out (I didn't have a buttset with me).
Using cu -n -d -l tty2, I can dial-out to my cellphone to help in troubleshooting the problem.
# cu -n -d -l tty2
Please enter the number: xxxxxxxxxx
altconn called
Device Type ACU wanted
ttylock tty2 succeeded
Attempting to open /dev/tty2
clear O_NDELAY
filelock: ok
fixline(7, 19200)
gdial(fcmulhays) called
expect: ("")
got Continue Reading...
Instead of using Shift+Backspace to backspace on an AIX terminal, you can use the following setting in the .profile
:
stty erase '^?'
Save the file and logout and back into the AIX terminal and Backspace should work now.
An easy way to get a quick overview of system performance on an AIX server is to use the topas command.
Continue Reading...
Get the serial number of an AIX system.
#!/bin/ksh # # Get serial number of AIX server; # # October 28, 2009 Rich Kreider # ser_num=`lsattr -El sys0 -a systemid | awk '{print $2}' | awk -F, '{print $2}'` prefix=`echo ${ser_num} | cut -c3-4` suffix=`echo ${ser_num} | cut -c5-9` echo ${prefix}-${suffix}
AIX/Unix Commands
free - lists available disk space
dfdb - lists dbspaces on the system. use ifxksh to initialize the ifx environment first
who -b - displays last date system was rebooted
oslevel - lists the version of the operating system
bootinfo -r - lists total amount of real memory installed (divide by 1024 to get MB)
startjs - starts the job server
stopjs - stops the job server
startvlink - starts any interface link procedure incling Misys Vision/Optimum Charge Daemon
stopvlink - Continue Reading...