Problem with JRE

For help and support with Universal Media Server
Forum rules
Please make sure you follow the Problem Reporting Guidelines before posting if you want a reply
Post Reply
xsnoopy
Posts: 1
Joined: Thu Jul 28, 2022 1:52 am

Problem with JRE

Post by xsnoopy »

Hi all,

I get the following error when starting UMS.

Code: Select all

ums    | INFO  01:57:16.195 [main] :   XBMC
ums    | INFO  01:57:16.195 [main] :   Xbox 360
ums    | INFO  01:57:16.195 [main] :   Yamaha AV Receiver
ums    | INFO  01:57:16.195 [main] Checking the fontconfig cache in the background, this can take two minutes or so.
ums    | INFO  01:57:16.266 [main] Configuration saved to "/root/.config/UMS/UMS.conf"
ums    | INFO  01:57:16.365 [main] Transcoding engine "FFmpeg Audio" is available
ums    | INFO  01:57:16.428 [main] Transcoding engine "MEncoder Video" is available
ums    | INFO  01:57:16.429 [main] Transcoding engine "FFmpeg Video" is available
ums    | WARN  01:57:16.430 [main] Transcoding engine "VLC Video" is not available
ums    | INFO  01:57:16.433 [main] FFmpeg web filters "/root/.config/UMS/ffmpeg.webfilters" not found, web filters ignored
ums    | INFO  01:57:16.434 [main] Transcoding engine "FFmpeg Web Video" is available
ums    | INFO  01:57:16.435 [main] Transcoding engine "MEncoder Web Video" is available
ums    | WARN  01:57:16.435 [main] Transcoding engine "VLC Web Video" is not available
ums    | INFO  01:57:16.440 [main] Transcoding engine "tsMuxeR Video" is available
ums    | INFO  01:57:16.441 [main] Transcoding engine "tsMuxeR Audio" is available
ums    | WARN  01:57:16.441 [main] Transcoding engine "VLC Web Audio (Legacy)" is not available
ums    | WARN  01:57:16.442 [main] Transcoding engine "VLC Web Video (Legacy)" is not available
ums    | WARN  01:57:16.444 [main] Transcoding engine "DCRaw" is not available
ums    | INFO  01:57:16.444 [main] Transcoding engine "youtube-dl" is available
ums    | INFO  01:57:16.497 [main] Using the following UUID configured in UMS.conf: 0e884bb8-5ee6-4008-903a-12ebf66737a2
ums    | INFO  01:57:16.837 [main] Web interface is available at: http://172.23.0.14:9001
ums    | INFO  01:57:16.878 [main] Checking shared folder: "/usr/src/ums"
ums    | INFO  01:57:16.879 [main] Checking shared folder: "/root"
ums    | INFO  01:57:18.015 [main] Universal Media Server is now available for renderers to find
ums    | #
ums    | # A fatal error has been detected by the Java Runtime Environment:
ums    | #
ums    | #  SIGSEGV (0xb) at pc=0x000000000000b8e6, pid=1, tid=110
ums    | #
ums    | # JRE version: OpenJDK Runtime Environment (17.0.3+7) (build 17.0.3+7-alpine-r2)
ums    | # Java VM: OpenJDK 64-Bit Server VM (17.0.3+7-alpine-r2, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, linux-amd64)
ums    | # Problematic frame:
ums    | # C  0x000000000000b8e6
ums    | #
ums    | # Core dump will be written. Default location: Core dumps may be processed with "/usr/share/apport/apport -p%p -s%s -c%c -d%d -P%P -u%u -g%g -- %E" (or dumping to /usr/src/ums/core.1)
ums    | #
ums    | # An error report file with more information is saved as:
ums    | # /usr/src/ums/hs_err_pid1.log
ums    | #
ums    | # If you would like to submit a bug report, please visit:
ums    | #   https://gitlab.alpinelinux.org/alpine/aports/issues
ums    | # The crash happened outside the Java Virtual Machine in native code.
ums    | # See problematic frame for where to report the bug.
ums    | #

This is the output when I start UMS with Docker on Linux.

My docker-compose.yml

Code: Select all

version: '2.0'

services:
  ums:
    image: universalmediaserver/ums
    container_name: ums
    restart: always
    networks:
      - home
    ports:
      - 1044:1044
      - 5001:5001
      - 9001:9001
    volumes:
      - /home/user/tmpssd/:/root/media
      - ./UMS:/root/.config/UMS
#      - ./Log:/usr/src/ums/

networks:
  home:
    external:
      name: home

Post Reply