Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 레이아웃쪼개기
- 커스텀
- const 단언문
- JS console
- react
- vue.js
- click and drag
- React.js
- 타입좁히기
- React Native
- Chart.js
- 2022
- returnType
- 제네릭
- javascript
- 공통컴포넌트
- 타입스크립트
- CSS
- 성능최적화
- 개발콘텐츠
- NonNullable
- typescript
- 폰트적용하기
- utilty type
- 티스토리꾸미기
- reactjs
- 반복줄이기
- TSDoc
- 누구나 자료구조와 알고리즘
- 리액트
Archives
- Today
- Total
몽땅뚝딱 개발자
[서버설정] /usr/bin/mysql_secure_installation 실행 시 ERROR 1698 (28000): Access denied for user 'root'@'localhost' 에러 발생 본문
에러일지/서버
[서버설정] /usr/bin/mysql_secure_installation 실행 시 ERROR 1698 (28000): Access denied for user 'root'@'localhost' 에러 발생
레오나르도 다빈츠 2021. 8. 21. 20:44
웹 서버를 구축하며 MariaDB 설정을 하면서 생긴 문제이다.
처음 설치했으면 엔터를 누르라고 적혀있어서 계속 눌렀지만 Access denied..
에러
ERROR 1698 (28000): Access denied for user 'root'@'localhost'
nm@nm:~$ /usr/bin/mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none):
ERROR 1698 (28000): Access denied for user 'root'@'localhost'
원인
정책을 변경해주니 됐다.
자세한 것은 여기서! 정말 감사합니다.
MySQL ERROR 1698 (28000): 에러 해결
예전 버전은 auth plugin 이 mysql_native_password 방식일 수 있으며 그럴 경우 아래 쿼리와 같이 mysql_native_password 로 설정하세요. 잘못 설정할 경우 root 로도 로그인이 불가능합니다.
www.lesstif.com
개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.
'에러일지 > 서버' 카테고리의 다른 글
Comments