GNU/Linux >> Linux Esercitazione >  >> Linux

Beanstalkd per CentOs 7

Sì, puoi installarlo tramite git e quindi copiare lo script systemd:

Passaggio 0. Installa git

yum install git

Passaggio 1. Clona repository

git clone git://github.com/kr/beanstalkd.git
cd beanstalkd
make
cp beanstalkd /usr/bin/beanstalkd
mkdir /var/lib/beanstalkd

Passaggio 2. Crea lo script di avvio

Crea il file /etc/systemd/system/beanstalkd.service con questo contenuto:

[Unit]
Description=Beanstalkd is a simple, fast work queue

[Service]
User=root
ExecStart=/usr/bin/beanstalkd -b /var/lib/beanstalkd

[Install]
WantedBy=multi-user.target

Passaggio 3. Infine, esegui

systemctl enable beanstalkd e systemctl start beanstalkd

Passaggio 4. Verifica

ps ax | grep beanstalkd


  1. yum installa beanstalkd
  2. avvio del servizio beanstalkd
  3. stato del servizio beanstalkd

Linux
  1. 15 passaggi per rafforzare Linux per il server CentOS 7

  2. Come aggiornare la versione Git>=1.7.10 su CentOS 6

  3. Qual è il sistema operativo migliore per te? Fedora contro CentOS

  4. Git chiede il nome utente ogni volta che spingo

  5. Abilita la password semplice per l'utente root su CentOS

Installa Varnish Cache per Apache su CentOS 8

Installa PIP per Python 3 in CentOS 8

Impossibile scaricare i metadati per il repository

Come installare Phabricator su CentOS 6

Come installare Drush per Drupal su CentOS 7

Come installare Git su CentOS 9 Stream