Instalação NGINX + Wordpress Ubuntu 22.04

De Gigafull
Revisão de 19h27min de 4 de abril de 2023 por Admin (discussão | contribs) (Criou página com 'Ubuntu Server 22.04 sudo apt update -y sudo apt upgrade -y sudo apt install nginx -y sudo systemctl status nginx sudo apt install mysql-server -y sudo systemctl status mysq...')
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)
Ir para navegação Ir para pesquisar

Ubuntu Server 22.04

sudo apt update -y sudo apt upgrade -y

sudo apt install nginx -y sudo systemctl status nginx

sudo apt install mysql-server -y sudo systemctl status mysql

mysql -u root -p CREATE DATABASE WordPress CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; CREATE USER 'WordPressUser'@'localhost' IDENTIFIED BY 'UYBR438DE98I3MD43M430IDV34'; GRANT ALL PRIVILEGES ON WordPress .* TO 'WordPressUser'@'localhost'; FLUSH PRIVILEGES; EXIT;