mysql自动初始化脚本
Posted WL丶BoyGod
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql自动初始化脚本相关的知识,希望对你有一定的参考价值。
适用场景:mysql自动化安全设置
使用expect来编写
#!/usr/bin/expect
set timeout 3
set password 123456
spawn mysql_secure_installation
expect
"enter for none" send "\\r";exp_continue
"Y/n" send "Y\\r";exp_continue
"password:" send "$password\\r" ;exp_continue
"Cleaning up" send "\\r"
interact
以上是关于mysql自动初始化脚本的主要内容,如果未能解决你的问题,请参考以下文章