尝试启动 plex 时出错

尝试启动 plex 时出错

运行时:

sudo service plexmediaserver start

我收到此错误:

~$ sudo service plexmediaserver start
Job for plexmediaserver.service failed because the control process exited with error code. See "systemctl status plexmediaserver.service" and "journalctl -xe" for details.

以下是 systemctl status 的输出

● plexmediaserver.service - Plex Media Server for Linux
   Loaded: loaded (/etc/systemd/system/plexmediaserver.service; enabled; vendor 
   Active: inactive (dead) (Result: exit-code) since Sun 2017-02-12 22:01:21 GMT
  Process: 3231 ExecStartPre=/bin/sh -c /usr/bin/test -d "${PLEX_MEDIA_SERVER_AP

Feb 12 22:01:16 UBUN2LP systemd[1]: Failed to start Plex Media Server for Linux.
Feb 12 22:01:16 UBUN2LP systemd[1]: plexmediaserver.service: Unit entered failed
Feb 12 22:01:16 UBUN2LP systemd[1]: plexmediaserver.service: Failed with result 
Feb 12 22:01:21 UBUN2LP systemd[1]: plexmediaserver.service: Service hold-off ti
Feb 12 22:01:21 UBUN2LP systemd[1]: Stopped Plex Media Server for Linux.
Feb 12 22:01:21 UBUN2LP systemd[1]: plexmediaserver.service: Start request repea
Feb 12 22:01:21 UBUN2LP systemd[1]: Failed to start Plex Media Server for Linux.

以下是 journalctl -xe 的输出

-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit plexmediaserver.service has failed.
-- 
-- The result is failed.
Feb 12 22:01:16 UBUN2LP systemd[1]: plexmediaserver.service: Unit entered failed
Feb 12 22:01:16 UBUN2LP systemd[1]: plexmediaserver.service: Failed with result 
Feb 12 22:01:21 UBUN2LP systemd[1]: plexmediaserver.service: Service hold-off ti
Feb 12 22:01:21 UBUN2LP systemd[1]: Stopped Plex Media Server for Linux.
-- Subject: Unit plexmediaserver.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit plexmediaserver.service has finished shutting down.
Feb 12 22:01:21 UBUN2LP systemd[1]: plexmediaserver.service: Start request repea
Feb 12 22:01:21 UBUN2LP systemd[1]: Failed to start Plex Media Server for Linux.
-- Subject: Unit plexmediaserver.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit plexmediaserver.service has failed.
-- 
-- The result is failed.

我尝试重新安装但每次都收到此错误。

我也关注了本指南但并没有什么区别。

答案1

我根据网上对我有用的信息写了一本小指南。希望它能对某些人有所帮助。

  • 安装 PLEX

为主要用户创建“PLEX”文件夹,例如 /home/ntuser/PLEX

将库添加到 PLEX 时添加到 .../.../PLEX

安装 Plex Media Server Ubuntu 16.x 及更高版本

添加 Plex 存储库 GPG 密钥并添加 Plex 存储库,您可以将整个块复制并粘贴到您的 SSH 会话中

如果你收到“找不到密钥”错误,那么它可能已更改名称,请从此处找到 .key 文件并在 wget 行中将其替换

wget -O - http://shell.ninthgate.se/packages/shell.ninthgate.se.gpg.key | sudo apt-key add -
echo "deb http://shell.ninthgate.se/packages/debian jessie main" | sudo tee -a /etc/apt/sources.list.d/plex.list

sudo apt update

在 Ubuntu 16.x 及更高版本上安装 Plex 媒体服务器

sudo apt install plexmediaserver -y

您必须手动安装 .DEB!!!!请参阅安装 DKPG 安装

看看你是否可以连接到http://ip.地址:32400/web或者http://ip.address:32400/manage/index.html#!/setup

Plex Media Server 会在启动时自动启动吗?

  • 修复 Plex 权限问题

如果您遇到权限问题,这是因为 Plex 以其自己的用户身份运行,有两个选项:更改下载文件夹的权限或更改 Plex 运行的用户 - 您可以同时执行这两项操作,但选项 1 应该足够了。

如果 Plex 没有显示您的文件夹,因此您可以添加视频,那么这将修复该问题。

要更改媒体文件夹的权限,首先将 plex 用户添加到主用户组

sudo usermod -aG ntuser plex

然后将媒体文件夹的权限设置为 775,以便您的组(以及该组的 plex 用户成员)可以执行文件

sudo chmod -R 775 /path/to/media

相关内容