ERROR: transport error 202: bind failed: Address already in use
ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510)
JDWP exit error AGENT_ERROR_TRANSPORT_INIT(197): No transports initialized [../../../src/share/back/debugInit.c:750]
- Inside Domain Path for example /u01/app/fmw/domains/Base_domain/bin
- Edit setDomainEnv.sh and search for the below :-
if [ “${DEBUG_PORT}” = “” ] ; then
DEBUG_PORT=”8453″
export DEBUG_PORT
fi
if [ “${SERVER_NAME}” = “” ] ; then
SERVER_NAME=”AdminServer”
export SERVER_NAME
fi
- Add New Lines under the above to contain server name and available DEBUG_PORT on the server like the below:-
if [ “${SERVER_NAME}” = “soa_server1” ] ; then
DEBUG_PORT=”7453″
export DEBUG_PORT
fiif [ “${SERVER_NAME}” = “osb_server1” ] ; then
DEBUG_PORT=”7454″
export DEBUG_PORT
fi
Now Restart AdminServer and Try to start Managed Server, Take Backup from setDomainEvn.sh before editing.
Thank you
Osama mustafa