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
'OS > Linux' 카테고리의 다른 글
configure에서 mod_deflate has been requested but can not be built due to prerequisite failures 에러 (0) | 2011.10.20 |
---|---|
configure에서 no acceptable C compiler found in $PATH 오류 (0) | 2011.10.19 |
CentOS 6.0 설치후 방화벽 설정 (0) | 2011.10.18 |
우분투 shell (0) | 2011.08.05 |
Linux 방화벽 설정 (ufw) (0) | 2011.08.03 |