경로찾기
목록 열거 하기
처음 깔았을때 입력한 패스워드 입력
자세히 설명하자면
mysql -hlocalhost -uroot -p 라고 할수 있다.....hlocalhost는 자기 컴퓨터라는뜻
mysql 서버가 다른컴퓨터에 있다면,,다른주소에 있다면 그 주소를 쓰면 된다..
mysql -h주소 -P3306 -uroot -p에서 p3306는 3306포트라고 보면된다
welcome to MySOL이라고 적히면 된거다...
MySQL 비밀번호 변경
(1) MySQL 실행
$ mysql -u root -p
Enter password:
(2) 비밀번호 변경을 위해 mysql
데이터베이스 사용
mysql> 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
(3) 현재 암호 확인
mysql> select host, user, password from user;
mysql> select host, user, authentication_string from user;
(4) 비밀번호 변경
root
계정의 비밀번호를1234
로 변경
mysql> update user set password=password('1234') where user='root';
NOTE:
mysql> update user set password=password('1234') where user='root';
ERROR 1054 (42S22): Unknown column 'password' in 'field list'
위 오류가 발생했다면 user
테이블에 password
필드가 존재하지 않기 때문입니다.describe user
명령어를 사용하여 authentication_sting
필드가 존재하면 다음 명령어로 비밀번호를 변경하세요.
mysql> update user set authentication_string=password('1234') where user='root';
(5) 종료
변경사항을 적용하기 위해 아래 명령어를 실행한 후 종료하면 비밀번호 변경이 완료됩니다.
mysql> flush privileges;
mysql> quit
Bye
'코딩' 카테고리의 다른 글
데이터베이스 : 기본 사용법 (0) | 2018.11.29 |
---|---|
데이터베이스 codeanywhere 사용법 (0) | 2018.11.29 |
왜 기계를 c언어로 제어하는 이유 (1) | 2018.11.29 |
c언어 : 컴퓨터 명령어 코드(Instruction Codes) (0) | 2018.11.29 |
데이터베이스 (0) | 2018.11.28 |