rhel5.7下安裝gearmand及啟動的方法_linux shell

來源:互聯網
上載者:User

本文簡述了在rhel5.7下安裝gearmand及啟動的方法,供大家學習參考!

首先,到官網https://launchpad.net/gearmand/下載gearmand的源碼包,傳到rhel5.7的系統上,並解壓。
 
運行configure:

[@localhost gearmand-1.1.11]# ./configure --prefix=/usr/local/gearman --with-mysql --with-sqlite3=no 

這時候會出現報如下錯誤:

checking for Boost headers version >= 1.39.0... no configure: error: cannot find Boost headers version >= 1.39.0 ok,http://sourceforge.net/projects/boost/files/boost/1.55.0/boost_1_55_0.tar.gz/download

此時需要下載boost,並解壓:

./bootstrap.sh --prefix=/usr/local/boost/  ./b2 install 
 

 這個過程需要等待一段時間,詳情可參考官網:dochttp://www.boost.org/doc/libs/1_55_0/more/getting_started/unix-variants.html
 
安裝完成之後,回到gearman目錄,執行如下命令:

CPPFLAGS=-I/usr/local/boost/include LDFLAGS=-L/usr/local/boost/lib ./configure --prefix=/usr/local/gearman --with-mysql --with-sqlite3=no 

這時還會報如下錯誤:

checking for gperf... no configure: error: could not find gperf 

緊接著執行yum安裝:

再次執行以上的configur,再沒有報錯。OK,可以進行編譯了。
在執行make命令時,報了很多的錯,其中看到有個:

./libgearman-1.0/gearman.h:53:27: error: tr1/cinttypes: No such file or directory 

可以推斷是gcc編譯器的問題,執行命令:

yum install gcc44 gcc44-c++ libstdc++44-devel -y 

安裝完畢之後執行:

CXX=/usr/bin/g++44 CC=/usr/bin/gcc44 CPPFLAGS=-I/usr/local/boost/include LDFLAGS=-L/usr/local/boost/lib ./configure --prefix=/usr/local/gearman --with-mysql --with-sqlite3=no  
make && make install 

至此,安裝成功,執行以下命令啟動(隊列持久化儲存)

/usr/local/gearman/sbin/gearmand -p 4730 -L 0.0.0.0 --log-file=/tmp/gearmand-4730.log --pid-file=/tmp/gearmand-4730.pid -q MySQL --mysql-host=localhost --mysql-user=root --mysql-db=gearman --verbose DEBUG -d 

啟動時,發現有報如下錯誤:

/usr/local/gearman/sbin/gearmand: error while loading shared libraries: libboost_program_options.so.1.55.0: cannot open shared object file: No such file or directory 

那麼很明顯,是由於連結檔案找不到的緣故所導致的。執行如下命令:

vi /etc/ld.so.conf.d/gearman.conf 

插入以下內容,儲存退出

/usr/local/boost/lib/ /usr/local/gearman/lib/ 

執行命令

ldconfig 

再次執行上面的啟動命令,至此即可啟動gearmand.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.