When installing Wordpress a couple of hours ago on my desktop, the installed tried to access port 80 but was rebuffed. The error msg said that I either didn't have permission (but I was doing an admin install) or some other process was using the port. I installed successfully to port 8080.
Subsequently, I decided I want a "multisite" functionality in Wordpress, but that apparently requires use of port 80. (Warning: this "port" stuff is 95% mystery to me!) So I researched the possibility of somehow getting access to port 80. Using the "sudo netstat -tulpn" command, I got this information about port 80:
(I've copied only the relevant command output.)
In the System Monitor screen I can find 7 Apache processes, one with process ID of 1125. It is a root process.
I also obtained this information, which I don't know enough to make sense of - or more importantly to USE:
Where do I do from here? Is there some way I can locate that server (I well may have more than one Apache installation - I no nothing about Apache), and change the port it uses, or am I thinking about this all wrong?
Any help would be much appreciated!
Subsequently, I decided I want a "multisite" functionality in Wordpress, but that apparently requires use of port 80. (Warning: this "port" stuff is 95% mystery to me!) So I researched the possibility of somehow getting access to port 80. Using the "sudo netstat -tulpn" command, I got this information about port 80:
Code:
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp6 0 0 :::80 :::* LISTEN 1125/apache2
In the System Monitor screen I can find 7 Apache processes, one with process ID of 1125. It is a root process.
I also obtained this information, which I don't know enough to make sense of - or more importantly to USE:
Code:
sudo ls -l /proc/1125/exe [sudo] password for tomc: lrwxrwxrwx 1 root root 0 Feb 1 08:03 /proc/1125/exe -> /usr/lib/apache2/mpm-prefork/apache2
Any help would be much appreciated!
Comment