子ページ
  • CentOS 6.7 with Vault MySQL 5.1

比較バージョン

キー

  • この行は追加されました。
  • この行は削除されました。
  • 書式設定が変更されました。

...

Web Server, MySQL and PHP

There are version dependency between MySQL and Mroonga which will be installed in the next section.
In order to solve the dependency, MySQL have to be installed from the CentOS Vault.

コード ブロック
languagetext
sudo yum install -y httpd
sudo yum install -y perl-DBD-MySQL
sudo rpm -ivh http://vault.centos.org/6.5/updates/x86_64/Packages/mysql-libs-5.1.73-3.el6_5.x86_64.rpm
sudo rpm -ivh http://vault.centos.org/6.5/updates/x86_64/Packages/mysql-server-5.1.73-3.el6_5.x86_64.rpm
sudo yum install -y php php-mbstring php-gd php-xml php-mysql
sudo chkconfig httpd on
sudo chkconfig mysqld on
sudo service httpd start
sudo service mysqld start

At this moment, don't set the root password for MySQL
 

Full Text Search and MySQL

WEKO utilize Groonga and Mroonga for the full text search engine. There are version dependency between MySQL and Mroonga.
Following instruction  install the MySQL from the CentOS Vault.Following instruction  
In order to solve the dependency, version of the groonga  have to be 4.1.0.1.

コード ブロック
languagetext
sudo rpm -ivh http://packages.groonga.org/centos/groonga-release-1.1.0-1.noarch.rpm
sudo yum makecache
sudo yum install groonga-4.1.0-1.el6
sudo yum install -y mysql-mroonga

...