How to install GearmanManager on Amazon AMI EC2 Micro Instance?
I believe amazon's linux is CentOS/RHEL based but I cannot install GearmanManager on the server.
How do I go about doing this?
[root@ip-10-100-100-10 install]$ ./install.sh
Detecting linux distro as redhat- or debian-compatible
Only Redhat Enterprise (RHEL) or Debian syste开发者_如何学Pythonms currently supported
[root@ip-10-100-100-10 install]$
cat /etc/issue
outputs Amazon Linux AMI release 2011.02.1.1 (beta)
I actually started using the EPEL repositories for specific things that are not normally in RHEL or Amazon Linux Repos. You can go to the EPEL FAQs and find out the specifics on installing EL6
, which allows you to install gearman on Amazon Linux AMI as an rpm without losing support of AWS Toolkits.
After you gave the latest version installed you will then run:
yum --enablerepo=epel install gearmand
The only software that will be installed from that repo is gearmand
and libgearman
.
To resolve this I opted for another Linux instance
精彩评论