Skip to content

Instantly share code, notes, and snippets.

@linuxkeepup
Last active November 13, 2022 06:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxkeepup/cabaa891efa0a5df54e4913dcf5e6c73 to your computer and use it in GitHub Desktop.
Save linuxkeepup/cabaa891efa0a5df54e4913dcf5e6c73 to your computer and use it in GitHub Desktop.
Laravel Installation wIth LEMP stack on Ubuntu
Please send me your query for LEMP Stack support service
WhatsApp: http://tiny.cc/linuxkeepup
sudo -i
apt update -y && apt upgrade -y
apt update -y
apt install build-essential checkinstall
apt install ubuntu-restricted-extras
apt install software-properties-common
apt upgrade -o APT::Get::Show-Upgraded=true
apt install apt-show-versions
apt update -y && apt-get upgrade -y
apt install build-essential checkinstall
apt install ubuntu-restricted-extras
apt update -y && apt upgrade -y
add-apt-repository ppa:git-core/ppa
apt update -y && apt upgrade -y
mysql
create database laravel;
CREATE USER 'laraveldmin'@'localhost' IDENTIFIED BY 'L@Ravel786';
GRANT ALL PRIVILEGES ON *.* TO 'laraveldmin'@'localhost';
use laravel;
FLUSH PRIVILEGES;
exit
sudo systemctl restart mysql.service
sudo nginx -t
sudo systemctl reload nginx
@linuxkeepup
Copy link
Author

Screenshot from 2022-10-31 19-17-13

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment