beanstalkd在CentOS下沒有默認的安裝包,須要手動編譯安裝,最新版本1.6,不過1.5版本後,取消了對libevent的依賴,但不能直接啓動做爲daemon進程,1.4.6仍是能夠使用參數 -d 啓動爲 daemon,因此選擇編譯1.4.6。安裝後默認不帶啓動腳本,但fedora下能夠使用yum安裝,安裝後生成 /etc/init.d/beanstalkd啓動腳本,因此特意在虛擬機裏livecd啓動fedora17,安裝後,挖出beanstalkd啓動腳本。git
切換到 root用戶下:github
yum install libevent libevent-devel ide
全部版本地址: https://github.com/kr/beanstalkd/downloads ui
下載地址:rest
wget http://cloud.github.com/downloads/kr/beanstalkd/beanstalkd-1.4.6.tar.gz code
解壓:進程
tar xzf beanstalkd-1.4.6.tar.gz ip
cd beanstalkd-1.4.6 rem
./configure get
make
make install
默認安裝路徑 :/usr/local/bin/
查看版本:
/usr/local/bin/beanstalkd -v
1.4.6
添加用戶組:
groupadd beanstalkd
添加用戶:
adduser -M -g beanstalkd -s /sbin/nologin beanstalkd
添加啓動腳本,放入 /etc/init.d/ 目錄下
chmod 755 /etc/init.d/beanstalkd
加入開機啓動:
chkconfig beanstalkd on
啓動:
service beanstalkd start
安裝完畢
附:從Fedora下挖來的 startup 腳本:
#!/bin/sh # # beanstalkd - a simple, fast workqueue service # # chkconfig: - 57 47 # description: a simple, fast workqueue service # processname: beanstalkd # config: /etc/sysconfig/beanstalkd # ### BEGIN INIT INFO # Provides: beanstalkd # Required-Start: $local_fs $network $remote_fs # Required-Stop: $local_fs $network $remote_fs # Default-Stop: 0 1 2 6 # Short-Description: start and stop beanstalkd # Description: a simple, fast work-queue service ### END INIT INFO # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ "$NETWORKING" = "no" ] && exit exec="/usr/local/bin/beanstalkd" prog=$(basename $exec) # default options, overruled by items in sysconfig BEANSTALKD_ADDR=127.0.0.1 BEANSTALKD_PORT=11300 BEANSTALKD_USER=beanstalkd [ -e /etc/sysconfig/beanstalkd ] && . /etc/sysconfig/beanstalkd lockfile=/var/lock/subsys/beanstalkd start() { [ -x $exec ] || exit 5 echo -n $"Starting $prog: " # if not running, start it up here, usually something like "daemon $exec" options="-l ${BEANSTALKD_ADDR} -p ${BEANSTALKD_PORT} -u ${BEANSTALKD_USER}" if [ "${BEANSTALKD_MAX_JOB_SIZE}" != "" ]; then options="${options} -z ${BEANSTALKD_MAX_JOB_SIZE}" fi if [ "${BEANSTALKD_BINLOG_DIR}" != "" ]; then if [ ! -d "${BEANSTALKD_BINLOG_DIR}" ]; then echo "Creating binlog directory (${BEANSTALKD_BINLOG_DIR})" mkdir -p ${BEANSTALKD_BINLOG_DIR} && chown ${BEANSTALKD_USER}:${BEANSTALKD_USER} ${BEANSTALKD_BINLOG_DIR} fi options="${options} -b ${BEANSTALKD_BINLOG_DIR}" if [ "${BEANSTALKD_BINLOG_FSYNC_PERIOD}" != "" ]; then options="${options} -f ${BEANSTALKD_BINLOG_FSYNC_PERIOD}" else options="${options} -F" fi if [ "${BEANSTALKD_BINLOG_SIZE}" != "" ]; then options="${options} -s ${BEANSTALKD_BINLOG_SIZE}" fi fi daemon $exec -d $options retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " # stop it here, often "killproc $prog" killproc $prog -INT retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { stop start } reload() { restart } force_reload() { restart } rh_status() { # run checks to determine if the service is running or use generic status status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" exit 2 esac exit $?
--- 備註:
1.8之後版本,只須要 執行 (沒有 configure這一步)
make
make install
自動安裝 啓動腳本。