Skip to content

Instantly share code, notes, and snippets.

@stefgosselin
Created January 30, 2017 20:13
Show Gist options
  • Save stefgosselin/8ad82fc5700082e9e8354f4da402e659 to your computer and use it in GitHub Desktop.
Save stefgosselin/8ad82fc5700082e9e8354f4da402e659 to your computer and use it in GitHub Desktop.
Gluu initial base install - centOS 7
#!/usr/bin/bash
#######################################
# Helper script to install gluu-server
########################################
GLUU_VERSION=2.4.4.2
wget https://repo.gluu.org/centos/Gluu-centos7.repo -O /etc/yum.repos.d/Gluu.repo
wget https://repo.gluu.org/centos/RPM-GPG-KEY-GLUU -O /etc/pki/rpm-gpg/RPM-GPG-KEY-GLUU
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-GLUU
yum clean all
yum install -y gluu-server-$GLUU_VERSION
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment