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
- Data and Time Functions
- Oracle
- 오라클
- 티베로
- 전자정부 표준프레임워크
- Sring Functions and Operators
- SVN
- Tibero
- Date and Time Functions
- String Functions and Operators
- HTTP
- Date and Time Function
- 전자정부표준프레임워크
- 윈도우
- 방화벽
- MySQL
- String Function and Operators
- String Functions and Date Operators
Archives
- Today
- Total
웹이야기
7. MySQL root 패스워드 변경 본문
mysql을 설치하고 나면 root 패스워드를 변경해줘야 한다.
1) --initialize-insecure 를 이용해서 데이타 디렉토리를 초기화 했다면 root 패스워드는 설정되어 있지 않다.
[Warning] [MY-010453] [Server] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option.
2) --initialize 를 이용해서 데이타 디렉토리를 초기화 했다면 root 패스워드는 데이타 디렉토리를 초기화 할 때
아래와 같이 출력이 되었을 것이다.
[Warning] A temporary password is generated for root@localhost: iTag*AfrH5ej
3) root password 변경
#cd /usr/local/mysql/bin
#./mysql -uroot -p
Enter password:
mysql > alter user 'root'@'localhost' identified by 'password' ;
다시 로그인해보면 변경된 패스워드로 로그인 할 수 있다.
https://dev.mysql.com/doc/refman/8.0/en/data-directory-initialization.html
'D > MySQL' 카테고리의 다른 글
9. MySQL DATABASE (0) | 2020.01.11 |
---|---|
8. Installing MySQL on Linux Using the MySQL Yum Repository (0) | 2020.01.11 |
6. MySQL 설치(소스 컴파일, 5.7, 8.x 버전) (0) | 2020.01.09 |
5. MySQL 설치(리눅스) - 소스 컴파일 (1) | 2020.01.08 |
4. MySQL 설치(리눅스) - yum 으로 설치 (0) | 2020.01.08 |
Comments