SOLVED Ombi Setup

Status
Not open for further replies.

ZodiacUHD

Patron
Joined
Aug 28, 2015
Messages
226
Hello everyone, i'm trying to follow this guide (https://github.com/tidusjar/Ombi/wiki/FAQ) to install Ombi but i'm having issues on the last step: apparently the crontab isn't correct, any help?
Code:
  1. Type pkg update && pkg upgrade -y and press <enter> (applies updates to installed programs)
  2. Type pkg install wget mono screen unzip nano and press <enter> (installs a few extra programs you need)
  3. Type setenv EDITOR /usr/local/bin/nano and press <enter> (sets nano as default file editor)
  4. Type wget -O /tmp/Ombi.zip https://github.com/tidusjar/Ombi/releases/download/v2.1.0/Ombi.zip and press <enter>
NOTE: This command will grab version version 2.1.0, so find the latest release [here] (https://github.com/tidusjar/Ombi/releases) and replace the link in the command.
  1. Type unzip /tmp/Ombi.zip -d /usr/local/share/ and press <enter> (unzips the file we downloaded above)
  2. Type mv /usr/local/share/Release /usr/local/share/ombi/ and press <enter> (renames the 'Release' directory to 'ombi')
  3. Type nano /usr/local/bin/ombi and press <enter> (this creates a file called 'ombi' and opens it for editing)
  4. Type the code below, exactly how it looks, line for line: #!/bin/sh cd /usr/local/share/ombi/ /usr/local/bin/screen -d -m -S ombi /usr/local/bin/mono /usr/local/share/ombi/Ombi.exe
  5. Press Ctrl + X then y <enter> then <enter> (saves the file and quits the nano editor)
  6. Type chmod 775 /usr/local/bin/ombi and press <enter> (changes the permissions on the ombi file)
  7. Type crontab -e and press <enter> (starts the nano editor to edit the crontab file)
  8. Type the code below, exactly how it looks, line for line:
`SHELL=/bin/sh` `PATH=/etc:/bin:/sbin:/usr/bin:/usr/sbin` `#start ombi` `@reboot /usr/local/bin/ombi`
  1. Press Ctrl + X then y <enter> then <enter> (saves the file and quits the nano editor)
  2. Restart the jail from the FreeNAS GUI.
  3. Open a browser and go to your jail's IP address and port number 3579 (eg. 192.168.1.5:3579)
 

ZodiacUHD

Patron
Joined
Aug 28, 2015
Messages
226
crontab: errors in crontab file, can't install
Do you want to retry the same edit?
 
D

dlavigne

Guest
It is probably the beginning and ending ' on each line (not sure why those are there). Does it work without those?
 

p30n

Cadet
Joined
Aug 1, 2018
Messages
6
have anyone gotten ombi 3 to work in freenas 11.2?
I can't get it started following several different guides..
 

odragon

Dabbler
Joined
Nov 9, 2016
Messages
28
have anyone gotten ombi 3 to work in freenas 11.2?
I can't get it started following several different guides..
Could you share what links you are using? I would also like to get this setup :)
 
Status
Not open for further replies.
Top