cancel
Showing results for 
Search instead for 
Did you mean: 

AIX command for SAP services

Former Member
0 Kudos

Hai friends,

I hv a small doubt plz respond.

what is d AIX command 2 see the services on sap ecc6.0system with DB6 data base.

Plz send me a path

Regards

jagan

Edited by: jagan jagadeesh on Sep 9, 2008 2:15 PM

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member640873
Active Participant
0 Kudos

Hi Jagan,

Do you mean the processes of the SAP system or the etc service entries?

Anyway, there are both:

ps -ef|grep dw. For example:

  1. ps -ef|grep dw

hi3adm 20507 20498 0 15:59:31 ? 0:00 dw.sapHI3_DVEBMGS01 pf=/usr/sap/HI3/SYS/profile/HI3_DVEBMGS01_saphp1

hi3adm 20506 20498 0 15:59:31 ? 0:01 dw.sapHI3_DVEBMGS01 pf=/usr/sap/HI3/SYS/profile/HI3_DVEBMGS01_saphp1

hi3adm 20515 20498 0 15:59:36 ? 0:00 dw.sapHI3_DVEBMGS01 pf=/usr/sap/HI3/SYS/profile/HI3_DVEBMGS01_saphp1

hi3adm 20508 20498 0 15:59:31 ? 0:56 dw.sapHI3_DVEBMGS01 pf=/usr/sap/HI3/SYS/profile/HI3_DVEBMGS01_saphp1

hi3adm 20505 20498 0 15:59:31 ? 1:56 dw.sapHI3_DVEBMGS01 pf=/usr/sap/HI3/SYS/profile/HI3_DVEBMGS01_saphp1

hi3adm 20498 20466 0 15:59:30 ? 0:03 dw.sapHI3_DVEBMGS01 pf=/usr/sap/HI3/SYS/profile/HI3_DVEBMGS01_saphp1

hi3adm 20510 20498 0 15:59:32 ? 0:03 dw.sapHI3_DVEBMGS01 pf=/usr/sap/HI3/SYS/profile/HI3_DVEBMGS01_saphp1

isisroot 21725 21285 0 09:23:50 pts/tc 0:00 grep dw

hi3adm 20509 20498 0 15:59:32 ? 0:14 dw.sapHI3_DVEBMGS01 pf=/usr/sap/HI3/SYS/profile/HI3_DVEBMGS01_saphp1

hi3adm 20504 20498 0 15:59:31 ? 2:41 dw.sapHI3_DVEBMGS01 pf=/usr/sap/HI3/SYS/profile/HI3_DVEBMGS01_saphp1

For the services, you can check the /etc/services file. For exmaple:

  1. grep -i hi3 /etc/services

sapmsHI3 3601/tcp # SAP System Message Port

db2hi3 5900/tcp #SAP DB2 Communication Port

DB2_db2hi3 60008/tcp

DB2_db2hi3_1 60009/tcp

DB2_db2hi3_2 60010/tcp

DB2_db2hi3_END 60011/tcp

sapdb2HI3 5901/tcp # SAP DB2 Communication Port

Regards,