DB/Mysql
-
Mysql 설치 방법 및 외부접속DB/Mysql 2014. 4. 16. 02:20
Mysql 설치 방법 !- http://www.jopenbusiness.com/mediawiki/index.php/MySQL **Mysql 외부접속** mysql -u root show databases; -> 여기서 mysql 선택use mysql; ->비밀번호 변경update user set password=password('1234') where user='root'; ->user테이블 확인select host, user, password from user; ->권한설정 (grant : 권한을 주다 / reebok : 권한을 뺏다 / all privileges : 모든 권한)grant all privileges on *.* to 'root'@'%' identified by '1234'; ->재시작f..