1. my.cnf 파일 설정
/etc/my.cnf 파일 생성
2. /usr/local/mysql에 설치 (with root)
groupadd mysql
useradd -g mysql mysql
cd /usr/local
tar -zxvpf /path-to/mariadb-VERSION-OS.tar.gz
ln -s mariadb-VERSION-OS mysql
cd mysql
./scripts/mysql_install_db --user=mysql
chown -R root .
chown -R mysql data
./bin/mysqld_safe --user=mysql & or ./bin/mysqld_safe --defaults-file=~/.my.cnf --user=mysql &
export PATH=$PATH:/usr/local/mysql/bin/
3. root 이외에 다른 계정으로 설치
cd /usr/local gunzip < /path-to/mariadb-VERSION-OS.tar.gz | tar xf - ln -s mariadb-VERSION-OS mysql cd mysql ./scripts/mysql_install_db --defaults-file=~/.my.cnf
./bin/mysqld_safe --defaults-file=~/.my.cnf &
'RDB > MySQL' 카테고리의 다른 글
mysql 8.0 옵티마이저 (0) | 2017.11.19 |
---|---|
Orchestrator (0) | 2017.11.17 |
mysql용 python 코드 예제 (0) | 2017.09.07 |
mysql5.7 install (0) | 2016.10.29 |
Performance 설정 (0) | 2016.08.10 |