By vonparty
Hi, I’ve followed this tutorial https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-with-lamp-on-ubuntu-18-04
I’ve narrowed down to user problem because I can connect with root (just to test) but none of the other others users work.
part 1: db
CREATE DATABASE nicedb DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; CREATE USER ‘mrnice’@‘localhost’ IDENTIFIED BY ‘nicepass’; GRANT ALL PRIVILEGES ON nicedb.* TO ‘mrnice’@‘localhost’; FLUSH PRIVILEGES;
part 2: wp_config
define(‘DB_NAME’, ‘nicedb’); /** MySQL database username / define(‘DB_USER’, ‘mrnice’); /* MySQL database password */ define(‘DB_PASSWORD’, ‘nicepass’);
the above result gets Error establishing a database connection
when I use mysqlshow -u mrnice -p, it works with my password. Only root@rootpass works and gets me to the next page to configure the rest. How do I correctly configure a user for my wordpress db?
This is on Unbuntu 19.04, mysql Ver 8.0.17-0ubuntu2 and latest stable wordpress release.
Thank you!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi the resolution came through some small modification of the sql commands:
CREATE USER ‘mrnice’@'localhost’ WITH mysql_native_password BY 'nicepass’; GRANT ALL ON nicedb.* TO 'mrnice’@'localhost’;
I am not sure if it was one or both of the commands.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.