首页  >  文章  >  数据库  >  如何在Ubuntu上不输入密码安装MySQL?

如何在Ubuntu上不输入密码安装MySQL?

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-11-19 22:47:02436浏览

How to Install MySQL on Ubuntu Without Entering a Password?

Ubuntu 上的无密码 MySQL 安装

问题:

如何在 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn