自动远程安装 mysql-server 和 postfix
我正在使用 Fabric 运行 Python 脚本,该脚本远程发送 bash 脚本并执行。 该脚本必须自动在多个远程服务器上运行(无需用户干预)。
但是当我安装这两个包时,命令行中的 GUI 界面提示有点复杂。这会导致 bash 脚本“挂起”,等待用户输入继续。
- mysql-server (提示用户输入 root 密码)
- postfix (提示某些配置设置)
是否有其他方法可以在命令行中不使用 GUI 界面提示来配置进程?
I am running a Python script with Fabric which sent a bash script over remotely and execute.
The script will have to run over multiple remote servers automatically (without user interference).
But when I am installing these 2 package, there is a small complication of GUI interface prompt in the command line. This cause the bash script to 'hang', awaiting for user input to continue.
- mysql-server (Prompting user for root password)
- postfix (Prompting for some configuration setting)
Is there an alternative to configure the process without the GUI interface prompt in the command line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 http://www.muhuk.com/2010 /05/how-to-install-mysql-with-fabric/ 它描述了安装 mysql-server 的解决方案,基本上你要做的是:
In http://www.muhuk.com/2010/05/how-to-install-mysql-with-fabric/ it's described a solution to the installation of mysql-server, basically what you have to do is: