개발자의 노트
리눅스에 RabbitMQ 설치 (CentOS)
소프트웨어개발/RabbitMQ 2012. 11. 15. 15:08

CentOS 5 버전 기준.. 먼저 EPEL (Extra Packages for Enterprise Linux ) 설치 # rpm -Uvh http://ftp.neowiz.com/fedora-epel//5/i386/epel-release-5-4.noarch.rpm Erlang 는 yum으로 설치 (RabbitMQ는 Erlang으로 만들어져있음) # wget -O /etc/yum.repos.d/epel-erlang.repo http://repos.fedorapeople.org/repos/peter/erlang/epel-erlang.repo # yum install erlang Erlang를 소스로 설치할 경우엔 아래 의존성 패키지 설치 (소스 설치는 생략) # yum install gcc* ncurses*..