다음 이전 차례

1. MySQL을 어디서 얻을수 있는가?

현재 MySQL의 공식 홈페이지는 http://www.mysql.com이며 여러 형태의 소스를 구할수 있다.

http://www.tcx.se/Downloads/MySQL-3.22/mysql-3.22.16a-gamma.tar.gz에서 소스를 구할 수 있다.

1.1 컴파일 및 설치

shell> gunzip < mysql-VERSION-OS.tar.gz | tar xvf -
shell> cd mysql-VERSION
shell> ./configure --prefix=/usr/local/mysql \
            --sysconfdir=/usr/local/mysql/conf \
            --with-mysqld-user=mysql \
            --with-charset=sjis
shell> make install

여기서 --prefix 옵션에는 mysql을 설치할 모 디렉토리를 설정해 준다. 만약 /usr/local/mysql 디렉토리에 설치하고자 한다면 --prefix=/usr/local/mysql 로 설정해 준다. 기본적인 설치 디렉토리는 다음과 같다.


Directory Contents of directory
'bin' Client programs, mysqld server
'data' Log files, databases
'scripts' Client programs, mysqld server
'share' Client programs, mysqld server
'sql-bench' Client programs, mysqld server


다음 이전 차례