17011六、centos6.4下nginx和ftp搭建圖片服務器

1、須要的組件

圖片服務器兩個服務:php

Nginx(圖片訪問):

一、http服務:可使用nginx作靜態資源服務器。也可使用apache。推薦使用nginx,效率更高。html

二、反向代理 實現 負載均衡java

ftp服務(圖片上傳):

使用Linux作服務器,在linux中有個ftp組件vsftpd。linux

2、Nginx服務器搭建

1.安裝Nginx

要求安裝vmware虛擬機。nginx

Linux:CentOS6.4(32)c++

Nginx:1.8.0正則表達式

Vsftpd:須要在線安裝。算法

虛擬機以及Linux安裝很簡單此處略。apache

Linux的局域網IP爲:192.168.1.110vim

修改Linux的IP並當即生效的命令:

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. #切換root管理員用戶  
  2. [root@localhost ~]# su  
  3. password   
  4. #設置本機IP並當即生效     
  5. [root@localhost ~]# ifconfig eth0 192.168.1.110 netmask 255.255.255.0  

 

1.一、nginx安裝環境

 

 

nginx是C語言開發,建議在linux上運行,本教程使用Centos6.5做爲安裝環境。

n  gcc

         安裝nginx須要先將官網下載的源碼進行編譯,編譯依賴gcc環境,若是沒有gcc環境,須要安裝gcc:yum install gcc-c++

n  PCRE

         PCRE(PerlCompatible Regular Expressions)是一個Perl庫,包括 perl 兼容的正則表達式庫。nginx的http模塊使用pcre來解析正則表達式,因此須要在linux上安裝pcre庫。

 

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost ~]#yum install -y pcre pcre-devel  

 

注:pcre-devel是使用pcre開發的一個二次開發庫。nginx也須要此庫。

n  zlib

         zlib庫提供了不少種壓縮和解壓縮的方式,nginx使用zlib對http包的內容進行gzip,因此須要在linux上安裝zlib庫。

 

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost ~]#yum install -y zlib zlib-devel  

 

n  openssl

         OpenSSL是一個強大的安全套接字層密碼庫,囊括主要的密碼算法、經常使用的密鑰和證書封裝管理功能及SSL協議,並提供豐富的應用程序供測試或其它目的使用。

         nginx不只支持http協議,還支持https(即在ssl協議上傳輸http),因此須要在linux安裝openssl庫。

 

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost ~]#yum install -y openssl openssl-devel  

 

 

1.二、把nginx安裝包nginx-1.8.0.tar.gz上傳到服務器。

 

在secureCRT打開sftp會話框,上傳文件

使用put/get命令 或者直接拖拽文件

1.三、解壓縮(在安裝包所在目錄執行)

 

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost ~]# tar -zxvf nginx-1.8.0.tar.gz  

執行下面的命令建立makefile

 

 

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. ./configure \  
  2.   
  3. --prefix=/usr/local/nginx \  
  4.   
  5. --pid-path=/var/run/nginx/nginx.pid \  
  6.   
  7. --lock-path=/var/lock/nginx.lock \  
  8.   
  9. --error-log-path=/var/log/nginx/error.log \  
  10.   
  11. --http-log-path=/var/log/nginx/access.log \  
  12.   
  13. --with-http_gzip_static_module \  
  14.   
  15. --http-client-body-temp-path=/var/temp/nginx/client \  
  16.   
  17. --http-proxy-temp-path=/var/temp/nginx/proxy \  
  18.   
  19. --http-fastcgi-temp-path=/var/temp/nginx/fastcgi \  
  20.   
  21. --http-uwsgi-temp-path=/var/temp/nginx/uwsgi \  
  22.   
  23. --http-scgi-temp-path=/var/temp/nginx/scgi  

注意:上邊將臨時文件目錄指定爲/var/temp/nginx,須要在/var下建立temp及nginx目錄

 

 

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@bogon nginx-1.8.0]# mkdir /var/temp/nginx -p  

 

1.五、編譯安裝

 

編譯:

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost nginx-1.8.0]# make  

安裝:

 

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost nginx-1.8.0]# make  install  

安裝成功之後進入安裝目錄(建立makedir時指定的」--prefix=/usr/local/nginx \「)

 

 

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost nginx-1.8.0]# cd /usr/local/nginx/  


 

二、nginx運行

2.一、啓動nginx

 

 

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost nginx]# cd sbin  
  2. [root@localhost sbin]# ./nginx  


 

2.二、關閉

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost sbin]# ./nginx -s stop  

2.三、從新加載配置文件

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost sbin]# ./nginx -s reload  


2.四、關閉防火牆

 

1)關閉

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost sbin]# service iptables stop  
  2.   
  3. iptables: Flushing firewall rules:                         [  OK  ]  
  4.   
  5. iptables: Setting chains to policy ACCEPT: filter          [  OK  ]  
  6.   
  7. iptables: Unloading modules:                               [  OK  ]  

2)也能夠修改防火牆配置文件:

 

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost sbin]# vim /etc/sysconfig/iptables  
[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. //在倒數第二行加入80端口    
  2. -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT   

修改後須要重啓防火牆:

 

 

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost sbin]# service iptables restart  

3)另一種解決辦法

 

 

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost ]# /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT    
  2. [root@localhost ]# /etc/init.d/iptables save    
  3. [root@localhost ]# /etc/init.d/iptables restart   

 

2.五、訪問nginx服務

 

三、關於圖片服務器配置

進入配置文件目錄

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. cd /usr/local/nginx/conf/  

nginx的默認配置文件nginx.config

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. #user  nobody;  
  2. worker_processes  1;  
  3.   
  4. #error_log  logs/error.log;  
  5. #error_log  logs/error.log  notice;  
  6. #error_log  logs/error.log  info;  
  7.   
  8. #pid        logs/nginx.pid;  
  9.   
  10.   
  11. events {  
  12.     worker_connections  1024;  
  13. }  
  14.   
  15.   
  16. http {  
  17.     include       mime.types;  
  18.     default_type  application/octet-stream;  
  19.   
  20.     #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '  
  21.     #                  '$status $body_bytes_sent "$http_referer" '  
  22.     #                  '"$http_user_agent" "$http_x_forwarded_for"';  
  23.   
  24.     #access_log  logs/access.log  main;  
  25.   
  26.     sendfile        on;  
  27.     #tcp_nopush     on;  
  28.   
  29.     #keepalive_timeout  0;  
  30.     keepalive_timeout  65;  
  31.   
  32.     #gzip  on;  
  33.   
  34.     server {  
  35.         listen       80;  
  36.         server_name  localhost;  
  37.   
  38.         #charset koi8-r;  
  39.   
  40.         #access_log  logs/host.access.log  main;  
  41.   
  42.         location / {  
  43.             root   html;  
  44.             index  index.html index.htm;  
  45.         }  
  46.   
  47.         #error_page  404              /404.html;  
  48.   
  49.         # redirect server error pages to the static page /50x.html  
  50.         #  
  51.         error_page   500 502 503 504  /50x.html;  
  52.         location = /50x.html {  
  53.             root   html;  
  54.         }  
  55.   
  56.         # proxy the PHP scripts to Apache listening on 127.0.0.1:80  
  57.         #  
  58.         #location ~ \.php$ {  
  59.         #    proxy_pass   http://127.0.0.1;  
  60.         #}  
  61.   
  62.         # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000  
  63.         #  
  64.         #location ~ \.php$ {  
  65.         #    root           html;  
  66.         #    fastcgi_pass   127.0.0.1:9000;  
  67.         #    fastcgi_index  index.php;  
  68.         #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;  
  69.         #    include        fastcgi_params;  
  70.         #}  
  71.   
  72.         # deny access to .htaccess files, if Apache's document root  
  73.         # concurs with nginx's one  
  74.         #  
  75.         #location ~ /\.ht {  
  76.         #    deny  all;  
  77.         #}  
  78.     }  
  79.   
  80.   
  81.     # another virtual host using mix of IP-, name-, and port-based configuration  
  82.     #  
  83.     #server {  
  84.     #    listen       8000;  
  85.     #    listen       somename:8080;  
  86.     #    server_name  somename  alias  another.alias;  
  87.   
  88.     #    location / {  
  89.     #        root   html;  
  90.     #        index  index.html index.htm;  
  91.     #    }  
  92.     #}  
  93.   
  94.   
  95.     # HTTPS server  
  96.     #  
  97.     #server {  
  98.     #    listen       443 ssl;  
  99.     #    server_name  localhost;  
  100.   
  101.     #    ssl_certificate      cert.pem;  
  102.     #    ssl_certificate_key  cert.key;  
  103.   
  104.     #    ssl_session_cache    shared:SSL:1m;  
  105.     #    ssl_session_timeout  5m;  
  106.   
  107.     #    ssl_ciphers  HIGH:!aNULL:!MD5;  
  108.     #    ssl_prefer_server_ciphers  on;  
  109.   
  110.     #    location / {  
  111.     #        root   html;  
  112.     #        index  index.html index.htm;  
  113.     #    }  
  114.     #}  
  115.   
  116. }  

配置圖片服務器

方法1、在配置文件server{}中location /{} 修改配置:

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1.  #默認請求  
  2. location / {  
  3.    root  /home/ftpuser/www;#定義服務器的默認網站根目錄位置  
  4.    index index.html index.php index.htm;#定義首頁索引文件的名稱  
  5. }  

其中:/home/ftpuser/www;爲建立FTP服務帳戶ftpuser的根目錄下的www目錄

方法2、在http{}內配置新服務

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. server {  
  2.         listen       8080;  
  3.         server_name  localhost;  
  4.   
  5.         #charset utf-8;  
  6.   
  7.         #access_log  logs/host.access.log  main;  
  8.   
  9.         #默認請求  
  10.         location / {  
  11.             root  /home/ftpuser/www;#定義服務器的默認網站根目錄位置  
  12.             index index.html index.php index.htm;#定義首頁索引文件的名稱  
  13.            }  
  14.         }  

由於須要開始端口號8080,因此要在防火牆中開啓8080端口

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost ]# /sbin/iptables -I INPUT -p tcp --dport 8080 -j ACCEPT    
  2. [root@localhost ]# /etc/init.d/iptables save    
  3. [root@localhost ]# /etc/init.d/iptables restart   


3、FTP服務的安裝與啓動

一、安裝vsftpd組件

vsftpd組件爲Linux的FTP服務組件,安裝方式爲在線安裝。

[root@localhost ~]# yum -y install vsftpd

安裝完後,有/etc/vsftpd/vsftpd.conf 文件,是vsftp的配置文件。

二、添加一個ftp用戶

此用戶就是用來登陸ftp服務器用的。

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost ~]# useradd ftpuser  

 

這樣一個用戶建完,能夠用這個登陸,記得用普通登陸不要用匿名了。登陸後默認的路徑爲 /home/ftpuser.

爲這個ftp帳戶添加密碼

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost ~]# passwd ftpuser  

輸入兩次密碼後修改密碼。

三、 防火牆開啓21端口

由於ftp默認的端口爲21,而centos默認是沒有開啓的,因此要修改iptables文件

[root@localhost ~]# vim /etc/sysconfig/iptables

在行上面有22 -j ACCEPT 下面另起一行輸入跟那行差很少的,只是把22換成21,而後:wq保存。

還要運行下,重啓iptables

[java]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. [root@localhost ~]# service iptables restart  

四、 修改selinux

外網是能夠訪問上去了,但是發現無法返回目錄(使用ftp的主動模式,被動模式仍是沒法訪問),也上傳不了,由於selinux做怪了。

修改selinux:

執行如下命令查看狀態:

[root@localhost ~]# getsebool -a | grep ftp

allow_ftpd_anon_write --> off

allow_ftpd_full_access --> off

allow_ftpd_use_cifs --> off

allow_ftpd_use_nfs --> off

ftp_home_dir --> off

ftpd_connect_db --> off

ftpd_use_passive_mode --> off

httpd_enable_ftp_server --> off

tftp_anon_write --> off

執行上面命令,再返回的結果看到兩行都是off,表明,沒有開啓外網的訪問

[root@localhost ~]# setsebool -P allow_ftpd_full_access on [root@localhost ~]# setsebool -P ftp_home_dir on

這樣應該沒問題了(若是,仍是不行,看看是否是用了ftp客戶端工具用了passive模式訪問了,如提示Entering Passive mode,就表明是passive模式,默認是不行的,由於ftp passive模式被iptables擋住了,下面會講怎麼開啓,若是懶得開的話,就看看你客戶端ftp是否有port模式的選項,或者把passive模式的選項去掉。若是客戶端仍是不行,看看客戶端上的主機的電腦是否開了防火牆,關吧)

FileZilla的主動、被動模式修改:

菜單:編輯→設置


五、關閉匿名訪問

修改/etc/vsftpd/vsftpd.conf文件:

 

重啓ftp服務:

[root@localhost ~]# service vsftpd restart

六、 開啓被動模式

默認是開啓的,可是要指定一個端口範圍,打開vsftpd.conf文件,在後面加上

pasv_min_port=30000 pasv_max_port=30999

表示端口範圍爲30000~30999,這個能夠隨意改。改完重啓一下vsftpd

因爲指定這段端口範圍,iptables也要相應的開啓這個範圍,因此像上面那樣打開iptables文件。

也是在21上下面另起一行,更那行差很少,只是把21 改成30000:30999,而後:wq保存,重啓下iptables。這樣就搞定了。

七、設置開機啓動vsftpd ftp服務

[root@localhost ~]# chkconfig vsftpd on

4、部署驗證

在www下新建文件夾images,下面放一張圖片001.jpg

測試訪問:http://192.168.2.37/images/2017/01/16/1484562270619097.jpg

相關文章
相關標籤/搜索