我可以使用Ubuntu 18.04在我以前的流浪箱上自动设置MariaDB 10.0根密码,在我的供应文件中有这个
export DEBIAN_FRONTEND=noninteractive
sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password password root'
sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password root'
sudo apt-get install -y mysql-server
但它在Ubuntu 20.04和MariaDB 10.3上不起作用。我尝试手动安装它进行测试,显然现在安装不会提示root用户输入默认密码。
有没有其他方法可以自动设置root密码,因为我只在开发环境中使用这个框?
我找到了一个简单的解决方案。显然,密码确实有效,但前提是MySQL控制台是从盒子本身访问的。我只需要通过MySQL控制台命令添加新的root用户。以下是我的供应文件现在的样子
export DEBIAN_FRONTEND=noninteractive
sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password password root'
sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password root'
sudo apt-get install -y mysql-server
mysql -u root -proot -e "GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY 'root' WITH GRANT OPTION;"
mysql -u root -proot -e "GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;"
mysql -u root -proot -e "FLUSH PRIVILEGES;"