[컴][db] mysql 만 쳐서 접근이 되는 경우

 

mysql cli / 바로 접근 / mysql 만 실행하니 접근 되는 경우

mysql 만 쳐서 접근이 되는 경우

때론 mysql 로 db 서버에 접근만 쳐도 들어가는 경우가 있다. 이 경우는 mysql.user 에 현재 접속한 계정이 등록된 경우이다. 그런데 password 도 안쳐도 되는 경우라면 다음 2가지라고 한다.

  • account 에 password 가 등록되지 않은 경우
  • config file 에 password 가 포함된 경우
SELECT host, user, password FROM mysql.user; -- MySQL before 5.7
SELECT host, user, authentication_string FROM mysql.user; -- MySQL 5.7 +

Reference

  1. Mysql login without a specific user - Stack Overflow

댓글 없음:

댓글 쓰기