上課筆記
  • 20190227
  • 20190227
  • 20190306
  • 20190306
  • 20190313
  • 20190320
  • 20190327
  • 20190327
  • 20190327
  • 20190417
  • 20190424
  • 20190501
  • 20190508
  • 20190515
  • 20190529
  • 20190605
  • 20190917
  • 20190917
  • 20190924
  • 20191001
  • 20191001
  • 20191008
  • 20191008
  • 20191015
  • 20191015
  • 20191022
  • 20191022
  • 20191029
  • 20191029
  • 20191105
  • 20191105
  • 20191119
  • 20191119
  • 20191203
  • 20191203
  • 20191210
  • 20191217
  • 20191217
  • 20191224
  • 20191224
Powered by GitBook
On this page

Was this helpful?

20191105

docker

Previous20191105Next20191119

Last updated 5 years ago

Was this helpful?

需要開兩台虛擬機,兩台皆需要做以下步驟:
yum groupinstall "Development Tools"
systemctl stop firewalld
systemctl disable firewalld
cat/etc/selinux/config or gedit /etc/selinux/config
check [SELINUX=disabled] and reboot
R1 terminal to do this :
mkdir ~/temp
cd ~/temp
wget http://nginx.org/download/nginx-1.9.9.tar.gz
wget https://github.com/arut/nginx-rtmp-module/archive/master.zip
yum install unzip
tar -xvf nginx-1.9.9.tar.gz
unzip master.zip
cd nginx-1.9.9
./configure --add-module=../nginx-rtmp-module-master/
make
sudo make install

在CentOS 7上設定Nginx-RTMP - IT閱讀
Logo