Skip to content

Instantly share code, notes, and snippets.

@LinuxFintech
Created February 6, 2021 11:03
Show Gist options
  • Save LinuxFintech/ecd5941621720a4dac76d55f052a1d1d to your computer and use it in GitHub Desktop.
Save LinuxFintech/ecd5941621720a4dac76d55f052a1d1d to your computer and use it in GitHub Desktop.
Install Drupal on Ubuntu
If you need vTiger CRM Setup contact me:
Email: [email protected]
Telegram:LinuxFintech
Skype: https://join.skype.com/Xgxp7aNBOItS
Imo: +8801735917013
WhatsApp: +8801735917013
#!/bin/sh
apt updatectrl+s and sctr+x
service apache2 start
service apache2 restart
service apache2 reload
apt install curl
apt upgrade
apt install apache2
ufw allow in "Apache Full"
apache2 -v
service apache2 restartapt install mysql-server
mysql_secure_installation
mysql --version
service mysql restart
service mysql statusadd-apt-repository ppa:ondrej/php
apt install php7.3-fpm php7.3-common php7.3-mbstring php7.3-xmlrpc php7.3-soap php7.3-gd php7.3-xml php7.3-intl php7.3-mysql php7.3-cli php7.3-zip php7.3-curl
apt install php-fdomdocument php-gd
rm -fr /var/www/html
tar xf /tmp/drupal.tar.gz -C /var/www/
mv /var/www/drupal-8.4.5/ /var/www/html
Enjoy Drupal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment