前言
因測試須要配置IPv6環境下的rtmp流媒體服務器,想着直接使用docker鏡像,搜索對比後發現這個能知足要求:nginx
https://hub.docker.com/r/tiangolo/nginx-rtmpgit
但後來確認目標服務器是CentOS 6.5,沒辦法使用docker,因此就將原做者的dockerfile轉換成了shell,方便在沒有docker環境的機器上使用。github
思路整理:測試環境部署軟件的時候能夠優先考慮docker方案,就算是本身從無到有部署,dockerfile也會是最好的參考。docker
碰到的問題
- 依賴安裝問題: 編譯nginx的時候提示PCRE庫找不到,所以加入了安裝依賴的步驟,不一樣的系統的系統還可能會提示其餘錯誤,須要按提示安裝依賴庫。
- nginx rtmp配置問題:一開始是照搬原做者的配置文件(端口同樣,應用同樣),但實際測試中發現使用IPv4和IPv6地址推同一個流名稱時,會有如下的現象:
- 客戶端不會報錯。
- 拉流的時候會混亂,可能只有其中一個地址能拉到流,而且不一樣時間拉的流可能會錯亂(IPv4地址拉取到IPv6地址推過來的流)。
- 對於以上兩個現象,可能須要更近一步分析才能知道緣由了。所以這裏爲了不混淆,直接配置了兩個服務,分別配置成不用的端口及應用名。
- CentOS6.5環境下ipv6網絡有單獨的防火牆服務進行控制,服務名爲ip6tables。ip6tables服務中止後網絡終於通了, IPv6地址的服務探測也能夠使用telnet ip port命令(windows)
腳本及配置
原做者提供nginx配置文件
1 worker_processes auto; 2 rtmp_auto_push on; 3 events {} 4 rtmp { 5 server { 6 listen 1935; 7 listen [::]:1935 ipv6only=on; 8 application live { 9 live on; 10 record off; 11 } 12 } 13 }
最終安裝配置腳本
1 #!/bin/bash 2 # This shell is to install Nginx with nginx-rtmp-module installed and configrued for RTMP Streaming under IPV6 3 4 # Versions of Nginx and nginx-rtmp-module to use 5 NGINX_VERSION=nginx-1.15.0 6 NGINX_RTMP_MODULE_VERSION=1.2.1 7 8 # Download and decompress Nginx 9 mkdir -p /tmp/build/nginx 10 cd /tmp/build/nginx 11 wget --no-check-certificate -O ${NGINX_VERSION}.tar.gz https://nginx.org/download/${NGINX_VERSION}.tar.gz 12 tar -zxf ${NGINX_VERSION}.tar.gz 13 14 # Download and decompress RTMP module 15 mkdir -p /tmp/build/nginx-rtmp-module 16 cd /tmp/build/nginx-rtmp-module 17 wget --no-check-certificate -O nginx-rtmp-module-${NGINX_RTMP_MODULE_VERSION}.tar.gz https://github.com/arut/nginx-rtmp-module/archive/v${NGINX_RTMP_MODULE_VERSION}.tar.gz 18 tar -zxf nginx-rtmp-module-${NGINX_RTMP_MODULE_VERSION}.tar.gz 19 cd nginx-rtmp-module-${NGINX_RTMP_MODULE_VERSION} 20 21 # Install dependencies 22 yum -y install pcre-devel openssl openssl-devel 23 24 # Build and install Nginx 25 # The default puts everything under /usr/local/nginx, so it's needed to change 26 # it explicitly. Not just for order but to have it in the PATH 27 cd /tmp/build/nginx/${NGINX_VERSION} 28 ./configure \ 29 --sbin-path=/usr/local/sbin/nginx \ 30 --conf-path=/etc/nginx/nginx.conf \ 31 --error-log-path=/var/log/nginx/error.log \ 32 --pid-path=/var/run/nginx/nginx.pid \ 33 --lock-path=/var/lock/nginx/nginx.lock \ 34 --http-log-path=/var/log/nginx/access.log \ 35 --http-client-body-temp-path=/tmp/nginx-client-body \ 36 --with-http_ssl_module \ 37 --with-threads \ 38 --with-ipv6 \ 39 --add-module=/tmp/build/nginx-rtmp-module/nginx-rtmp-module-${NGINX_RTMP_MODULE_VERSION} 40 make && make install 41 mkdir /var/lock/nginx 42 rm -rf /tmp/build 43 44 # Config RTMP Streaming and IPV6 for Nginx 45 cat >/etc/nginx/nginx.conf <<EOF 46 worker_processes auto; 47 rtmp_auto_push on; 48 events {} 49 rtmp { 50 server { 51 listen 1934; 52 application live4 { 53 live on; 54 record off; 55 } 56 } 57 server { 58 listen [::]:1936 ipv6only=on; 59 application live6 { 60 live on; 61 record off; 62 } 63 } 64 } 65 EOF 66 67 #Show Nginx Version 68 nginx -V