public inbox for gentoo-user-ru@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user-ru] Два инстанса Sphinx
@ 2013-06-05 22:32 Sergey Kobzar
  2013-06-06  7:02 ` [gentoo-user-ru] " Андрей Буров
  0 siblings, 1 reply; 18+ messages in thread
From: Sergey Kobzar @ 2013-06-05 22:32 UTC (permalink / raw
  To: gentoo-user-ru

Необходимо на сервере запустить 2 инстанса Sphinx'а. Для первого 
инстанса все оставил как есть. Для второго
1. Поменял порты (сокеты) в /etc/sphinx/sphinx-test.conf
2. Поменял pid file в /etc/sphinx/sphinx-test.conf
3. Изменил путь к инlексам в /etc/sphinx/sphinx-test.conf
4. Переписал немного rc script:

depend() {
         need net
         use logger
}

checkconfig() {
         if [ ! -f /etc/sphinx/sphinx-test.conf ]; then
                 eerror "Please create /etc/sphinx/sphinx-test.conf"
                 eerror "Sample conf: /etc/sphinx/sphinx.conf.dist"
                 return 1
         fi
         return 0
}

start() {
         checkconfig || return $?

         ebegin "Starting sphinx searchd"
         start-stop-daemon --start --exec /usr/bin/searchd -- --config 
/etc/sphinx/sphinx-test.conf
         eend $? "Failed to start sphinx searchd"
}

stop() {
         ebegin "Stopping sphinx searchd"
         start-stop-daemon --stop --exec /usr/bin/searchd -- --config 
/etc/sphinx/sphinx-test.conf
         eend $? "Failed to stop sphinx searchd"

(добавил " -- --config /etc/sphinx/sphinx-test.conf")

Стартуют оба инстанса без проблем, но если делаю /etc/init.d/searchd 
stop, то стопаются оба инстанса. Пробовал добавлять --pidfile 
/run/searchd-test.pid - безрезультатно.

Any ideas?


^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2013-06-13 17:37 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-05 22:32 [gentoo-user-ru] Два инстанса Sphinx Sergey Kobzar
2013-06-06  7:02 ` [gentoo-user-ru] " Андрей Буров
2013-06-06 15:16   ` Sergey Kobzar
2013-06-06 17:23     ` [gentoo-user-ru] " Андрей Буров
2013-06-06 18:54       ` [gentoo-user-ru] " Sergey Popov
2013-06-06 19:10         ` [gentoo-user-ru] " Taz
2013-06-06 19:35         ` Sergey Kobzar
2013-06-07  6:22           ` [gentoo-user-ru] " Sergey Popov
2013-06-07  6:23             ` [gentoo-user-ru] " Sergey Popov
2013-06-07  8:28               ` [gentoo-user-ru] " Sergey Kobzar
2013-06-07 12:44                 ` Sergey Kobzar
2013-06-08 11:39                   ` Sergey Popov
2013-06-09 22:01                     ` Sergey Kobzar
2013-06-10  1:32                       ` [gentoo-user-ru] " Голубев Александр
2013-06-10  8:20                         ` Sergey Kobzar
2013-06-10 20:29                           ` Sergey Kobzar
2013-06-13 11:44                             ` Sergey Kobzar
2013-06-13 17:36                               ` Sergey Popov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox