在Ubuntu上安装MySQL而没有密码提示 [英] Install MySQL on Ubuntu without a password prompt

查看:113
本文介绍了在Ubuntu上安装MySQL而没有密码提示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何编写脚本在Ubuntu上安装MySQL服务器?

How do I write a script to install MySQL server on Ubuntu?

sudo apt-get install mysql将安装,但还会要求在控制台中输入密码.

sudo apt-get install mysql will install, but it will also ask for a password to be entered in the console.

我该如何以非交互方式执行此操作?也就是说,写一个可以提供密码的脚本吗?

How do I do this in a non-interactive way? That is, write a script that can provide the password?

#!/bin/bash
sudo apt-get install mysql  # To install MySQL server

# How to write script for assigning password to MySQL root user
# End

推荐答案

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

对于特定版本,例如mysql-server-5.6,您需要这样指定版本:

For specific versions, such as mysql-server-5.6, you'll need to specify the version in like this:

sudo debconf-set-selections <<< 'mysql-server-5.6 mysql-server/root_password password your_password'
sudo debconf-set-selections <<< 'mysql-server-5.6 mysql-server/root_password_again password your_password'
sudo apt-get -y install mysql-server-5.6

对于mysql-community-server,密钥略有不同:

For mysql-community-server, the keys are slightly different:

sudo debconf-set-selections <<< 'mysql-community-server mysql-community-server/root-pass password your_password'
sudo debconf-set-selections <<< 'mysql-community-server mysql-community-server/re-root-pass password your_password'
sudo apt-get -y install mysql-community-server

将your_password替换为所需的root密码. (似乎your_password也可以留空以获取空白的root密码.)

Replace your_password with the desired root password. (it seems your_password can also be left blank for a blank root password.)

如果您的外壳不支持 here-strings ( zsh ksh93 bash 支持它们) ,使用:

If your shell doesn't support here-strings (zsh, ksh93 and bash support them), use:

echo ... | sudo debconf-set-selections 

这篇关于在Ubuntu上安装MySQL而没有密码提示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆