티스토리 뷰
반응형
우분투나 라즈베리파이에 MySQL이 쓸 일이 있어 mysql 명령어를 실행했다.
ubuntu@test:~$ mysql -u root -p
보통 위와 같이 실행한다.
그리고 root 비밀번호를 입력했으나 access denied가 뜬다.
ubuntu@test:~$ mysql -u root -p
Enter password:
ERROR 1698 (28000): Access denied for user 'root'@'localhost'
대부분 update user 명령어를 사용해서 해결 가능하다고 했으나 해결이 안되어 방법을 찾아보니...
MariaDB [(none)]> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
MariaDB [mysql]> update user set password=password('testpassword') where user='root';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
MariaDB [mysql]> grant all on *.* to 'root'@'localhost' identified by 'testpassword' with grant option;
Query OK, 0 rows affected (0.00 sec)
MariaDB [mysql]> flush privileges;
Query OK, 0 rows affected (0.00 sec)
MariaDB [mysql]> commit;
Query OK, 0 rows affected (0.00 sec)
grant all 명령어를 빼먹고 commit 도 안하는분들이 많다... 위와 같이 입력하면 입력한 비밀번호로 root의 비밀번호가 변경된다.
그러면 sudo 를 입력하지 않고 mysql -u root -p 명령어로도 로그인이 가능하다.
끄-읏
반응형
'Linux > Raspberry Pi' 카테고리의 다른 글
[fluidd pi] GPIO Control, PSU Control 버튼 만들기 (0) | 2022.09.16 |
---|---|
[Raspberry Pi] 프로그램 자동실행 서비스 등록하기 (2) | 2021.09.16 |
[Raspberry Pi] octoprint 설치방법 (수동설치) (0) | 2019.01.23 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 오픈소스 하드웨어
- fusion360
- 자작
- esp32
- 리눅스
- 코딩테스트
- 3D Printer
- 3d프린터
- 퓨전360
- SQLITE3
- Fusion 360
- 라즈베리파이
- 해커랭크
- Hypercube
- 아두이노
- DIY
- 3D
- 쏘카
- IOT
- ESP
- Arduino
- 3D 프린터
- C++
- C언어
- 설계
- ESP-IDF
- 프로젝트
- 오픈소스
- 프린터
- 하드웨어
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함