(98)Address already in use: make_sock: could not bind to address 0.0.0.0:443
Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
so apache is trying to bind port 443 and that port is already in use.
do a "sudo lsof | grep TCP" and see which application is keeping that port open. It can be a torrent program, skype, or a number of applications which work over http
GUYS... i got the best ide of solving it.. its maybe skype.. download "Wamp" and go to (RightClick On Wamp Icon Down>Apache>Servise>Test Port 80) it will tell u if its used or not.. try my way.. it may help and if did help. subscribe to me if you want by going to Youtube.com/FinshFlash ^^ GoodLuck
In my case, I had thoughtlessly installed the 'nginx' server on my Ubuntu system -- which then grabbed the 127.0.0.1:80 port from apache2.
When I changed /etc/apache2/ports.conf values of NameVirtualHost *:80
Listen 80
to
NameVirtualHost *:8080
Listen 8080
and got apache2 started, both servers were then up: nginx at 127.0.0.1:80 and apache2 at 127.0.0.1:8080
So I simply uninstalled nginx (also nginx-full and nginx-common) -- and set /etc/apache2/ports.conf port values back to default. Apache is now at 127.0.0.1:80. Knock on wood.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.