Results 1 to 2 of 2
I just inherited a linux box that I need to 'figure out'. It's acting as a Reverse Proxy server and I believe it's RedHat 2.4.21...
Anyone have any tips on ...
- 03-17-2008 #1Just Joined!
- Join Date
- Mar 2008
- Posts
- 1
Identifying Reverse Proxy Software on Redhat
I just inherited a linux box that I need to 'figure out'. It's acting as a Reverse Proxy server and I believe it's RedHat 2.4.21...
Anyone have any tips on how I would determine what kind of reverse proxy software this was running? Where to look, how to identify, etc? Any suggestions would be a big help
Ped
- 03-17-2008 #2Linux Guru
- Join Date
- Nov 2007
- Posts
- 1,695
Google will be a big help as always - you can search for Linux commands and then search for any unknown process names to find out what they are.
As root, ps -ef will list all processes running:
Example:Code:ps -ef
From the list above, you can see NFS, lockd, RPC, Postgre, Sendmail, Java, RARP, Cron, etc. are running.Code:root 4766 1 0 Feb26 ? 00:01:07 [nfsd] root 4770 1 0 Feb26 ? 00:00:00 [lockd] root 4771 1 0 Feb26 ? 00:00:00 [rpciod] root 4777 1 0 Feb26 ? 00:00:00 rpc.mountd postgres 4819 1 0 Feb26 ? 00:03:04 /Data/DB/postgres/pgsql/server/bin/rotatelogs /Data/DB/postgres/pgsql/l postgres 4830 1 0 Feb26 ? 00:00:02 /Data/DB/postgres/pgsql/server/bin/postmaster -i postgres 4832 4830 0 Feb26 ? 00:00:00 postgres: stats buffer process postgres 4833 4832 0 Feb26 ? 00:00:00 postgres: stats collector process root 4856 1 0 Feb26 ? 00:00:27 sendmail: accepting connections smmsp 4865 1 0 Feb26 ? 00:00:00 sendmail: Queue runner@01:00:00 for /var/spool/clientmqueue root 4893 1 0 Feb26 ? 04:00:37 /Data/OpForce/jdk/bin/java -Xms64m -Xmx256m -XX:NewRatio=3 -Djava.endor root 4905 1 0 Feb26 ? 00:00:00 /usr/sbin/rarpd root 4918 1 0 Feb26 ? 00:00:01 gpm -t ps/2 -m /dev/mouse root 4927 1 0 Feb26 ? 00:00:01 crond xfs 4957 1 0 Feb26 ? 00:00:00 xfs -droppriv -daemon daemon 4966 1 0 Feb26 ? 00:00:00 /usr/sbin/atd root 4980 1 0 Feb26 tty1 00:00:00 /sbin/mingetty tty1 root 4981 1 0 Feb26 tty2 00:00:00 /sbin/mingetty tty2 root 4982 1 0 Feb26 tty3 00:00:00 /sbin/mingetty tty3 root 4983 1 0 Feb26 tty4 00:00:00 /sbin/mingetty tty4


Reply With Quote