首頁  >  文章  >  資料庫  >  如何在Ubuntu上不輸入密碼安裝MySQL?

如何在Ubuntu上不輸入密碼安裝MySQL?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-11-19 22:47:02434瀏覽

How to Install MySQL on Ubuntu Without Entering a Password?

Ubuntu 上的無密碼 MySQL 安裝

問題:

如何在 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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn