반응형
[비밀번호 설정]
mysql -uroot
use mysql;
5.7 이하
update user set password=password('root1234') where user='root';
5.7 이후
update mysql.user set authentication_string = password('비밀번호')
where user='root'
flush privileges;
[외부 접근 허용]
grant all privileges on *.* to 'root'@'%' identified by 'root1234';
create user 'root'@'ip 또는 대역' identified by '비밀번호';
flush privileges;
반응형
'데이터베이스 이야기 > MySQL' 카테고리의 다른 글
[MySql] 5.7.x 비밀번호 변경 (0) | 2023.07.25 |
---|---|
[MySQL] 8.0 사고 기록 (0) | 2022.01.26 |
[MySQL] 커버링 인덱스 (0) | 2020.04.10 |
[MySQL] 차집합 (0) | 2020.04.10 |
[MySQL] 인덱스 생성 조건 (0) | 2020.04.10 |
댓글