Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Created 08-27-2021 11:47 AM
The log clearly shows that the Address is already in use
Caused by: java.net.BindException: Port in use: 0.0.0.0:8042
Caused by: java.net.BindException: Address already in use
Can you proceed by locating the pid
# lsof -i -P -n | grep LISTEN | grep 8042Example
# lsof -i:8042COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
java 9322 yarn 475u IPv4 294790 0t0 TCP *:fs-agent (LISTEN
Kill using the PID
$ kill -9 9322Restart the service
Please revert