Wildfly error: failed to start HTTP listener

I am new to Wildfly and I hope you guys can help me with this problem:

I follow this tutorial on how to install Wildfly 8, and when I try to complete step 4, I get the following errors:

Error1

Error2

I’ve been searching the Internet for a long time, and I can’t find the answer. I tried with JDK 7 and 8, no changes, I use administrator rights, I even tried to download Wildfly again and no changes. More experienced employees have seen this and have no idea what is happening. Can you help me? Thanks

+7
wildfly-8
source share
4 answers

In the tutorial that you connected to, Wildfly configured to use port 8080 by default. Most likely, you have another process or service working with an already using port 8080. Try to find out which process and stop it, or try setting Wildfly to use a different port.

+10
source

try restarting the machine or enabling IPV6 in the machine, this error will be resolved.

0
source

Those with the same problem should check who else uses port 9990 on your Windows system. TCPView is a good tool for finding out the guilt of a charge. One possible common reason in this case is the NVIDIA Network Service (NvNetworkService.exe).

If it is just to find it in the list of Windows services and stop / disable it. The service itself is responsible for checking for Nvidia driver updates, so anytime you want to return it, just turn it on manually.

0
source

In my case, I accidentally added an AJP socket binding when using the standalone jboss_cli utility:

[ standalone@localhost :9990 /] /subsystem=undertow/server=default-server/ajp-listener=ajp:add(socket-binding=ajp) 

This led to an "already in use" error, which prevents the launch of any application and signals a 503 error through the Apache web server.

I removed the binding:

 /subsystem=undertow/server=default-server/ajp-listener=ajp:remove 

And then everything worked fine.

0
source

All Articles