mnoGoSearch | July 22, 2005-->
July 22, 2005Installing mnoGoSearch
Unpack the distribution filetar -zxf mnogosearch-x.x.x.tar.gz
Configure (MySQL database support) [1]:
cd mnogosearch-x.x.x
./configure --prefix=/home/sts/mnogo --with-mysql \
--with-extra-charsets=all --with-openssl --enable-shared
Create the database:
mysql -u USER -p -h HOST
mysql> create database mnogo;
cd /home/sts/mnogo/etc/
cp indexer.conf-dist indexer.conf
cp stopwords.conf-dist stopwords.conf
cp langmap.conf-dist langmap.conf
Edit etc/indexer.conf
DBAddr mysql://foo:bar@localhost/mnogosearch/?dbmode=single [...] LocalCharset UTF-8 [...] DefaultLang en [...] Robots yes [...] Index yesCreate the database tables
./sbin/indexer -Ecreate
Run indexer
./sbin/indexer
Reindex all documents
./sbin/indexer -a
Clear database
./sbin/indexer -C
Print statistics
./sbin/indexer -S
Use a different config file
/usr/sbin/indexer -d /path/to/indexer.conf ...
[1] http://www.mnogosearch.org/doc/msearch-installing.html
