Wordpress install script. See readme for database commands.
Go to file
RomanNum3ral 8280d1756a Update test.sh 2025-05-29 21:07:58 +00:00
README.md Update README.md 2025-05-29 02:17:08 +00:00
README2.MD Update README2.MD 2025-05-29 01:10:14 +00:00
test.sh Update test.sh 2025-05-29 21:07:58 +00:00
updated_install1.sh Update updated_install1.sh 2025-05-29 20:19:15 +00:00
updated_install2.sh Update updated_install2.sh 2025-05-29 20:19:37 +00:00
wordpress_install_1.sh Update wordpress_install_1.sh 2023-08-31 14:02:22 -04:00
wordpress_install_2.sh Update wordpress_install_2.sh 2023-09-06 19:26:00 -04:00

README.md

ubuntu-wordpress

create database wordpress;

show databases;

create user "wordpress"@"%" identified by "password";

grant all privileges on wordpress.* to "wordpress"@"%";

exit