117.info
人生若只如初见

ubuntu jellyfin设置指南

在Ubuntu上设置Jellyfin媒体服务器的步骤如下:

安装Jellyfin

  1. 更新系统
sudo apt update
sudo apt upgrade
  1. 安装必要的包
sudo apt install apt-transport-https ca-certificates curl
  1. 添加Jellyfin仓库
mkdir -p /etc/apt/keyrings
curl -fsSL https://repo.jellyfin.org/jellyfin_team.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/jellyfin.gpg
echo "deb [arch=$(dpkg --print-architecture)] https://repo.jellyfin.org/debian $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/jellyfin.list
  1. 安装Jellyfin
sudo apt install jellyfin -y

配置Jellyfin

  1. 启动Jellyfin服务
sudo systemctl start jellyfin
sudo systemctl enable jellyfin
  1. 访问Web界面

在浏览器中输入 http://localhost:8096,输入管理员账户和密码进行登录。

  1. 添加媒体库
  • 在Jellyfin的Web界面中,点击“Libraries”来添加媒体库。
  • 选择要添加的媒体类型(视频、音频、图片等)。
  • 选择媒体文件所在的目录,Jellyfin会自动扫描并添加该媒体库。

使用Docker安装Jellyfin(可选)

  1. 安装Docker
sudo apt install docker.io
sudo systemctl start docker
sudo systemctl enable docker
  1. 拉取Jellyfin Docker镜像
sudo docker pull jellyfin/jellyfin
  1. 运行Jellyfin容器
sudo docker run -d \
  --name jellyfin \
  -p 8096:8096 \
  -v /path/to/media:/media \
  jellyfin/jellyfin

替换 /path/to/media 为你的媒体文件所在的实际路径。

配置反向代理(可选)

  1. 安装Apache和Certbot
sudo apt install apache2 certbot python3-certbot-apache -y
  1. 设置Apache作为反向代理
  • 创建Jellyfin的web根目录并设置权限:
sudo mkdir -p /var/www/html/jellyfin/public_html
sudo chown -R www-data:www-data /var/www/html/jellyfin/public_html
  • 使用Certbot为你的域名获取SSL证书:
sudo certbot certonly --agree-tos --email your_email@example.com --no-eff-email --webroot -w /var/www/html -d your_domain
  • 配置Apache虚拟主机:
sudo nano /etc/apache2/sites-available/jellyfin.conf

插入以下配置,根据需要更改域名、SSL证书路径和服务器IP地址:


    ServerName your_domain
    Redirect permanent / https://your_domain/
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined



    ServerName your_domain
    DocumentRoot /var/www/html/jellyfin/public_html
    ProxyPreserveHost On
    ProxyPass "/.well-known/" "!"
    RequestHeader set X-Forwarded-Proto "https"
    RequestHeader set X-Forwarded-Port "443"
    ProxyPass "/socket" "ws://0.0.0.0:8096/socket"
    ProxyPassReverse "/socket" "ws://0.0.0.0:8096/socket"
    ProxyPass "/" "http://0.0.0.0:8096/"
    ProxyPassReverse "/" "http://0.0.0.0:8096/"
    SSLEngine on
    SSLCertificateFile /path/to/your_domain.crt
    SSLCertificateKeyFile /path/to/your_domain.key

  1. 启用所需的Apache模块
sudo a2enmod proxy proxy_http ssl proxy_wstunnel remoteip http2 headers
sudo systemctl restart apache2

以上步骤应该能帮助你在Ubuntu上成功安装和配置Jellyfin媒体服务器。如果在配置过程中遇到任何问题,可以参考Jellyfin的官方文档或寻求社区帮助。

未经允许不得转载 » 本文链接:https://www.117.info/ask/fe95fAzsKCQ5UDVE.html

推荐文章

  • Ubuntu Spool与邮件服务有关吗

    是的,Ubuntu中的spool与邮件服务有关。在Ubuntu文件系统中,有一个专门用于存放邮件的目录:/var/spool/mail。这个目录通常用于存储通过邮件传输代理(MTA)如P...

  • Ubuntu挂载加密磁盘指南

    在Ubuntu系统中挂载加密磁盘主要分为几个步骤:准备加密工具、创建加密分区、打开加密分区、格式化加密分区以及挂载加密分区。以下是详细的步骤指南:
    安装...

  • ubuntu compton性能优化技巧

    Compton 是一个在 Linux 桌面环境中用于提供窗口合成功能的 compositor。优化 Compton 的性能可以通过调整其配置文件来实现。以下是一些常见的优化技巧: 关闭不...

  • Ubuntu Yum如何更新软件包列表

    在Ubuntu系统中,通常使用apt或apt-get命令来更新软件包列表,而不是yum。yum是Fedora和Red Hat等基于RPM包管理系统的发行版使用的包管理工具。如果你正在使用Ub...

  • DHCP客户端如何获取IP地址

    DHCP(动态主机配置协议)客户端通过以下步骤获取IP地址:
    1. 发现阶段(Discover) 客户端发送广播消息:客户端启动时,会向网络中的所有设备发送一个DHCP...

  • centos挂载加密分区

    在CentOS中挂载加密分区通常涉及使用LUKS(Linux Unified Key Setup)进行磁盘加密。以下是挂载加密分区的步骤: 安装必要的软件包:
    确保你的系统已经安装...

  • Debian PHP安全性增强措施

    Debian 是一个以稳定性和安全性著称的 Linux 发行版,对于 PHP 应用程序的安全性增强,可以采取以下措施: 更新系统:定期更新 Debian 系统以获取最新的安全补丁...

  • centos docker如何查看日志

    在CentOS系统中,你可以使用journalctl命令来查看Docker容器的日志。以下是一些常用的命令示例: 查看所有容器的日志:
    journalctl -u docker.service 查看...