myql#외부접속

    mac spring mysql DB 연결 서버로 쓰기

    mac spring mysql DB 연결 서버로 쓰기

    url: jdbc:mysql://localhost:3306/ 으로 접속하다가 이제는 jdbc:mysql://xxx.xxx.x.x:3306/mysql로 접속하고 싶다. https://developer-joe.tistory.com/166 참고했는데 흠.. https://freeprog.tistory.com/167 이게 도움이 많이 됐다. (맥 mysql 외부 ip 접속) 1. 맥북에서 설정 1) 새로운 유저를 만든다. create user 'gamer'@'%' identified by '비밀번호'; 새로 만들어줬다. mysql> select host, user from user; +-----------+------------------+ | host | user | +-----------+----------..