在腾讯云上部署RMTP服务器

Posted 拖孩_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在腾讯云上部署RMTP服务器相关的知识,希望对你有一定的参考价值。

0、 配置:centos7.9 64bit

1、 下载必要库

yum -y install wget
yum -y install gcc gcc-c++
yum -y install openssl
yum -y install openssl-devel
yum -y install pcre
yum -y install pcre-devel
yum -y install zlib
yum -y install git

2、 克隆rtmp模板库以及nginx安装

获取nginx软件压缩包并解压

cd /usr/local/
git clone https://github.com/arut/nginx-rtmp-module.git
wget http://nginx.org/download/nginx-1.20.1.tar.gz
tar -zxvf nginx-1.20.1.tar.gz

安装nginx

cd /usr/local/nginx-1.20.1/
  • 配置configure文件
./configure --prefix=/usr/local/src/nginx --with-http_stub_status_module --with-http_gzip_static_module --with-http_realip_module --with-http_sub_module --with-http_ssl_module  --add-module=/usr/local/nginx-rtmp-module  --with-http_ssl_module
  • 下图代表成功

  • 配置nginx.config文件

make
make install
vim /usr/local/src/nginx/conf/nginx.conf
  • 配置路径(在export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE HISTCONTROL下添加)
vim /etc/profile

#NGINX_HOME
export NGINX_HOME=/usr/local/src/nginx
export PATH=$PATH:$NGINX_HOME/sbin
source /etc/profile
nginx -v
  • 输出为:nginx version: nginx/1.20.1
  • 启动nginx
nginx
  • 打开浏览器输入服务器ip看到下面页面则配置成功

  • (nginx重启命令)

nginx -s reload
  • 查看是否使用rtmp-module
nginx -V

配置端口

iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 1935 -j ACCEPT
  • 配置nginx应用的configure
vim /usr/local/src/nginx/conf/nginx.conf

rtmp 
    server 
        listen 1935;            #监听端口,若被占用,可以更改
        chunk_size 4000;        #上传flv文件块儿的大小
        application test       #创建一个叫test的应用
             live on;           #开启实时
             hls on;            #开启hls
             hls_path /usr/local/src/nginx/html/test;
             #rtmp推流请求路径,文件存放路径
             hls_fragment 5s;   #每个文件包含5s的视频内容 
        
    

  • 重启nginx查看端口是否配置成功
nginx -s reload
lsof -i tcp:1935

  • 用telnet访问1935端口,然后在服务器再次输入lsof -i tcp:1935
#cmd
Telnet ip port 
#bash
lsof -i tcp:1935

3、 推拉流测试

  • 推流使用obs
    服务器地址格式为rtmp://ip_address/appname
  • 拉流使用potplayer
    拉流地址为
    http://ip_address/appname/stream.m3u8

4、 参考链接:

搭建基于nginx的rtmp直播服务器

以上是关于在腾讯云上部署RMTP服务器的主要内容,如果未能解决你的问题,请参考以下文章

在腾讯云上部署RMTP服务器

在腾讯云上部署RMTP服务器

JavaWeb项目上云教程(Java项目在腾讯云上部署操作教程)

JavaWeb项目上云教程(Java项目在腾讯云上部署操作教程)

Elastic:在腾讯云上部署 Elasticsearch 集群

Elastic:在腾讯云上部署 Elasticsearch 集群