如何在 Ubuntu 上安裝 MySQL 而無需在安裝過程中輸入密碼?
使用 sudo apt-get install mysql 安裝 MySQL提示輸入密碼,這在非互動式場景或編寫安裝腳本時可能會很不方便。
要繞過密碼提示,請使用以下腳本:
#!/bin/bash sudo debconf-set-selections << EOF mysql-server mysql-server/root_password password your_password mysql-server mysql-server/root_password_again password your_password EOF sudo apt-get -y install mysql-server
將 your_password 替換為您想要的密碼。對於特定版本(例如mysql-server-5.6),請指定版本,如下所示:
sudo debconf-set-selections << EOF mysql-server-5.6 mysql-server/root_password password your_password mysql-server-5.6 mysql-server/root_password_again password your_password EOF sudo apt-get -y install mysql-server-5.6
對於mysql-community-server,請使用以下鍵:
sudo debconf-set-selections << EOF mysql-community-server mysql-community-server/root-pass password your_password mysql-community-server mysql-community-server/re-root-pass password your_password EOF sudo apt-get -y install mysql-community-server
您也可以使用debconf-get-selections 來驗證您的設定:
sudo debconf-get-selections | grep ^mysql
以上是如何在Ubuntu上不輸入密碼安裝MySQL?的詳細內容。更多資訊請關注PHP中文網其他相關文章!