Update InstallationFedora16Apache.markdown

This commit is contained in:
Jaisen Mathai 2014-09-25 13:54:56 -07:00
parent 05f7499371
commit a9185b1e84

View file

@ -40,10 +40,24 @@ If you're going to be using MySql you need to install it.
yum install mysql-server yum install mysql-server
# start mysql # start mysql
/etc/init.d/httpd start /etc/init.d/mysqld start
# make sure it starts on boot # make sure it starts on boot
chkconfig --add mysqld chkconfig --add mysqld
You may have to manually add the PHP mcrypt library if `php-mcrypt` isn't installed.
# run this to see if mcrypt is enabled
php -i | grep 'mcrypt support => enabled'
# if you don't see mcrypt you can do the following
#
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
sudo rpm -Uvh epel-release-6-8.rpm
yum install php-mcrypt
# restart apache
/etc/init.d/httpd restart
---------------------------------------- ----------------------------------------
### Installing OpenPhoto ### Installing OpenPhoto