Setting up a root user in MySQL/MariaDB
CREATE USER ‘admin’@’%’ IDENTIFIED BY ‘mysecretpassword’; GRANT ALL PRIVILEGES ON *.* TO ‘admin’@’%’ WITH GRANT OPTION; FLUSH PRIVILEGES;
Continue reading »Golden nuggets where no entry is longer than my expected attention span
CREATE USER ‘admin’@’%’ IDENTIFIED BY ‘mysecretpassword’; GRANT ALL PRIVILEGES ON *.* TO ‘admin’@’%’ WITH GRANT OPTION; FLUSH PRIVILEGES;
Continue reading »MySQL/MariaDB Remember to change bind-address to 0.0.0.0. By default it is set to 127.0.0.1 and then you can’t connect remotely! Exactly which config file it […]
Continue reading »Has this happened to you? You run for a while on the default installation of MySQL. The data increases and suddenly you realize that the […]
Continue reading »