반응형
http://jongwons.wordpress.com/2011/09/01/centos-%EC%97%90-mysql-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0/
http://spongebody.egloos.com/3530932
1. VMWare Player 로 서로 ip 통신
-> VMWare Player 와 host 인 window 에서
ifconfig / ipconfig 로 확인하면 된다.
2. mysql 이 설치되어 있는지 확인.
yum install mysql-client mysql-server
-> yum install mysql mysql-server
> 아직 mysql 이 실행되지 않았다.
/etc/rc.d/init.d
mysqladmin -u root -p password 'pass1'
mysql -uroot -p pass1 -> 실패
/etc/init.d/mysqld restart -> 실패 ( use user / select host,user,password from user 로 root 계정권한을 확인해 보면 된다.
mysql
use mysql;
update user set password=password('pass1') where user='root';
select host,user,password from user
flush privileges;
재접속 /
성공
입력시작시간:
모바일 스크립트 :
반응형
'프로그램 > mysql' 카테고리의 다른 글
You can't specify target table 테이블이름 for update in FROM clause (0) | 2017.11.17 |
---|---|
Mysql 에서, 한 번의 query 로 실행할 수 있는 query 문장의 길이는 얼마까지? (0) | 2014.08.10 |
mysql 에서 새 계정을 추가했는데, 접속이 안 될 때. (0) | 2014.02.17 |
mysql port 번호 바꾸기 Cafe24버전. (2) | 2013.09.13 |
Linux 에서 C 컴파일용 mysql library + header file 구하기. (0) | 2013.08.05 |