Linux下搭建Nginx+nginx

Stella981
• 阅读 832

在完成了《ffmpeg音视频同步的几种策略》音视频同步后,我们的播放器项目就差不多可以正常使用了。剩下的功能比如说暂停、播放、seek等这些对于一个直播项目来说并不需要,所以我们把这些功能先延缓,后面有时间再介绍学习。

从今天开始我们将开始直播项目采集端的系列学习。所谓工欲善其事必先利其器,今天我们就在先搭建好我们的流媒体服务器。

今天我们使用的是linux系统为Centos 64位服务器。

下载安装nginx

首先新建nginx目录存放nginx:

mkdir nginx

然后进入nginx目录分别下载nginx及nginx-rtmp-module:

进入nginx目录cd nginx下载nginxwget http://nginx.org/download/nginx-1.17.9.tar.gz下载nginx-rtmp-modulehttps://codeload.github.com/arut/nginx-rtmp-module/tar.gz/v1.2.1

解压

// 解压 nginxtar xvf nginx-1.17.9.tar.gz// 解压nginx-rtmp-moduletar 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_moduleoption, or install the PCRE library into the system, or build the PCRE librarystatically from the source with nginx by using --with-pcre=<path> option.

这是因为没有安装pcre导致的,我们使用yum包管理器安装一下pcre:

yum -y install pcre-devel

安装成功之后再执行./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 libraryinto the system, or build the OpenSSL library statically from the sourcewith nginx by using --with-openssl=<path> 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

启动服务器后在浏览器输入你服务器的ip:端口如果可以访问则说明配置成功了。

停止nginx服务器:

 bin/sbin/nginx -s  stop

使用ffmpeg测试推流与拉流

如果你还不知道如何安装ffmpeg命令行环境,建议你参考这篇文章《手把手教你搭建ffmpeg命令行运行环境》

执行推流命令:

ffmpeg -re -i 需要推流的视频文件 -vcodec libx264 -acodec aac -f flv rtmp://服务器ip:1935/myapp/videopushTest

推流成功后,我们使用ffplay命令测试能否播放:

ffplay rtmp://服务器ip:1935/myapp/videopushTest

如果能正常播放,说明我们的流媒体服务器就搭建成功啦。

最后如果你对音视频开发感兴趣可扫码关注

Linux下搭建Nginx+nginx

本文分享自微信公众号 - 思想觉悟(ChuanFlyer)。
如有侵权,请联系 support@oschina.cn 删除。
本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一起分享。

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Wesley13 Wesley13
3年前
Java获得今日零时零分零秒的时间(Date型)
publicDatezeroTime()throwsParseException{    DatetimenewDate();    SimpleDateFormatsimpnewSimpleDateFormat("yyyyMMdd00:00:00");    SimpleDateFormatsimp2newS
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这