Xampp @ CentOS7에 Mroonga를 소개하는 메모
(특히 번거롭고 복잡한 부분은 없습니다.)
도입 환경
0. 필요한 패키지 도입
% sudo yum install -y wget tar gcc-c++ make mecab-devel
% sudo yum install -y cmake ncurses-devel
1. MySQL 준비
% sudo yum install -y wget tar gcc-c++ make mecab-devel
% sudo yum install -y cmake ncurses-devel
% tar xvzf mysql-5.6.21.tar.gz
% cd mysql-5.6.21
% cmake && make
2. Groonga 도입
% wget http://packages.groonga.org/source/groonga/groonga-5.0.3.tar.gz
% tar xvzf groonga-5.0.3.tar.gz
% cd groonga-5.0.3
% ./configure --prefix=/opt/lampp --libdir=/opt/lampp/lib/mysql --with-package-platform=redhat
% make
% sudo make install
3. Mroonga 도입
% wget http://packages.groonga.org/source/mroonga/mroonga-5.02.tar.gz
% tar xvzf mroonga-5.02.tar.gz
% cd mroonga-5.02
% PKG_CONFIG_PATH=/opt/lampp/lib/mysql/pkgconfig/ \
./configure\
--with-mysql-source=/****/mysql-5.6.21\
--with-mysql-config=/opt/lampp/bin/mysql_config\
--prefix=/opt/lampp
% make
% sudo make install
% mysql -u root -p < /opt/lampp/share/mroonga/install.sql
configure 의 option 에 주의해 주세요
이것으로 완성됩니다
Reference
이 문제에 관하여(Xampp @ CentOS7에 Mroonga를 소개하는 메모), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/hkoshiba/items/e0a5fd99bd7ee6fe1c70
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
% wget http://packages.groonga.org/source/groonga/groonga-5.0.3.tar.gz
% tar xvzf groonga-5.0.3.tar.gz
% cd groonga-5.0.3
% ./configure --prefix=/opt/lampp --libdir=/opt/lampp/lib/mysql --with-package-platform=redhat
% make
% sudo make install
% wget http://packages.groonga.org/source/mroonga/mroonga-5.02.tar.gz
% tar xvzf mroonga-5.02.tar.gz
% cd mroonga-5.02
% PKG_CONFIG_PATH=/opt/lampp/lib/mysql/pkgconfig/ \
./configure\
--with-mysql-source=/****/mysql-5.6.21\
--with-mysql-config=/opt/lampp/bin/mysql_config\
--prefix=/opt/lampp
% make
% sudo make install
% mysql -u root -p < /opt/lampp/share/mroonga/install.sql
configure 의 option 에 주의해 주세요
이것으로 완성됩니다
Reference
이 문제에 관하여(Xampp @ CentOS7에 Mroonga를 소개하는 메모), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/hkoshiba/items/e0a5fd99bd7ee6fe1c70텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)