在CentOS上监控Jellyfin可参考以下方法:
系统命令监控
sudo systemctl status jellyfin。top -p $(pgrep jellyfin) 或 htop -p $(pgrep jellyfin)。sudo netstat -tulnp | grep 8096(默认端口)。日志监控
sudo journalctl -u jellyfin -f。第三方工具监控
Jellyfin自带接口
curl http://localhost:8096/api/system/status(需启用API)。注:部分工具(如sampler)需自行安装配置,优先选择与系统兼容的方案。