MariaDB 설치 후 'mysql u root' 명령어를 치면 다음과 같은 오류가 발생하는 경우가 있습니다. Access denied for user 'root'@'localhost' 다음과 같은 절차를 진행하면 이 문제를 해결할 수 있습니다. [MariaDB] Mysql "Access denied for user 'root'@'localhost'" 오류 해결하는 방법 /etc/my.cnf 파일을 연 후 [mysqld] 아래에 skip-grant-tables를 추가한다. 'systemctl restart mariadb' 명령어를 실행하여 Mariadb를 재시작한다. 'mysql -u root -p' 명령을 통해 MariaDB에 접속한다. 'flush privileges;' 명령을 수행한다. 다음 명령어..