>데이터 베이스 >MySQL 튜토리얼 >비밀번호 프롬프트 없이 Ubuntu에 MySQL을 어떻게 설치할 수 있습니까?

비밀번호 프롬프트 없이 Ubuntu에 MySQL을 어떻게 설치할 수 있습니까?

Linda Hamilton
Linda Hamilton원래의
2024-11-15 22:27:02665검색

How can I install MySQL on Ubuntu without a password prompt?

Ubuntu에 MySQL을 비대화식으로 설치

sudo apt-get install mysql을 사용하여 Ubuntu에 MySQL 서버를 설치하는 표준 방법 자동화된 스크립트를 작성할 때 불편할 수 있는 콘솔의 비밀번호

debconf-set-selections 사용

설치 중 비밀번호 프롬프트를 방지하려면 debconf-set-selections 명령을 사용하여 설치에 대한 비밀번호를 미리 구성할 수 있습니다. MySQL 루트 사용자입니다. 이를 위해서는 다음 단계가 필요합니다.

sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password password your_password'
sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password your_password'
sudo apt-get -y install mysql-server

이 스크립트에서 your_password를 원하는 루트 비밀번호로 바꾸세요. 참고: 루트 비밀번호를 비워두기 위해 your_password를 비워둘 수도 있습니다.

특정 MySQL 버전

특정 버전의 MySQL을 설치해야 하는 경우, MySQL 5.6과 같은 경우 debconf-set-selections 명령에서 버전을 다음과 같이 지정합니다. 다음은 다음과 같습니다.

sudo debconf-set-selections <<< 'mysql-server-5.6 mysql-server/root_password password your_password'
sudo debconf-set-selections <<< 'mysql-server-5.6 mysql-server/root_password_again password your_password'
sudo apt-get -y install mysql-server-5.6

MySQL 커뮤니티 서버

MySQL 커뮤니티 에디션의 경우 debconf-set-selections 키가 약간 다릅니다.

sudo debconf-set-selections <<< 'mysql-community-server mysql-community-server/root-pass password your_password'
sudo debconf-set-selections <<< 'mysql-community-server mysql-community-server/re-root-pass password your_password'
sudo apt-get -y install mysql-community-server

Bash가 아닌 곳의 여기 문자열 쉘

dash 또는 ash와 같은 일부 쉘은 here-string을 지원하지 않습니다. 이러한 경우에는 다음을 사용하십시오.

echo ... | sudo debconf-set-selections 

또는 다음을 사용하여 여러 줄 문자열을 작성하십시오.

cat <<< EOF | sudo debconf-set-selections
mysql-server mysql-server/root_password password your_password
mysql-server mysql-server/root_password_again password your_password
EOF

확인

구성된 내용을 확인하려면 루트 비밀번호를 사용하려면 debconf-get-selections 명령을 사용하세요:

$ sudo debconf-get-selections | grep ^mysql
mysql-server    mysql-server/root_password_again    password    your_password
mysql-server    mysql-server/root_password  password    your_password

위 내용은 비밀번호 프롬프트 없이 Ubuntu에 MySQL을 어떻게 설치할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.