So I created a jail with the following config options:
This is on FreeBSD 13.1. It's a barebones install, with no firewall, DHCP networking, very basic setup. I chose to use inherit as I've spent the whole day messing around with ezjail and VNET, and I couldn't find anything that actually worked - it just made me want to pull my hair out. The fstab entry mounts my media to /content within the jail, and it successfully mounts.
Within the jail, I ran:
And it told me that plexmediaserver wasn't running. Not a single log in the Plex config directory, and nothing was actually created there aside from the "Plex Media Server" folder. No relevant logs are populated anywhere, from what I can see.
I've tried rebooting the jail, rebooting the host, re-setting up the jail - no dice. I'd really appreciate some help, or even just pointers into the right direction. Thank you!
Code:
plex {
path = "usr/jail/plex";
exec.start = "/bin/sh /etc/rc";
exec.stop = "/bin/sh /etc/rc.shutdown";
exec.clean;
allow.nomount;
mount.devfs;
host.hostname = "$name.jail.plex";
mount.fstab = "/etc/fstab.plex"
ip4 = inherit;
ip6 = inherit;
allow.raw_sockets;
}
This is on FreeBSD 13.1. It's a barebones install, with no firewall, DHCP networking, very basic setup. I chose to use inherit as I've spent the whole day messing around with ezjail and VNET, and I couldn't find anything that actually worked - it just made me want to pull my hair out. The fstab entry mounts my media to /content within the jail, and it successfully mounts.
Within the jail, I ran:
Code:
pkg install plexmediaserver
(added it to /etc/rc.conf)
service plexmediaserver start
service plexmediaserver status
And it told me that plexmediaserver wasn't running. Not a single log in the Plex config directory, and nothing was actually created there aside from the "Plex Media Server" folder. No relevant logs are populated anywhere, from what I can see.
I've tried rebooting the jail, rebooting the host, re-setting up the jail - no dice. I'd really appreciate some help, or even just pointers into the right direction. Thank you!