通过 Aptitude 安装时,如何以非交互方式指定 MySQL 根密码?

通过 Aptitude 安装时,如何以非交互方式指定 MySQL 根密码?

aptitude install mysql-server同时弹出一个提示,要求我设置 root 密码。我想通过在初始命令中指定密码来避免这种情况。我该怎么做?

答案1

看一下debconf-set-selections手册页 - 它应该能够满足您的要求。

您应该能够进入已经安装了 MySQL 的机器,然后执行以下操作:-

debconf-get-selections | grep "^mysql-server" >mysql-server-sel.txt

然后将其复制到目标框并运行:-

debconf-set-selections mysql-server-sel.txt
apt-get install mysql-server

相关内容