Install LAMP (Apache2, MySQL, PHP, PHPMyAdmin) on Fedora 17

install:

yum install mysql mysql-server httpd php phpmyadmin

or:

yum groupinstall 'Web Server'

secure the installation

mysql_secure_installation

start the services

systemctl enable httpd.service
systemctl start httpd.service
systemctl enable mysqld.service
systemctl start mysqld.service

test the installation, open

http://localhost/

when write access to files is needed try

setenforce 0

Leave a Reply

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.