Nginx+FastDFS安装与配置图文教程
第1章  软件环境
1.1 Nginx安装
1.1.1 安装步骤
第一步:下载安装包之后,将安装包传入linux的文件目录下,比如 /data/software 创建目录:mkdir -p /data/software
(将下载好的nginx-fastdfs-1905文件拷贝至此目录)
第二步:依次安装
openssl-fips-2.0.、zlib-1.2.、pcre-8.、nginx-
1.15.
安装命令:
2.1 安装openssl-fips-2.0.16
#tar -zxvf openssl-fips-2.0.
#cd openssl-fips-2.0.16
#./config
#make
#make install
>>如果上述过程出现下面异常:
Operating system: x86_64-whatever-linux2 You need Perl 5.
解决方法:(注意软件包可下载在/data/software目录下)
wget /src/5.0/perl-5.30.
tar -xzf perl-5.30.
cd perl-5.30.1
./Configure -des -Dprefix=$HOME/localperl
make
make test
make install
>>如果上述过程出现下面异常:
./hints/linux.sh:行174: gcc: 未到命令
Operating system name? [linux]
Operating system version? [3.10.0-693.el7.x86_64]  Installation prefix to use? (~name ok) [/root/localperl]
解决方法:
yum install gcc
2.2 安装zlib-1.2.11
tar -zxvf zlib-1.2.
cd zlib-1.2.11
./configure
make
make install
2.3 安装pcre-8.38
tar -zxvf pcre-8.perl下载安装教程
cd pcre-8.38
./configure
make
make install
>>如果上述过程出现下面异常:
configure: error: You need a C++ compiler for C++ support.
解决方法:
使用yum安装
yum -y install gcc-c++
2.4 安装 nginx-1.15.
tar -zxvf  nginx-1.15.
cd nginx-1.15.12
./configure --with-pcre=../pcre-8.38 --with-zlib=../zlib-1.2.11 --with-openssl=../openssl-fips-2.0.16 --with-stream
make
make install
至此Nginx的安装完成!
第三步:检测是否安装成功
cd  /usr/local/nginx/sbin
./nginx -t
出现如下所示提示,表示安装成功
启动nginx
[root@localhost sbin]# ./nginx
查看端口
[root@localhost sbin]# netstat -ntlp
>>若遇到netstat: 未到命令
解决方法:
yum ­y install net­tools
1.2 FastDFS安装
1.2.1 安装步骤
第一步:创建文件夹存储安装包
[root@K9-TMS ~]# mkdir /data/software
上传指定安装包到如上目录当中
第二步:安装libfastcommon
创建安装文件夹
# unzip libfastcommon-master.zip
# cd libfastcommon-master
编译
[root@K9-TMS libfastcommon-master]#  ./make.sh
安装
[root@K9-TMS libfastcommon-master]# ./make.sh install
创建软连接
ln -s /usr/lib64/libfastcommon.so /usr/local/lib/libfastcommon.so ln -sf /usr/lib64/libfastcommon.so /usr/lib/libfastcommon.so
ln -s /usr/lib64/libfdfsclient.so /usr/local/lib/libfdfsclient.so ln -s /usr/lib64/libfdfsclient.so /usr/lib/libfdfsclient.so
第三步:安装FastDFS
1、进入到cd /usr/local/software下,解压FastDFS文件
unzip fastdfs-5.11.zip
cd fastdfs-5.11/
安装
# ./make.sh
编译

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。