[Mysql] 외부 접속 허용

AWS 방화벽 설정

1) 인스턴스에 적용된 보안그룹 수정

- 사용자 지정 인바운드 룰 적용 : Custom TCP > 3306 Port > 위치무관(Anywhere)

보안 그룹 수정

 

2. ubuntu 외부접속 허용 설정

- 터미널 접속, 리눅스 명령어로 수행

- cd /etc/mysql/mysql.conf.d

- vi mysqld.cnf

- bind-address 값을 0.0.0.0 으로 수정

- wq로 저장후 vi 종료

 

bind-address, 0.0.0.0으로 수정

 

- service mysql restart

- mysql -u root -p

루트계정으로 외부에서 접속할 수 있도록 허용

- grant all privileges on *.* to root@'%' identified by '루트계정 비밀번호';

* 혹은 외부 접속 계정 생성

create user 'user1'@'%' identified by '비밀번호';

grant all privileges on *.* to 'user1'@'%' with grant option;

 

 

[mysql workbench로 접속]

HostName에 AWS Public ipv4입력, aws의 mysql 비밀번호로 접속

 

참고

http://blog.naver.com/PostView.nhn?blogId=software705&logNo=221337666338&parentCategoryNo=&categoryNo=8&viewDate=&isShowPopularPosts=true&from=search

 

[AWS Mysql] AWS ec2 Mysql 서버구축및 외부접속하기

[ AWS ec2 Mysql 외부접속] ec2 인스턴스에 mysql 서버를 설치하여 외부에서 접속하는 과정에 순서는 ...

blog.naver.com

https://babytiger.tistory.com/entry/mysql%EC%97%90-%EB%A1%9C%EA%B7%B8%EC%9D%B8%EC%9D%B4-%EC%95%88-%EB%90%A0-%EA%B2%BD%EC%9A%B0

 

mysql에 로그인이 안 될 경우

1. ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) mysql -u 사용자 >> mysql -u 사용자 -p 비번 or mysql -u 사용자 -p 후에 비번 입력 2. ERROR 1045 (28000): Access de..

babytiger.tistory.com

https://blog.naver.com/software705/221752721435

 

[mysql 5.7 이상] ubuntu mysql root password 변경

[ mysql 5.7이상인 경우 root password 변경 ] ubuntu 에 mysql 설치 후 초기에 1sudo mysql -u root -pcs ...

blog.naver.com

http://blog.naver.com/PostView.nhn?blogId=software705&logNo=221337666338&parentCategoryNo=&categoryNo=8&viewDate=&isShowPopularPosts=true&from=search

 

[AWS Mysql] AWS ec2 Mysql 서버구축및 외부접속하기

[ AWS ec2 Mysql 외부접속] ec2 인스턴스에 mysql 서버를 설치하여 외부에서 접속하는 과정에 순서는 ...

blog.naver.com

https://algo79.tistory.com/entry/MySQL-%EC%97%90%EB%9F%AC

 

MySQL 에러

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) Can't connect to local MySQL server through..

algo79.tistory.com

https://freestrokes.tistory.com/41?category=708144

 

Ubuntu MySQL 설치하기

Ubuntu MySQL 설치하기 Ubuntu 16.04 Desktop 버전에서 MySQL을 설치하는 방법입니다. 먼저 설치 가능한 버전을 확인해줍니다. $ sudo apt-cache search mysql-server 확인후 MySQL 5.7 버전을 설치해보도록 하겠..

freestrokes.tistory.com

 

댓글

Designed by JB FACTORY