-
데비안(Debian)에 MySQL 설치하기Web 2020. 7. 4. 11:51
어쩌다가 Debian 에서도 MySQL을 설치해볼 일이 있었는데 Ubuntu에 설치하는 것과 미묘하게 다른 점이 있어서 적어본다.
우선
sudo apt update
를 입력해서 패키지들을 업데이트 한다.
다음에 바로 'sudo apt install mysql-server'를 입력하면 아래와 같은 에러가 뜬다.Reading package lists... Done
Building dependency tree
Reading state information... Done
Package mysql-server is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'mysql-server' has no installation candidate
이를 해결하기 위해서 아래의 단계들을 거쳤다.wget http://repo.mysql.com/mysql-apt-config_0.8.13-1_all.deb
여기서 또 만약에 wget이 깔려있지 않다면
bash: wget: command not found
이런 에러가 뜰 것이다.
그럴 경우 간단하게
sudo apt install wget
이 명령어를 사용하여 설치했다.
이제 아래 명령어들을 실행해보면 된다.
sudo dpkg -i mysql-apt-config_0.8.13-1_all.deb
sudo apt update
sudo apt install mysql-server위와 같은 설치화면이 뜨는데 해당되는 사항들을 선택하면 된다.
이제 다시 MySQL을 시작하고 보안설정(비밀번호 설정, 레벨)을 하면된다.sudo systemctl restart mysql
sudo mysql_secure_installation
mysql -u root -p
를 입력하고 방금 설정한 비밀번호를 입력해보면 MySQL shell에 접속이 가능할 것이다.
참고
https://tecadmin.net/install-mysql-server-on-debian9-stretch/
'Web' 카테고리의 다른 글
Let's Encrypt를 사용하여 HTTPS 설정하기 (1) 2020.08.09 Google Cloud Platform(GCP)로 간단하게 서버 생성하기 (0) 2020.07.06 Ubuntu(우분투)에 MySQL 설치하기 (0) 2020.07.03