Skip to content

Instantly share code, notes, and snippets.

@riteshsingh1
Last active February 11, 2018 07:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save riteshsingh1/cc742435dc0c4b38b20a8b511c4ca0f5 to your computer and use it in GitHub Desktop.
Save riteshsingh1/cc742435dc0c4b38b20a8b511c4ca0f5 to your computer and use it in GitHub Desktop.
Ubuntu 16.04 - PHP development Environment Setup (php 7.1, MySQL 5.7, apache 2.4,composer,npm,yarn)
#!/bin/bash
# Ubuntu 16.04 PHP Dev Server Setup
# for executing type - bash lamp.sh
# Script should auto terminate on errors
echo -e "\e[96m Adding PPA \e[39m"
sudo add-apt-repository -y ppa:ondrej/apache2
sudo add-apt-repository -y ppa:ondrej/php
sudo apt-get update
echo -e "\e[96m Installing apache \e[39m"
sudo apt-get -y install apache2
echo -e "\e[96m Installing php \e[39m"
sudo apt-get -y install php7.1 libapache2-mod-php7.1
# Install some php exts
sudo apt-get -y install curl mcrypt php7.1-mysql php7.1-mcrypt php7.1-curl php7.1-json php7.1-mbstring php7.1-gd php7.1-intl php-gettext
#sudo apt-get -y install php-xdebug
sudo phpenmod mcrypt
sudo phpenmod curl
# Enable some apache modules
sudo a2enmod rewrite
#sudo a2enmod headers
echo -e "\e[96m Restart apache server to reflect changes \e[39m"
sudo service apache2 restart
echo -e "\e[96m Installing mysql server \e[39m"
echo -e "\e[93m User: root, Password: root \e[39m"
# Install MySQL Server in a Non-Interactive mode. Default root password will be "root"
echo "mysql-server-5.7 mysql-server/root_password password root" | sudo debconf-set-selections
echo "mysql-server-5.7 mysql-server/root_password_again password root" | sudo debconf-set-selections
sudo apt-get -y install mysql-server-5.7
### Run next command on production server
#sudo mysql_secure_installation
# Download and install composer
echo -e "\e[96m Installing composer \e[39m"
# Notice: Still using the good old way
curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
# Check php version
php -v
# Check apache version
apachectl -v
# Check mysql version
mysql --version
# Check if php is working or not
php -r 'echo "\nYour PHP installation is working fine.\n";'
# Fix composer folder permissions
#sudo chown -R $USER $HOME/.composer
# Check composer version
composer --version
echo -e "\e[92m Open http://localhost/ to check if apache is working or not. \e[39m"
# Clean up cache
sudo apt-get clean
# Warning!!! Don't add this PPA if you are running php v5.6
sudo add-apt-repository -y ppa:nijel/phpmyadmin
sudo apt-get update
echo -e "\e[93m User: root, Password: root \e[39m"
# Restart apache server
sudo service apache2 restart
#install node js
curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
sudo apt-get install -y nodejs
# install build essentials for npm
sudo apt-get install -y build-essential
#install yarn
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install yarn
echo -e "\e[92m Npm and yarn installed successfully \e[39m"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment