In httpd.conf change the following lines and then restart the application:
Listen 80toListen 8080ServerName localhost:80toServerName localhost:8080
http://localhost:8080/phpmyadmin/
When you press “Start” the application can still say that you have an error like “Port 80 in use by “Unable to open process” with PID…” but it will still work.
If the error includes “Port 443 in use by “Unable to open process” with PID…” you need to change both httpd.conf and httpd-ssl.conf.
In httpd-ssl.conf change:
Listen 443toListen 4433<VirtualHost _default_:443>to<VirtualHost _default_:4433>ServerName www.example.com:443toServerName www.example.com:4433