> 데이터 베이스 > MySQL 튜토리얼 > infobright 编译安装_MySQL

infobright 编译安装_MySQL

WBOY
풀어 주다: 2016-05-27 14:29:51
원래의
790명이 탐색했습니다.

bitsCN.com

infobright安装: 
需要boost 1.42 或更高版本,redhat自带的boost是1.41版本,所以需要下载个新的编译安装一下: 
下载安装boost:http://www.boost.org/users/download/ 

Shell代码  收藏代码
  1. cd boost_1_45_0  
  2. ./bootstrap.sh --prefix=/usr/local/boost_1_45_0  
  3. ./bjam install  
  4. export BOOST_ROOT=/usr/local/boost_1_45_0  
  5. echo "/usr/local/boost_1_45_0/lib" > /etc/ld.so.conf.d/boost-x86_64.conf  
  6. ldconfig  



如果没有mysql用户和组,需要加入: 

Shell代码  收藏代码
  1. shell> groupadd mysql  
  2. shell> useradd -g mysql mysql  



# 编译安装 MySQL and Infobright server and client tools 

Shell代码  收藏代码
  1. shell> cd infobright-version  
  2. shell> make EDITION=community release  
  3. shell> make EDITION=community install-release  
  4.   
  5. # Setting config file and brighthouse.ini file.  
  6. shell> cp src/build/pkgmt/my-ib.cnf /etc/  
  7.   
  8. shell> cd /usr/local/infobright  
  9. shell> bin/mysql_install_db --defaults-file=/etc/my-ib.cnf --user=mysql  
  10. shell> chown -R root  .  
  11. shell> chown -R mysql var cache  
  12. shell> chgrp -R mysql .  



安装启动脚本: 

Shell代码  收藏代码
  1. shell> cp share/mysql/mysql.server /etc/init.d/mysqld-ib  
  2. shell> vi /etc/init.d/mysqld-ib  


找到以下两行: 

Shell代码  收藏代码
  1. conf=@BH_CONF@  
  2. user=@BH_USER@  


修改为: 

Shell代码  收藏代码
  1. conf=/etc/mysql-ib.cnf  
  2. user=mysql  



启动: 
shell> /etc/init.d/mysql-ib start 

客户端连接: 
shell> /usr/local/infobright/bin/mysql --default-file=/etc/my-ib.cnf -uroot 

加入开机启动: 
shell> chkconfig --add mysqld-ib 

bitsCN.com
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿