Hi, Can some one tell me what's wrong in this, http://pastebin.com/8T25zLsH i am getting the error, [root@localhost ~]# service httpd start Starting httpd: (13)Permission denied: make_sock: could not bind to address [::]:843 (13)Permission denied: make_sock: could not bind to address 0.0.0.0:843 no listening sockets available, shutting down Unable to open logs [FAILED] Thanks
the error you are getting is telling you that port 843 is unavailable for httpd to bind to. Have you run a netstat -o (I like to add "n" to the end of the param list for readability) to verify that port 843 is indeed open?
Is 843 opened in the firewall? If not, you need to open it. Also try changing the Apache secure port to 443 instead of 843 in the Apache configuration and restart the httpd service. Make sure you kill all the httpd(s) connections before starting httpd service. You can list all the running processes using the 'lsof' command.