使用echo命令通过shell脚本自动化mysql_secure_installation

前端之家收集整理的这篇文章主要介绍了使用echo命令通过shell脚本自动化mysql_secure_installation前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图自动MysqL_secure_installation脚本与自动响应。我的代码如下:
echo "& y y abc abc y y y y" | ./usr/bin/MysqL_secure_installation

自动化的实际问题如下:

Enter current password for root (enter for none): <enter>
Set root password? [Y/n] y
New password: abc
Re-enter new password: abc
Remove anonymous users? [Y/n] y
Disallow root login remotely? [Y/n] y
Remove test database and access to it? [Y/n] y
Reload privilege tables now? [Y/n] y

但它给我一个错误“对不起,你不能在这里使用空密码”,但在屏幕上我用来按第一个问题的返回键。

你会尝试使用 expect
看看这个 automating mysql_secure_installation或我的 modification
原文链接:https://www.f2er.com/bash/389392.html

猜你在找的Bash相关文章