Update InstallationFedora16Apache.markdown

This commit is contained in:
Jaisen Mathai 2014-09-24 17:02:20 -07:00
parent c9437019c1
commit 12c4141a0e

View file

@ -31,6 +31,18 @@ Once you've confirmed that your cloud account is set up, you can get started on
echo "extension=apc.so" > /etc/php.d/apc.ini
pecl install oauth
echo "extension=oauth.so" > /etc/php.d/oauth.ini
# start apache
/etc/init.d/httpd start
# make sure it starts on boot
chkconfig --add httpd
If you're going to be using MySql you need to install it.
yum install mysql-server
# start mysql
/etc/init.d/httpd start
# make sure it starts on boot
chkconfig --add mysqld
----------------------------------------