GCC用来对c语言代码进行编译运行
yum -y install gcc
unzip工具可以帮我们对压缩包进行解压
yum install -y unzip zip
yum -y install libevent
yum -y install pcre pcre-devel zlib zlib-devel openssl openssl-devel
这个没有yum包,只能通过编译安装:
解压上传到fdfs文件下的libfastcommon-master.zip
unzip libfastcommon-master.zip
进入解压完成的目录
cd libfastcommon-master
编译并安装
./make.sh
./make.sh install
解压
tar -xvf FastDFS_v5.08.tar.gz
进入目录
cd FastDFS
编译并安装
./make.sh
./make.sh install
cd /etc/init.d
4.1 安装完成后,我们应该在/ect/init.d目录,通过命令 ll /etc/init.d/|grep fdfs 看到FastDFS提供的启动脚本:
4.2.可以在/etc/fdfs目录下,通过ll命令查看到以下配置文件模板
总用量 20
-rw-r--r--. 1 root root 1461 12月 29 03:47 client.conf.sample
-rw-r--r--. 1 root root 7927 12月 29 03:47 storage.conf.sample
-rw-r--r--. 1 root root 7200 12月 29 03:47 tracker.conf.sample
4.3设置tracker
service fdfs_trackerd start
4.4设置stroage
mkdir -p /leyou/fdfs/storage
service fdfs_storaged start
chkconfig fdfs_storaged on
4.5测试文件上传
把图片放到tmp文件夹下
成功后返回图片id:
group1/M00/00/00/wKgjgV_zSheAWRb4AAAwev15JV0758.jpg
group1:组信息
M00:对应的store_path0
/00/00:磁盘路径
tar xvf fastdfs-nginx-module_v1.16.tar.gz
执行命令(将配置中的/usr/local改为/usr)
:%s+/usr/local/+/usr/+g
执行后
将src目录下的 mod_fastdfs.conf复制到/etc/fdfs目录
cp mod_fastdfs.conf /etc/fdfs/
查看/etc/fdfs
修改mod_fastdfs.conf配置文件
复制FastDFS的配置文件 http.conf、 mime.types到 /etc/fdfs/文件夹下
cp http.conf mime.types /etc/fdfs/
tar xvf nginx-1.10.0.tar.gz
rm -rf nginx-1.10.0.tar.gz
cd nginx-1.10.0/
./configure --prefix=/opt/nginx --sbin-path=/usr/bin/nginx --add-module=/home/ly/fdfs/fastdfs-nginx-module/src
make && make install
cd nginx-1.10.0/
./configure --prefix=/opt/nginx --sbin-path=/usr/bin/nginx --add-module=/home/ly/fdfs/fastdfs-nginx-module/src
make
ll
drwxr-xr-x. 6 leyou leyou 4096 12月 11 10:41 auto
-rw-r--r--. 1 leyou leyou 262619 4月 26 2016 CHANGES
-rw-r--r--. 1 leyou leyou 400302 4月 26 2016 CHANGES.ru
drwxr-xr-x. 2 leyou leyou 168 12月 11 20:11 conf
-rwxr-xr-x. 1 leyou leyou 2481 4月 26 2016 configure
drwxr-xr-x. 4 leyou leyou 72 12月 11 10:41 contrib
drwxr-xr-x. 2 leyou leyou 40 12月 11 10:41 html
-rw-r--r--. 1 leyou leyou 1397 4月 26 2016 LICENSE
-rw-r--r--. 1 root root 345 1月 5 02:53 Makefile
drwxr-xr-x. 2 leyou leyou 21 12月 11 10:41 man
drwxr-xr-x. 4 root root 187 1月 5 02:58 objs
-rw-r--r--. 1 leyou leyou 49 4月 26 2016 README
drwxr-xr-x. 9 leyou leyou 91 12月 11 10:41 src
#切换到目录
cd objs
ll
drwxr-xr-x. 3 root root 17 1月 5 02:53 addon
-rw-r--r--. 1 root root 15172 1月 5 02:53 autoconf.err
-rw-r--r--. 1 root root 38610 1月 5 02:53 Makefile
-rwxr-xr-x. 1 root root 3598368 1月 5 02:58 nginx
-rw-r--r--. 1 root root 5317 1月 5 02:58 nginx.8
-rw-r--r--. 1 root root 6738 1月 5 02:53 ngx_auto_config.h
-rw-r--r--. 1 root root 657 1月 5 02:53 ngx_auto_headers.h
-rw-r--r--. 1 root root 5615 1月 5 02:53 ngx_modules.c
-rw-r--r--. 1 root root 30736 1月 5 02:58 ngx_modules.o
drwxr-xr-x. 9 root root 91 12月 11 10:51 src
#替换以前的nginx
cp nginx /usr/bin
cp:是否覆盖"/usr/bin/nginx"? y
我们需要修改nginx配置文件,在/opt/nginx/conf/nginx.conf文件中
vim /opt/nginx/conf/nginx.conf
server {
listen 80;
server_name image.ly.com;
# 监听域名中带有group的,交给FastDFS模块处理
location ~/group([0-9])/ {
ngx_fastdfs_module;
}
}
启动nginx
nginx
ngx_http_fastdfs_set pid=6357 # 启动成功
效果:
访问路径
image.ly.com/group1/M00/00/00/wKgjgV_zSheAWRb4AAAwev15JV0758.jpg