https://gist.github.com/ankurk91/16a3d36b1afa3f9c91f02828adfedf6f
#!/bin/bash set -euo pipefail IFS=$'\n\t' # Ubuntu 16.04 Dev Server # Run like - bash install_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
Комментариев нет:
Отправить комментарий