Ubuntu 上的静默 MySQL 安装
Ubuntu 上通过 sudo apt-get install mysql 进行的典型 MySQL 服务器安装会提示输入密码。本文演示了使用脚本自动安装和密码分配的解决方案。
非交互式密码分配脚本
要以非交互式方式提供密码,可以使用以下命令创建脚本:
sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password password your_password' sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password your_password' sudo apt-get -y install mysql-server
只需将 your_password 替换为所需的 root 密码。请注意,将此字段留空可能会导致根密码为空。
基本 Shell 的替代方法
在某些不支持此处字符串的 shell 中,您可以使用以下语法:
echo ... | sudo debconf-set-selections
例如,以下命令可用于为 MySQL 服务器版本 5.6 分配密码:
echo 'mysql-server-5.6 mysql-server/root_password password your_password' | sudo debconf-set-selections echo 'mysql-server-5.6 mysql-server/root_password_again password your_password' | sudo debconf-set-selections sudo apt-get -y install mysql-server-5.6
验证
您可以使用以下方法验证设置选择:
sudo debconf-get-selections | grep ^mysql
这将输出用于分配 root 密码的键值对。
以上是如何在 Ubuntu 上自动执行静默 MySQL 安装并设置特定的 root 密码?的详细内容。更多信息请关注PHP中文网其他相关文章!