Scripted Tautulli Installation (TrueNAS CORE)

This resource was originally created by user: * Basil Hendroff on the TrueNAS Community Forums Archive. Please DM this account or comment in this thread to claim it.

As evidenced in the forum thread Tautulli been running fine but now can’t start, the transition from Python 2 to 3 has been somewhat bumpy for Tautulli users on FreeNAS. The Tautulli FreeBSD/FreeNAS Installation Instructions lends itself to scripting, however, it leaves the Tautulli database in the jail. The hint on how to relocate the Tautulli database outside the jail is included in the forum resource FN11.3 iocage jails - Plex, Tautulli, Sonarr, Radarr, Lidarr, Jackett, Transmission, Organizr.

This scripted installation of Tautulli will create a jail, install the latest version of Tautulli for FreeBSD from tautulli.com, and store its data files outside the jail where it can be more easily managed.

Scripted installation instructions are at GitHub - basilhendroff/truenas-iocage-tautulli: Script to install Tautuilli in an iocage jail..

Acknowledgements:

  1. @danb35 for allowing me to reuse code fragments from his scripts and adopt his documentation style to facilitate rapid script development and deployment, and maintain a consistent look-and-feel.
  2. @Pentaflake for the Tautulli data directory pointer.

References:

  1. Forum thread Tautulli been running fine but now can’t start
  2. Tautulli FreeBSD/FreeNAS Installation Instructions.
  3. FN11.3 iocage jails - Plex, Tautulli, Sonarr, Radarr, Lidarr, Jackett, Transmission, Organizr.

https://www.truenas.com/community/resources/scripted-tautulli-installation.153/download

As always, thanks to who provide those usefull script to community (and newbie as me :slight_smile: )
Unlucky, for me dosn’t work:
i managed to add

# If release is 13.1-RELEASE, change to 13.2-RELEASE
if [ "${RELEASE}" = "13.1-RELEASE" ]; then
  RELEASE="13.2-RELEASE"
fi

and installation start, but from what i see in the shell install not fail but can’t add those dependencies:

py38-openssl

py38-pycryptodomex

and the jail not working

Unfortunately it seems Basil has been gone for over a number of years now. I’ll try to clone his repo and post the updated script here.

1 Like

i tried to update the dependencie download as described here

# List packages to be auto-installed after jail creation
cat <<__EOF__ >/tmp/pkg.json
	{
  "pkgs":[
  "nano","bash","python","py39-setuptools","py39-sqlite3","py39-openssl","py39-pycryptodomex","security/ca_root_nss","git-lite"
  ]
}
__EOF__

but not works either… hope it helps

Screenshot 2024-06-18 172613

May I take over this resource? @iX_Resources

@oxyde Clone this repo and run the install again.

git clone https://github.com/tschettervictor/truenas-iocage-tautulli
1 Like

I just saw you could actually just do

pkg install tautulli

But source is more up to date I suppose.

done!
Install goes fine now, service is running, but jail is still unreachable :exploding_head:
Any idea on how i can debug this?

Are you adding port 8181 at the end?

1 Like

no… :face_in_clouds: :face_in_clouds: :face_in_clouds: work like a charm, really thanks for help me everytime!