SQL : DBMS를 관리 및 제어하기 위해 사용하는 인터페이스 혹은 언어. Structured Query Language.

MySQL : 오픈소스의 관계형 데이터베이스 관리시스템.

 

설치.

yum -y install mysql-server

 

실행.

service mysqld start

chkconfig mysqld on

 

확인.

netstat - antup | grep 3306

netstat -antup | grep mysqld

service mysqld status 

 

접속.

mysql

mysql -u [계정명] -p

+ Recent posts