OS/Linux
Wowza 리눅스에 설치
파란크리스마스
2024. 2. 3. 22:11
728x90
출처
jdk 설치
~/.profile 에 JAVA_HOME, PATH 추가
export JAVA_HOME=/Server/java/jdk1.8.0_131
export PATH=$PATH:$JAVA_HOME/bin
java 버전 확인
bluesanta@bluesanta-desktop:~$ java -version
java version "1.8.0_131"
Java(TM) SE Runtime Environment (build 1.8.0_131-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.131-b11, mixed mode)
Wowza 설치 파일 실행 권한 부여
bluesanta@bluesanta-desktop:~$ chmod u+x WowzaStreamingEngine-4.8.23+2-linux-x64-installer.run
Wowza 설치
Wowza 설치 파일 실행
bluesanta@bluesanta-desktop:~$ sudo ./WowzaStreamingEngine-4.8.23+2-linux-x64-installer.run
----------------------------------------------------------------------------
Welcome to the Wowza Streaming Engine Setup Wizard.
----------------------------------------------------------------------------
Please read the following License Agreement. You must accept the terms of this
agreement before continuing with the installation.
Press [Enter] to continue:
Wowza 라이센스 확인
[Enter] 키를 계속 눌러서 라이센스 내용 전부 조회
Wowza(tm) Media Systems, LLC
END USER LICENSE AGREEMENT
for
Wowza Streaming Engine(tm) 4 Software
And Related Software Products and Services
Thank you for choosing software from Wowza Media Systems, LLC. This End
User License Agreement (this "EULA") is a legally binding license agreement between
you and Wowza Media Systems, LLC that describes your rights to use software and
services provided by Wowza, including Wowza Streaming Engine software and technical
support and maintenance for that software.
This EULA is divided into various sections, including the following License
Overview that provides a summary of the EULA. Please read this EULA carefully and in
its entirety before clicking "I AGREE", installing, or using Wowza Streaming Engine
software or other software provided to you by Wowza.
BY SELECTING "I AGREE" DURING INSTALLATION OF THE SOFTWARE,
Press [Enter] to continue:
Wowza 라이센스 동의
13.2 U.S. Government Licensing of Wowza Software. You agree that when
licensing the Software for acquisition by the U.S. Government, or any contractor
therefore, you will license consistent with the policies set forth in 48 C.F.R.
Section
12.212 (for civilian agencies) and 48 C.F.R. Sections 227-7202-1 and 227-7202-4
(for
the Department of Defense). For U.S. Government End Users, Wowza agrees to
comply
with all applicable equal opportunity laws including, if appropriate, the
Press [Enter] to continue:
provisions of
Executive Order 11246, as amended, Section 402 of the Vietnam Era Veterans
Readjustment Assistance Act of 1974 (38 USC 4212), and Section 503 of the
Rehabilitation Act of 1973, as amended, and the regulations at 41 CFR Parts 60-1
through 60-60, 60-250, and 60-741. The affirmative action clause and regulations
contained in the preceding sentence shall be incorporated by reference in this Agreement.
Wowza Streaming Engine 4 EULA (20201204)
Press [Enter] to continue:
Do you accept this agreement? [y/n]: y
라이센스 번호 입력
----------------------------------------------------------------------------
Enter License Key
Please enter your Wowza Streaming Engine License Key.
Format: XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX[-XXXXXXXXXXXX]
License Key: []: XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
관리자 계정생성
----------------------------------------------------------------------------
Create Administrator Account
Enter a user name and password that will be used to manage Wowza Streaming
Engine.
User Name: []: admin
Password: :1q@w3e4r
Confirm Password: :1q@w3e4r
Note: User Name and Password are case-sensitive.
----------------------------------------------------------------------------
Startup Configuration
Start Wowza Streaming Engine automatically [Y/n]: Y
Wowza 설치
----------------------------------------------------------------------------
Startup Configuration
Start Wowza Streaming Engine automatically [Y/n]: Y
Clear the check box to start Wowza Streaming Engine manually.
----------------------------------------------------------------------------
Setup is now ready to begin installing Wowza Streaming Engine on your computer.
Do you want to continue? [Y/n]: Y
----------------------------------------------------------------------------
Please wait while Setup installs Wowza Streaming Engine on your computer.
Installing
0% ______________ 50% ______________ 100%
#########################################
----------------------------------------------------------------------------
Setup has finished installing Wowza Streaming Engine on your computer.
Wowza 관리 페이지 접속 허용 설정
설정파일 Server.xml에 IPWhiteList에 IP를 추가하거나 모두 허용( * )으로 설정
bluesanta@bluesanta-desktop:~$ sudo vi /usr/local/WowzaStreamingEngine/conf/Server.xml
<!--
<IPWhiteList>127.0.0.1</IPWhiteList>^M
-->
<IPWhiteList>*</IPWhiteList>
Wowza 서비스 재시작
bluesanta@bluesanta-desktop:~$ sudo systemctl restart WowzaStreamingEngine.service
bluesanta@bluesanta-desktop:~$ sudo systemctl restart WowzaStreamingEngineManager.service