# GearmanManager: wygodne zarządzanie workerami

DevFeed: [GearmanManager: wygodne zarządzanie workerami](<https://devfeed.tech/articles/gearmanmanager-wygodne-zarzadzanie-workerami-27588.md>)

Original publisher: [Read original article](<https://gagor.pro/2013/11/gearmanmanager-wygodne-zarzadzanie-workerami/>)

Author: Tom

Published: 2013-11-13T00:00:00Z

Content type: tutorial

Language: pl

Sources: [Tomasz Gągor](<https://devfeed.tech/sources/tomasz-gagor.md>)

Topics: [configuration](<https://devfeed.tech/topics/configuration.md>), [PHP](<https://devfeed.tech/topics/php.md>), [Git](<https://devfeed.tech/topics/git.md>), [apt](<https://devfeed.tech/topics/apt.md>), [Linux](<https://devfeed.tech/topics/linux.md>), [chmod](<https://devfeed.tech/topics/chmod.md>)

Tags: [apt](<https://devfeed.tech/tags/apt.md>), [chmod](<https://devfeed.tech/tags/chmod.md>), [configuration](<https://devfeed.tech/tags/configuration.md>), [debian](<https://devfeed.tech/tags/debian.md>), [gearman](<https://devfeed.tech/tags/gearman.md>), [git](<https://devfeed.tech/tags/git.md>), [linux](<https://devfeed.tech/tags/linux.md>), [php](<https://devfeed.tech/tags/php.md>)

## AI overview

A Polish tutorial explains how to install and configure GearmanManager for managing Gearman workers, including installing the PHP Gearman module, running the installation script, placing worker scripts, and reviewing configuration options.

## Source excerpt

Niedawno zainteresowałem się usługą Gearman i jedynej rzeczy której mi brakowało to jakiegoś łatwego mechanizmu zarządzającego workerami. Ale jak zwykle okazało się że inni mieli już ten problem i odpowiednie narzędzie istnieje - mowa o GearmanManagerze. Instalacja GearmanManagera Aby zainstalować GeramanManagera na serwerze gdzie już mamy Gearmana trzeba wykonać kilka kroków (wcześniej powinniśmy też zainstalować moduł gearmana do php'a): apt-get install git -y git clone https://github.com/brianlmoon/GearmanManager.git cd GearmanManager/install chmod +x install.sh ./install.sh Detecting linux distro as redhat- or debian-compatible Where is your php executable? (usually /usr/bin) /usr/bin Which PHP library to use, pecl/gearman or PEAR::Net_Gearman? 1) pecl 2) pear #? 1 Installing to /usr/local/share/gearman-manager Installing executable to /usr/local/bin/gearman-manager Installing configs to /etc/gearman-manager Installing init script to /etc/init.d/gearman-manager Install ok! Run /etc/init.d/gearman-manager to start and stop Worker scripts can be installed in /etc/gearman-manager/workers, configuration can be edited in /etc/gearman-manager/config.ini Mamy działającego GearmanManagera. Zalecam przyglądnięcie się plikowi config-advanced.ini bo jest tam kilka opcji, które warto dodatkowo ustawić.