RAD - using the JVM debug port

I am using RAD 7.5.0 and websphere v6.1 server. When I start the server in debug mode, it displays an error message indicating that

'Running the WebSphere application server in localhost; ran into a problem. JVM debug port #### is used.

What is the problem? How to solve this problem?

+4
source share
2 answers

It just means that the debug port is currently in use. Do you have other IBM products that are already running in this window? Does this happen when you start your server for the first time or for subsequent attempts?

One suggestion would be to track down rogue, freezing Java processes, and kill them (if you don't need them) to solve this problem.

+6
source

I have also been disappointed many times over this. Finally, I found out a solution

To fix this problem, you will need to do the following on all of your subsequent servers:

1. Start the server in "normal" mode (that is, in non-debug mode).

2. Launch the administrative console and log in.

3. Open "Servers", click "Application Servers", and then the server instance (usually "server1").

4. On the Configuration tab, expand Java and Process Management, and then click Process Definition.

5. In the "Advanced Properties" heading, click "Java Virtual Machine".

6. Go to the bottom of the page, find the “Debug Arguments” text box and increase the “address” property at the very end of the line so that it uses a unique port value.

7. Save your changes, exit the administrative console, stop the server, and then run it in debug mode

+11
source

Source: https://habr.com/ru/post/1334188/


All Articles