cancel
Showing results for 
Search instead for 
Did you mean: 

How can I know if JAVA stack is installed and running?

LeonardoAraujo
Active Contributor
0 Kudos

How can I know if the JAVA stack is installed and running?

I mean from the ABAP stack, while logged to the application server, how can I check if JAVA stack exists?

Thanks

Leonardo

Accepted Solutions (1)

Accepted Solutions (1)

suresh_krishnamoorthy
Active Contributor
0 Kudos

Hi Leonardo,

You can also find the server details using following steps:

http:
<hostname:portn0>\index.html -> click on system information-> login with admin rights -> you can get all details about the installed server.

Regards, Suresh KB

LeonardoAraujo
Active Contributor
0 Kudos

I should have been more clear on my question.

I needed to know if a JAVA stack was installed and running FROM the ABAP stack.

The transaction SMICM is a good answer. It gave me this result:

ICM Status: Running

Restart After Error true

Trace Level (0-3): 1

Created Worker Threads: 10 / 10 / 50 ( Current / Peak / Maximum )

Connections Used: 0 / 5 / 500 ( Current / Peak / Maximum )

Queue Entries Used: 0 / 3 / 500 ( Current / Peak / Maximum )

No. Thread ID Number Status Processed Request

1 2860 10.743 Available

2 2864 10.744 Available

3 2868 10.744 Available

4 2876 10.743 Available

5 2628 10.744 Available

6 2896 10.744 Available

7 2936 10.743 Running Administration

8 2940 10.744 Available

9 2932 10.744 Available

Does the ICM status running mean java installed and AS up?

Thanks for the asnwers guys!

Leonardo

Former Member
0 Kudos

Go to SMICM->GoTO-> Display Data->HTTP

Their you will find the J2ee engine parameters.

--Kalyan

Plz reward if answer is helpful.

Former Member
0 Kudos

Hi,

The tool jcmon is very usefull to see current java stack condition. For details:

Link:[JCMON|http://help.sap.com/saphelp_nw04/helpdata/en/d3/4d074147c1f06fe10000000a1550b0/frameset.htm]

To start it:

jcmon pf=/usr/sap/<SID>/sys/profile/<SAPSID>_<INSTANCE_ID>_<HOST>

Award points if found usefull.

regards, Shantanu

LeonardoAraujo
Active Contributor
0 Kudos

Thanks all.

Got the answer using transaction SMICM HTTP display data.

Thanks all.

Leonardo De Araujo

....points rewarded...

Answers (3)

Answers (3)

Former Member
0 Kudos

Hello Leonardo,

Both the SMICM method and the MMC method above will work. You can also check for the processes which are running at OS level.

So in Windows use the Task manager and check for Jlaunch pocesses

On Unix something like

ps -ef grep | jlaunch

Regards,

David

Former Member
0 Kudos

If you are running on windows, then you can verify that the Java processes are running within the SAPMMC (you may have to be logged onto the server to see this -depending on how the system was setup).

Hope that helps.

J. Haynes

Denver, CO

Former Member
0 Kudos

Leonardo,

You can check that from SMICM.

Rajit