Created
July 15, 2014 21:09
-
-
Save CauanCabral/6a2dc367a7695c89b0b4 to your computer and use it in GitHub Desktop.
Install Gearman latest stable ( 1.0.6 ) in OpenSUSE latest stable ( 13.1 )
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Run this script as root | |
# ADD REPOSITORY | |
zypper ar -f http://download.opensuse.org/repositories/server:/monitoring/openSUSE_13.1/ Monitoring | |
zypper refresh | |
# INSTALL ALL RELATED PACKAGES | |
zypper in gearmand-server gearmand-server-mysql gearmand-server-postgresql gearmand-server-sqlite3 gearmand-tools gearmand-devel | |
# CONFIGURE MISSING USER TO RUN GEARMAND | |
useradd -r -s /bin/bash -g gearman gearman | |
# ENABLE GEARMAND | |
systemctl enable gearmand | |
# START GEARMAND | |
systemctl start gearmand.service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment