make_sock: could not bind to address 0.0.0.0:80
Tech-Today

make_sock: could not bind to address 0.0.0.0:80


I am developing a web application and is testing it on my localhost, when suddenly the page failed to load. No error, no message.

So I went to control panel -> Administrative Tools -> Event Viewer -> application and found 2 error entries related to Apache Service:

1.) The Apache service named reported the following error:
>>> no listening sockets available, shutting down

2.) The Apache service named reported the following error:
>>> (OS 10048)Only one usage of each socket address (protocol/network address/port) is normally permitted. : make_sock: could not bind to address 0.0.0.0:80.

Now, the only thing new to my setup is that, I am making a skype. I stopped the skype and it's ok. This is already an old problem of mine, wherein the skype is using the same port as my localhost which is port 80.

What to do: Change the default skype port. How?
1.) Goto Tools -> Options
2.) Click Advanced -> Connection
3.) Uncheck "Use port 80 and 443 as alternatives for incoming connections."
4.) In the "Use Port" textbox, enter a port which is unuse by your system, example port 88.

And that solved my problem.




- How To Create A Wildfly Cluster
The following steps will help us configure a Wildfly cluster. *Note that I'm using Wildfly 11 *It took me some time to figure it out so I'm writing it here for reference. I'm using the standard-full-ha.xml profileIn the program arguments add  -b...

- How To Setup Stomp In Jboss As 7 And Create A Java Client Call
This tutorial will teach us how we can enable stomp in JBoss 7.1.3 and create a sample java client call.  What you need: 1.) JBoss AS7.1.3 2.) standalone-full.xml - this is where we will copy the settings  Setup JBoss AS 7 1.) 1.) Add extension:...

- Changing Jboss Server's Default Http Port
If you have installed jboss server in: C:\jboss-5.1.0\ then here's what you should do to change the default port (8080) to any port of your choice. 1.) Open the file, C:\jboss-5.1.0\server\default\conf\bindingservice.beans\META-INF\bindings-jboss-beans.xml...

- Send Email Using Codeigniter In 1and1 Server
I get a timeout at first try. Using the default mail type from codeigniter will not, to use the built in email feature from codeigniter we have to change protocol into smtp: Like this: $config['mailtype'] = 'html'; $config['protocol']...

- How To Allow Remote Connection In Mssql Server, And Allowing Sql Server Authentication In The Registry
Problem: If the MSSql Server is not properly configured it usually gives named pipes error like "error 1326" and so on. There are 3 simple things that we have to set to allow remote connection on an mssql server: 1.) Make sure that the server itself accepts...



Tech-Today








.