I’m trying to port my project to the mac from a pc.
When executing
server = new ServerSocket(80);
A exception gets thrown saying Permission denied. I’m login as a admin.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
On every major OS other than Windows, you can’t bind to port 80 unless you’re root. Not just an admin user — root.
On the Mac, port 80 may also already be in use by the built-in web server (Apache) if that’s enabled.