#!/bin/bash #Item2 LAMP echo "start install LAMP" sudo apt-get install tasksel -y sudo DEBIAN_FRONTEND=noninteractive tasksel install lamp-server echo "install phpmyadmin" cd /tmp/;pwd;sudo wget https://files.phpmyadmin.net/phpMyAdmin/5.1.0/phpMyAdmin-5.1.0-all-languages.tar.gz -q;tar -zxvf phpMyAdmin-5.1.0-all-languages.tar.gz;sudo rm phpMyAdmin-5.1.0-all-languages.tar.gz;sudo mv phpMyAdmin-5.1.0-all-languages /var/www/html/phpmyadmin cd /var/www/html/phpmyadmin;pwd;mkdir tmp; cd;pwd; echo "install phpmyadmin done" sudo apt-get install openssl -y sudo apt-get install php-common -y sudo apt-get install php-curl -y sudo apt-get install php-json -y sudo apt-get install php-mbstring -y sudo apt-get install php-mysql -y sudo apt-get install php-xml -y sudo apt-get install php-zip -y #php version sudo apt-get install php7.2-mbstring -y sudo apt-get install php7.2-xml -y sudo apt-get install php7.2-mysql -y sudo apt-get install php7.2-common -y sudo apt-get install php7.2-curl -y sudo apt-get install php7.2-json -y sudo apt-get install php7.2-zip -y echo "open apache2 " sudo service apache2 start echo "setting mysql pass" sudo mysql -u root -e "ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'Gold@53743001';" echo "setting mysql done"