Link to home
Start Free TrialLog in
Avatar of AXISHK
AXISHK

asked on

Install PHP and mysql on Centos 7

After installing Centos7, any guideline on installing php, mysql and apache ?

I have already installed the following tasks but try to access the web http:\\myIPaddress but it doesn't work.
yum install php
yum install httpd

beside, is it enough to patch my Centos to the latest version by running the following :
yum check-update
yum upgrade
SOLUTION
Avatar of David Favor
David Favor
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of AXISHK
AXISHK

ASKER

The Apache should be listened on port 80. However, I can access it through IE in my workstation. I can ping and ssh to the server. There is nothing logged in access_log under /var/log/httpd.

[root@localhost ~]#  netstat -tulpn
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      1/systemd
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      12185/sshd
tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      1576/master
tcp6       0      0 :::111                  :::*                    LISTEN      1/systemd
tcp6       0      0 :::80                   :::*                    LISTEN      1290/httpd
tcp6       0      0 :::22                   :::*                    LISTEN      12185/sshd
tcp6       0      0 ::1:25                  :::*                    LISTEN      1576/master
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial