centos 7搭建直播間第二天版

2021-10-02 23:33:09 字數 2615 閱讀 9543

[root@tecent ~]# yum install readline-devel pcre-devel openssl-devel -y

[root@tecent ~]# yum install wget perl gcc unzip -y

[root@tecent ~]# wget 

[root@tecent ~]# tar -xvf openresty-1.11.2.4.tar.gz

[root@tecent ~]# mv openresty-1.11.2.4 openresty

[root@tecent ~]# cd openresty

[root@tecent ~]# ./configure

[root@tecent ~]# make && make install

[root@tecent ~]# ln -s /usr/local/openresty/nginx/sbin/nginx /usr/sbin/nginx

[root@tecent ~]# cd /home

[root@tecent ~]# wget

[root@tecent ~]# unzip master.zip

[root@tecent ~]# cd openresty

[root@tecent ~]# ./configure --add-module=/home/nginx-rtmp-module-master

[root@tecent ~]# make

[root@tecent ~]# cp /root/openresty/build/nginx-1.11.2/objs/nginx /usr/local/openresty/nginx/sbin

配置檔案 /usr/local/openresty/nginx/conf/nginx.conf

#user  nobody;

worker_processes 1;

#error_log logs/error.log;

#error_log logs/error.log notice;

#error_log logs/error.log info;

#pid logs/nginx.pid;

events

rtmp

live on;

hls on; #這個引數把直播伺服器改造成實時回放伺服器。

hls_fragment 6s; #設定hls片段長度。

hls_playlist_length 60s;

hls_continuous on; #連續模式。

hls_cleanup on; #對多餘的切片進行刪除。

hls_nested on; #巢狀模式。

#}}

測試:

[root@tecent ~]# nginx -t    #檢查配置檔案

[root@tecent ~]# nginx #啟動服務

centos 7搭建直播間

yum y install gcc gcc c autoconf automake make yum y install zlib zlib devel openssl openssl devel pcre pcre devel root tecent cd usr local root tecen...

CentOS打卡第二天

這篇文章講解centos介面的切換。centos預設安裝的時候的介面類似於windows的圖形介面,那麼怎樣才能將其轉化成只有終端的高大上介面呢。這個主要是修改etc下的inittab檔案 第一步 開啟終端,輸入 vi etc inittab 第二步 修改inittab檔案的內容 將啟動方式5改為3...

學習centos第二天 shell

一 shell 是linux系統中執行的一種特殊程式 是在使用者和核心之間充當翻譯官 bash 是linux系統中預設使用的shell程式,檔案位於 bin bash 二 linux命令分為內部和外部 用which檢視命令在那條路徑下,例如which ifconfig ifconfig是外部命令,c...