VPS安装Docker & Plex

基于Debian 11 安装docker

apt update
apt upgrade
apt install curl wget nano
curl -sSL https://get.docker.com/ | sh
systemctl enable docker
systemctl start docker

安装运行 Plex

 

docker run -d\
  --name plex \
  --network=host \
  -e TZ="Asia/Shanghai" \
  -e PLEX_CLAIM="<claimToken>" \
  -v /docker/plex/database:/config \
  -v /docker/plex/transcode/temp:/transcode \
  -v /mnt:/data \
  plexinc/pms-docker

安装完后,浏览器输入 vpsserverip:32400/web访问Plex即可

 

最后这里有一个坑,在VPS上安装Plex是无法直接添加媒体库的,Web界面直接没有显示

需要以下设置:

建立你的私人在线影库:Plex云盘搭建及使用教程 - Rat's Blog (moerats.com)

SSH转发端口

先在电脑左下角程序搜索框输入PowerShell,然后双击Windows PowerShell工具,运行命令:

ssh root@服务器IP -L 8888:localhost:32400

输入正确的密码后,再去浏览器里打开localhost:8888/web进入即可。

隧道转发

这里只列举常用的putty和xshell,其它自行模式,大致流程如下:

xshell:点击plex服务器属性-隧道-添加,监听端口8888,目标端口32400
putty:具体操作大概是connectionsshTunnels,设置source port为8888,destination为127.0.0.1:32400

先使用ssh连接服务器,然后再去浏览器里打开localhost:8888/web进入即可。

 

版权声明:
作者:Jays
链接:https://ijays.com/2022/11/vps-docker-install-plex.html
来源:颓废的美
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>