1. 서비스 정지
systemctl stop mariadb
2. 안전모드 실행
sudo /usr/bin/mysqld_safe –skip-grant &
3. 패스워드 변경
mysql -u root mysql
> update user set password=password(‘변경할 비밀번호’) where user=’root’;
> flush privileges;
> exit;
4. 패스워드 변경이 되었는지 테스트
mysql -u root -p
5. 서비스 시작
systemctl start mariadb
'tech > linux' 카테고리의 다른 글
21/07/14 CentOS 7 MariaDB utf8 한글 설정 (0) | 2021.07.14 |
---|---|
21/07/14 CentOS 7 MariaDB 외부 접속 가능하게 설정 하는 방법 (0) | 2021.07.14 |
21/07/14 Centos 7 MariaDB 설치 및 실행 명령 (0) | 2021.07.14 |
21/06/21 Kivy Course - Create Python Games and Mobile Apps (0) | 2021.06.21 |
21/06/21 Groomide - kivy helloworld app build 환경 설정 (0) | 2021.06.21 |