1、安裝gcc (編譯時需要) [root@localhost~]# yum -y install gcc gcc-c++ 2、安裝libevent ,FastDFS依賴libevent庫; [root@localhost~]# yum -y install libevent 3、安裝libfast ...
1、安裝gcc (編譯時需要)
[root@localhost~]# yum -y install gcc gcc-c++
2、安裝libevent ,FastDFS依賴libevent庫;
[root@localhost~]# yum -y install libevent
3、安裝libfastcommon
libfastcommon是FastDFS官方提供的,libfastcommon包含了FastDFS運行所需要的一些基礎庫。
(1)上傳 libfastcommonV1.0.7.tar.gz到Centos機器上;
(2)將 libfastcommonV1.0.7.tar.gz解壓至/usr/local/下:
libfastcommon 下載地址:https://codeload.github.com/happyfish100/libfastcommon/tar.gz/V1.0.7
(3)切換目錄到:/usr/local/libfastcommon-1.0.7/ 下,接著進行編譯和安裝;
[root@localhost data]# tar -xf V1.0.7.tar.gz
[root@localhost data]# cd libfastcommon-1.0.7/
[root@localhost libfastcommon-1.0.7]# ./make.sh #編譯
[root@localhost libfastcommon-1.0.7]# ./make.sh install #安裝
(4)libfastcommon安裝好後會在/usr/lib64 目錄下生成 libfastcommon.so 庫文件;
註意:由於FastDFS程式引用usr/lib目錄所以需要將/usr/lib64下的庫文件拷貝至/usr/lib下。
[root@localhost lib64]# cp /usr/lib64/libfastcommon.so /usr/lib/