centos7安装srs
时间: 2023-10-21 13:04:59 浏览: 177
中标麒麟(Centos)V7.0安全系统SRS推流服务器离线安装包.rar
4星 · 用户满意度95%
要在CentOS 7上安装SRS(Simple RTMP Server),可以按照以下步骤进行操作:
1. 更新系统:
```
sudo yum update
```
2. 安装必需的依赖库和工具:
```
sudo yum install epel-release
sudo yum install git gcc gcc-c++ make autoconf automake libtool
sudo yum install ffmpeg ffmpeg-devel
```
3. 克隆 SRS 代码仓库:
```
git clone https://github.com/ossrs/srs.git
cd srs/trunk
```
4. 编译和安装 SRS:
```
./configure && make
sudo make install
```
5. 运行 SRS 服务器:
```
sudo service srs start
```
6. 验证 SRS 是否成功安装:
在浏览器中访问 `http://localhost:8080`,如果看到 SRS 的管理页面,则说明安装成功。
阅读全文