본문 바로가기

OS/Linux

CentOS에 mysql RPM 설치하기

1. mysql 홈페이지에서 rpm받기
 
select platform에서 linux - generic 을 선택한다. 본인의 경우 x86-64 버젼을 설치하였으므로 x86-64 버젼을 받는다.

MySQL-5.5.16-1.linux2.6.x86_64.tar

필요한 파일만 별도로 받아 설치하여도 된다. 위에는 내가 받은 파일이다.
tar를 받으면 안에 종류별로 rpm파일이 들어있다. 그중에서 server파일과 client파일을 설치하면 된다.

2. 압축 풀기

$ tar -xvf MySQL-5.5.16-1.linux2.6.x86_64.tar 
 

MySQL-client-5.5.16-1.linux2.6.x86_64.rpm

MySQL-devel-5.5.16-1.linux2.6.x86_64.rpm

MySQL-embedded-5.5.16-1.linux2.6.x86_64.rpm

MySQL-server-5.5.16-1.linux2.6.x86_64.rpm

MySQL-shared-5.5.16-1.linux2.6.x86_64.rpm

MySQL-test-5.5.16-1.linux2.6.x86_64.rpm


압축을 풀면 위에 파일들이 있다.

3. 설치하기

#rpm -ivh  MySQL-server-5.5.16-1.linux2.6.x86_64.rpm

#rpm -ivh  MySQL-client-5.5.16-1.linux2.6.x86_64.rpm 



4. 실행

/usr/bin/mysqld_safe &


실행하면 백그라운드로 mysql이 돌아가게 된다.
별도로 설정을 하지 않아도 컴을 부팅시켜도 계속 돌아간다.
신기하다. 이렇게 간단히 되다니...

실행 테스트를 해보기 위해 프롬프트에 mysql을 입력해보자.

$ mysql

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 4

Server version: 5.5.16 MySQL Community Server (GPL)


Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.


Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.


Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.


mysql>


이처럼 결과가 나오면 설치가 끝났다.

참고 URL: http://lks21c.blogspot.com/2011/09/centos-mysql-rpm.html