1 Star 1 Fork 2

孤花暗香/zabbix_onkey

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
auto_mysql.sh 618 Bytes
一键复制 编辑 原始数据 按行查看 历史
孤花暗香 提交于 2021-08-17 16:36 . MYSQL自动初始化
#!/usr/bin/expect
set passwd [lindex $argv 0]
spawn mysql_secure_installation
expect {
"Enter current password" { send "\r"; exp_continue }
"Y/n" { send "Y\r"; exp_continue }
"New password" { send "$passwd\r"; exp_continue }
"Re-enter new password" { send "$passwd\r"; exp_continue }
"Remove anonymous users" { send "Y\r"; exp_continue }
"Disallow root login remotely" { send "Y\r"; exp_continue }
"Remove test database and access to it" { send "Y\r"; exp_continue }
"Reload privilege tables now" { send "Y\r" }
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/mybbsky_admin_admin/zabbix_onkey.git
git@gitee.com:mybbsky_admin_admin/zabbix_onkey.git
mybbsky_admin_admin
zabbix_onkey
zabbix_onkey
master

搜索帮助