mysql 설치 하기.
1. 파일다운로드 및 설정변경.
wget http://dev.mysql.com/get/Downloads/MySQL-5.0/mysql-5.0.67-linux-i686.tar.gz/from/http://mysql.byungsoo.net/
shell> groupadd mysql
shell> useradd -g mysql mysql
shell> cd /usr/local
shell> gunzip < /path/to/mysql-VERSION-OS.tar.gz | tar xvf -
shell> ln -s full-path-to-mysql-VERSION-OS mysql
shell> cd mysql
shell> chown -R mysql .
shell> chgrp -R mysql .
shell> scripts/mysql_install_db --user=mysql
shell> chown -R root .
shell> chown -R mysql data
shell> bin/mysqld_safe --user=mysql &
2. 시작프로그램 등록
cp ./support-files/mysql.server /etc/init.d/mysqld
chkconfig --add mysqld
chkconfig --level 345 mysqld on
3. path 설정(.bash_profile)
PATH=$HOME/.bin:$PATH:/usr/local/mysql/bin:/usr/local/bin:.
4. source .bash_profile
댓글 없음:
댓글 쓰기