1. 程式人生 > >linux系統搭建圖片伺服器

linux系統搭建圖片伺服器

第一步:把fastDFS都上傳到linux系統。
第二步:安裝FastDFS之前,先安裝libevent工具包。
yum -y install libevent
第三步:安裝libfastcommonV1.0.7工具包。
1、解壓縮
2、./make.sh
3、./make.sh install
4、把/usr/lib64/libfastcommon.so檔案向/usr/lib/下複製一份
第四步:安裝Tracker服務。
1、解壓縮
2、./make.sh
3、./make.sh install
安裝後在/usr/bin/目錄下有以fdfs開頭的檔案都是編譯出來的。
配置檔案都放到/etc/fdfs資料夾
4、把/root/FastDFS/conf目錄下的所有的配置檔案都複製到/etc/fdfs下。
5、配置tracker服務。修改/root/FastDFS/conf/tracker.conf檔案。
這裡寫圖片描述


6、啟動tracker。/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf
重啟使用命令:/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf restart
第五步:安裝storage服務。
1、如果是在不同的伺服器安裝,第四步的1~4需要重新執行。
2、配置storage服務。修改/root/FastDFS/conf/storage.conf檔案
這裡寫圖片描述
這裡寫圖片描述
這裡寫圖片描述
3、啟動storage服務。
/usr/bin/fdfs_storaged /etc/fdfs/storage.conf restart
第六步:測試服務。
1、修改配置檔案/etc/fdfs/client.conf
這裡寫圖片描述

這裡寫圖片描述
2、測試
/usr/bin/fdfs_test /etc/fdfs/client.conf upload anti-steal.jpg
第七步:搭建nginx提供http服務。
可以使用官方提供的nginx外掛。要使用nginx外掛需要重新編譯。
fastdfs-nginx-module_v1.16.tar.gz
1、解壓外掛壓縮包
2、修改/root/fastdfs-nginx-module/src/config檔案,把其中的local去掉。
這裡寫圖片描述
3、對nginx重新config
./configure \
–prefix=/usr/local/nginx \
–pid-path=/var/run/nginx/nginx.pid \
–lock-path=/var/lock/nginx.lock \
–error-log-path=/var/log/nginx/error.log \
–http-log-path=/var/log/nginx/access.log \
–with-http_gzip_static_module \
–http-client-body-temp-path=/var/temp/nginx/client \
–http-proxy-temp-path=/var/temp/nginx/proxy \
–http-fastcgi-temp-path=/var/temp/nginx/fastcgi \
–http-uwsgi-temp-path=/var/temp/nginx/uwsgi \
–http-scgi-temp-path=/var/temp/nginx/scgi \
–add-module=/root/fastdfs-nginx-module/src
4、make
5、make install
6、把/root/fastdfs-nginx-module/src/mod_fastdfs.conf檔案複製到/etc/fdfs目錄下。編輯:
這裡寫圖片描述

這裡寫圖片描述
這裡寫圖片描述
這裡寫圖片描述
7、nginx的配置
在nginx的配置檔案中新增一個Server:這裡寫程式碼片
server {
listen 80;
server_name 192.168.101.3;

    location /group1/M00/{
            #root /home/FastDFS/fdfs_storage/data;
            ngx_fastdfs_module;
    }

}
8、將libfdfsclient.so拷貝至/usr/lib下
cp /usr/lib64/libfdfsclient.so /usr/lib/
9、啟動nginx