반응형
ubuntu 14.04 -- mysql 설치하기
환경 : ubuntu 14.04 LTS server 64bit
참고 : https://help.ubuntu.com/lts/serverguide/mysql.html
https://www.digitalocean.com/community/tutorials/a-basic-mysql-tutorial
1. mysql 설치하기
$ sudo apt-get install mysql-server
-- 설치중에 root user 암호 설정해야한다.
2. 설치후 작동 확인하기
$ sudo netstat -tap | grep mysql
3. mysql 재시작하기
$ sudo service mysql restart
4. mysql 접속하기
$ mysql -u root -p
-- mysql 설치시 설정한 root user 암호 입력하면 됨.
5. mysql 버전 확인하기
mysql> status;
mysql> select version();
*** utf8 설정하기
http://freeprog.tistory.com/151
반응형
'database' 카테고리의 다른 글
MongoDB -- ubuntu 14.04 에 MongoDB 설치하기 (0) | 2015.10.18 |
---|---|
mysql -- character set, collation, utf8 설정 (0) | 2015.09.17 |
windows 7 에 설치된 postgresql 9.4 에 SSL 설정하기 (0) | 2015.08.20 |
ubuntu client 에서 postgresql client(psql, pgadmin3) 설치 하기 (1) | 2015.05.27 |
windows client 에 pgadmin III 설치, 실행하기 (0) | 2015.05.27 |