Created
April 16, 2016 16:08
-
-
Save VadimBrodsky/4be6c3bffb04dafaccaaf4da0d549469 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# update | |
sudo apt-get update | |
# install apache | |
sudo apt-get install -y apache2 | |
# install mysql and php-mysql | |
sudo apt-get install mysql-server php5-mysql | |
# install mysql and init | |
sudo mysql_install_db | |
sudo mysql_secure_installation | |
# install php5 | |
sudo apt-get install -y php5 libapache2-mod-php5 php5-mcrypt | |
# install php extensiosn | |
sudo apt-get install php5-gd php5-imagick php5-mcrypt php5-json php5-curl | |
# make apache read php files | |
sudo vim /etc/apache2/mods-enabled/dir.conf | |
# Add index.php to the list | |
# <IfModule mod_dir.c> | |
# DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm | |
# </IfModule> | |
# restart apache | |
sudo service apache2 restart | |
# add php test file | |
sudo vim /var/www/html/info.php | |
# <?php | |
# phpinfo(); | |
# ?> | |
# access php test page http://10.0.9.29/info.php | |
# install phpmyadmin | |
sudo apt-get install -y phpmyadmin apache2-utils | |
# Add phpmyadmin configuration to apache | |
sudo vim /etc/apache2/apach2.conf | |
# Include /etc/phpmyadmin/apache.conf | |
# restart apache | |
sudo service apache2 restart | |
# access phpmyadmin from http://10.0.9.29/phpmyadmin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment