#centos6.6安裝搭建nginx+ffmpeg流媒體服務(wù)器 #此系統(tǒng)實現(xiàn)了視頻文件的直播及緩存點播,并支持移動端播放(支持Apple和Android端) #系統(tǒng)需要自行安裝,流媒體服務(wù)器配置完成之后桌面可能掛掉,以后維護需要進命令行進行操作 #必須按照以下步驟配置流媒體服務(wù)器,每一步必須要完成才可以配置成功 # "#"是文檔注釋內(nèi)容 "--"也是注釋內(nèi)容 # 1.首先設(shè)置服務(wù)器IP地址,并更改為自動連接 # 2.修改系統(tǒng)時間和時區(qū)為當前時間 # 3.關(guān)閉防火墻 #在控制臺進行如下操作(需要登錄root賬號): 安裝所有的依賴包: yum -y install gcc glibc glibc-devel make nasm pkgconfig lib-devel openssl-devel expat-devel gettext-devel libtool mhash.x86_64 perl-Digest-SHA1.x86_64 #在usr/local/目錄下面新建nginx文件夾 #打開命令窗口 #輸入: mkdir soft-source cd soft-source #安裝git wget http://codemonkey.org.uk/projects/git-snapshots/git/git-latest.tar.xz xz -d git-latest.tar.xz tar xf git-latest.tar #cd進入的是當前安裝的日期 cd git-2014-12-29 autoconf ./configure make make install git --version --查看git的版本 cd .. #安裝zlib wget http://zlib.net/zlib-1.2.8.tar.gz tar -zxvf zlib-1.2.8.tar.gz cd zlib-1.2.8 ./configure make make install cd .. #安裝pcre wget http://exim.mirror.fr/pcre/pcre-8.12.tar.gz tar zxvf pcre-8.12.tar.gz cd pcre-8.12 ./configure make # make的時候如果出現(xiàn)錯誤: # libtool: compile: unrecognized option `-DHAVE_CONFIG_H' # libtool: compile: Try `libtool --help' for more information. # make[1]: *** [pcrecpp.lo] Error 1 # make[1]: Leaving directory `/home/mfcai/pcre-8.10' # make: *** [all] Error 2 # make install 執(zhí)行:yum install gcc gcc-c++ kernel-devel 然后:./configure make make install cd .. #安裝yadmi給flv視頻添加關(guān)鍵幀 wget http://sourceforge.net/projects/yamdi/files/yamdi/1.4/yamdi-1.4.tar.gz tar xzvf yamdi-1.4.tar.gz cd yamdi-1.4 make make install cd .. #安裝OpenSSL wget http://www.openssl.org/source/openssl-1.0.1c.tar.gz tar -zxvf openssl-1.0.1c.tar.gz cd openssl-1.0.1c ./config make make install cd .. #安裝ffmpeg及其依賴包: yum install autoconf automake gcc gcc-c++ git libtool make nasm pkgconfig&n