OvenMediaEngine Enterprise
한국어
한국어
  • About
    • Introduction
    • Release Notes
      • 0.18.2
      • 0.18.1
      • 0.18.0
      • 0.17.3
      • 0.17.2
      • 0.17.1
      • 0.17.0
      • 0.16.8
      • 0.16.7
      • 0.16.6
      • 0.16.5
      • 0.16.4
  • Installation
    • Getting Started
      • Getting Started with Ubuntu
      • Getting Started with RHEL
      • Getting Started with Docker
    • Configuration Structure Overview
  • Web Console
    • Getting Started with Web Console
    • Web Console Overview
      • Sign In
      • Change Password
      • Web Console Home
      • Stream List
        • Managed and Instant Streams
        • Scheduled Channels | 0.16.4.0+
        • Multiplex Channels | 0.16.5.0+
      • Event Monitoring | 0.18.1.0+
        • Event Configuration
        • Event Specification
      • Web Console Publishing | 0.18.1.2+
      • Logs
      • Configuration Files
      • Restart
  • Web Console Settings
    • Server Settings
    • Live Sources (Ingress Protocols) Settings
    • ABR and Transcoding Settings
    • Streaming (Egress Protocols) Settings
    • TLS Encryption Settings | 0.14.0.0+
    • Access Control Settings
    • Thumbnail Settings | 0.15.7.0+
    • Recording Settings | 0.16.5.0+
    • Push Publishing Settings | 0.15.14.0+
    • REST API Settings | 0.11.0.0+
    • Alert Settings | 0.15.11.0+
  • CDN Compatibility
    • Origin Server Redundancy
    • Origin Cache Control
  • Protection
    • RTMP Authentication | 0.17.2.0+
    • Proxy Protocol Integration | 0.16.6.2+
    • Digital Rights Management (DRM)
      • OvenMediaEngine Configuration for DRM | 0.16.0.0+
      • PallyCon DRM Configuration | 0.16.4.0+
  • Performance
    • Hardware-Accelerated Video Encoding | 0.16.4.0+
  • Event Insertion
    • Insert SEI into H.264 (AVC) Streams | v0.18.0.0+
    • Insert AMF0 messages in RTMP Push Publisher | 0.17.3.0+
  • Monetization
    • Insert Ad Markers (EXT-X-CUE-OUT/EXT-X-CUE-IN) | v0.17.3.0+
    • Insert onCuePoint messages into YouTube Live | 0.17.3.0+
  • Advanced Management
    • Generate Audio PTS | 0.17.2.3+
    • API Storage | 0.17.0.0+
    • Restart Application | 0.17.0.0+
    • Record Delivery | 0.16.5.0+
    • Add Delay to the Stream
    • Control Default Playlist Creation
  • REST API
    • v2
      • Statistics
        • Current
Powered by GitBook
On this page
  • system.env 구성하기
  • 환경 변수
  • 관리자 비밀번호
  • 비밀번호 변경
  • 변경 내용 적용
  • Web Console 접속하기
  1. Web Console

Getting Started with Web Console

Web Console의 설정은 환경 변수 파일로 관리됩니다. systemctl start ovenstudio 명령어로 시작 시 다음 경로에서 환경 변수를 로드합니다.

/usr/share/ovenmediaengine/ovenstudio/system.env

ovenstudio는 OvenMediaEngine Enterprise가 제공하는 Web Console을 의미합니다.

system.env 구성하기

환경 변수 파일의 기본 구성은 다음과 같습니다.

OS_SERVER_PORT=8080

LOG_DIR=/var/log/ovenmediaengine/ovenstudio

JAVA_HOME=/usr/share/ovenmediaengine/ovenstudio/jvm/jdk-17.0.10+7-jre

Host IP 설정을 한 경우 다음 내용이 추가로 포함되어 있습니다.

  • OME_HOST_IP=Your.HOST.IP.Address

환경 변수

Env
Description

OS_SERVER_PORT

Web Console이 구동 될 서비스 포트: 8080

LOG_DIR

Web Console의 로그 저장 경로: /var/log/ovenmediaengine/ovenstudio

JAVA_HOME

JAVA 설치 경로: /usr/share/ovenmediaengine/ovenstudio/jvm/jdk-17.0.10+7-jre

OME_HOST_IP

OvenMediaEngine의 Host IP

직접 관리하는 다른 버전의 Java를 사용하고 싶은 경우, JAVA_HOME 경로를 변경한 후 Web Console을 재시작 하십시오.

  • JAVA 17 버전 이상

관리자 비밀번호

Web Console의 관리자 비밀번호는 파일로 관리됩니다. Web Console 시작 시 .admin-password 파일이 없는 경우 자동 생성되며 초기 비밀번호는 ovenstudio 입니다.

$ cat /usr/share/ovenmediaengine/ovenstudio/conf/.admin-password
ovenstudio
$

비밀번호 변경

다음과 같이 .admin-password 파일을 직접 수정하여 비밀번호를 변경 할 수 있습니다. 변경된 비밀번호는 Web Console의 재시작 없이 즉시 적용됩니다.

$ echo 'new-password' > /usr/share/ovenmediaengine/ovenstudio/conf/.admin-password
$ cat /usr/share/ovenmediaengine/ovenstudio/conf/.admin-password
new-password
$

Change Password 와 같이 UI를 통해 비밀번호를 변경 할 수도 있습니다.

변경 내용 적용

환경 변수가 변경된 경우 Web Console (ovenstudio)을 재시작 해야 해당 내용이 적용되며, 아래와 같은 명령어를 통해 Web Console을 재시작 할 수 있습니다.

$ sudo systemctl restart ovenstudio

Web Console 접속하기

사용자는 아래와 같은 URL 패턴을 통해 Web Console에 접속할 수 있습니다:

http://<OME_HOST_IP>:<OS_SERVER_PORT>
Env
Description

OME_HOST_IP

OvenMediaEngine Enterprise를 실행하는 서버의 IP 주소

OS_SERVER_PORT

Web Console이 구동 될 서비스 포트

PreviousConfiguration Structure OverviewNextWeb Console Overview