如何在 Ubuntu 上安装 MySQL 而无需在安装过程中输入密码?
使用 sudo apt-get install mysql 安装 MySQL 会提示输入密码,这在非交互式场景或编写脚本安装时可能会很不方便。
要绕过密码提示,请使用以下脚本:
#!/bin/bash sudo debconf-set-selections << EOF mysql-server mysql-server/root_password password your_password mysql-server mysql-server/root_password_again password your_password EOF sudo apt-get -y install mysql-server
将 your_password 替换为您想要的密码。对于特定版本(例如 mysql-server-5.6),请指定版本,如下所示:
sudo debconf-set-selections << EOF mysql-server-5.6 mysql-server/root_password password your_password mysql-server-5.6 mysql-server/root_password_again password your_password EOF sudo apt-get -y install mysql-server-5.6
对于 mysql-community-server,请使用以下键:
sudo debconf-set-selections << EOF mysql-community-server mysql-community-server/root-pass password your_password mysql-community-server mysql-community-server/re-root-pass password your_password EOF sudo apt-get -y install mysql-community-server
您还可以使用 debconf-get-selections 来验证您的设置:
sudo debconf-get-selections | grep ^mysql
以上是如何在Ubuntu上不输入密码安装MySQL?的详细内容。更多信息请关注PHP中文网其他相关文章!