Posted On April 1, 2019

LAMPP: Change Apache Listening Port

kimconnect 0 comments
blog.KimConnect.com >> Linux >> LAMPP: Change Apache Listening Port
Change Apache listening port:
vim /opt/lampp/etc/httpd.conf

Edit line:
Listen 80 (change to 8888)


OPEN port 8888:
vim /etc/sysconfig/iptables
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 8888 -j ACCEPT

Restart IPTABLES:
/sbin/service iptables

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Ubuntu: Adding and Remove Repositories (Repos)

The following is a blunder I've made while attempting to install Acrobat Reader on Ubuntu…

Network Time Service for Centos 7

yum install -y ntp ntpdatesystemctl start ntpdsystemctl enable ntpdntpdate -u -s 0.north-america.pool.ntp.org 1.north-america.pool.ntp.org 2.north-america.pool.ntp.org 3.north-america.pool.ntp.orgsystemctl…

How To Use NXLog On A Windows Client

Step 1: Setup Server - Install a log aggregation server is out of scope of…