今天我们使用的是linux系统为Centos 64位服务器。
下载安装nginx
首先新建nginx目录存放nginx:
mkdir nginx
1
然后进入nginx目录分别下载nginx及nginx-rtmp-module:
进入nginx目录
cd nginx
下载nginx
wget http://nginx.org/download/nginx-1.17.9.tar.gz
下载nginx-rtmp-module
https://codeload.github.com/arut/nginx-rtmp-module/tar.gz/v1.2.1
解压
// 解压 nginx
tar xvf nginx-1.17.9.tar.gz
// 解压nginx-rtmp-module
tar xvf v1.2.1
编译nginx
// 进入nginx下载目录
cd nginx-1.17.9
#执行configure生成makefile文件 --add-module 指向rtmp模块目录
./configure --prefix=./bin --add-module=../nginx-rtmp-module-1.2.1
发现报错了:
./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre= option.
这是因为没有安装pcre导致的,我们使用yum包管理器安装一下pcre:
yum -y install pcre-devel
1
安装成功之后再执行./configure --prefix=./bin --add-module=../nginx-rtmp-module-1.2.1试下,发现还是报错:
./configure: error: SSL modules require the OpenSSL library.
You can either do not enable the modules, or install the OpenSSL library
into the system, or build the OpenSSL library statically from the source
with nginx by using --with-openssl= option.
这是因为缺少了openssl,我们安装OpenSSL:
yum -y install openssl openssl-devel
安装成功之后再执行./configure --prefix=./bin --add-module=../nginx-rtmp-module-1.2.1试下,成功了。
接着运行make install安装即可。
配置nginx
首先进入安装好的配置目录:
cd bin/conf
然后执行vim nginx.conf修改nginx.conf文件为:
user root;
worker_processes 1;
error_log logs/error.log debug;
events {
worker_connections 1024;
}
rtmp {
server {
#注意端口占用
listen 1935;
application myapp {
live on;
#丢弃闲置5s的连接
drop_idle_publisher 5s;
}
}
}
http {
server {
#注意端口占用
listen 8081;
location /stat {
rtmp_stat all;
rtmp_stat_stylesheet stat.xsl;
}
location /stat.xsl {
#注意目录
root /root/nginx/nginx-rtmp-module-1.2.1/;
}
location /control {
rtmp_control all;
}
location /rtmp-publisher {
#注意目录
root /root/nginx/nginx-rtmp-module-1.2.1/test;
}
location / {
#注意目录
root /root/nginx/nginx-rtmp-module-1.2.1/test/www;
}
}
}
启动与停止
启动nginx服务器:
bin/sbin/nginx
1
启动服务器后在浏览器输入你服务器的ip:端口如果可以访问则说明配置成功了。
停止nginx服务器:
bin/sbin/nginx -s stop
1
使用ffmpeg测试推流与拉流
如果你还不知道如何安装ffmpeg命令行环境,建议你参考这篇文章《手把手教你搭建ffmpeg命令行运行环境》
执行推流命令:
ffmpeg -re -i 需要推流的视频文件 -vcodec libx264 -acodec aac -f flv rtmp://服务器ip:1935/myapp/videopushTest
1
推流成功后,我们使用ffplay命令测试能否播放:
ffplay rtmp://服务器ip:1935/myapp/videopushTest
1
如果能正常播放,说明我们的流媒体服务器就搭建成功啦。