Encounter

Apache Server (XAMPP) doesn’t run on Windows 10 (Port 80)

Posted by on Aug 17, 2015 in Encounter | 0 comments

Apache Server (XAMPP) doesn’t run on Windows 10 (Port 80)

Open up services.msc and locate the service “World Wide Web Publishing Service”, stop the service or process and you can set it to Manual or Disable. Another solution is to shutodwn the service via an admin console with command sc stop W3SVC Service Name: W3SVC Display Name: World Wide Web Publishing Service Description: Provides Web connectivity and administration through the Internet Information Services Manager Path: C:\WINDOWS\system32\svchost.exe -k iissvcs

Read More

Install Apache, PHP And MySQL On CentOS 7 (LAMP)

Posted by on Jul 28, 2015 in Encounter | 0 comments

Install Apache, PHP And MySQL On CentOS 7 (LAMP)

I use the hostname lab with the IP address 192.168.10.34. These settings might differ for you, so you have to replace them where appropriate. I add EPEL-7 repo here to install latest phpMyAdmin as follows: rpm -ivh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm Installing MySQL 5 To install MySQL, we do install mariadb like this: yum -y install mariadb-server mariadb Then we create the system startup links for MySQL (so that MySQL starts automatically whenever the system boots) and start the MySQL server: ystemctl start mariadb.service systemctl enable...

Read More