Updating OttoFMS
Option 1: Update using the update script
We have set up a hosted update script that you can run on your server to update OttoFMS. Each OS has a different script, so make sure to use the correct one for your server.
To run, simply copy and paste the following command into your terminal:
sudo curl -sSL "https://downloads.ottomatic.cloud/ottofms/install-scripts/install-linux.sh" | bashIf you'd like to update to a specific version of OttoFMS, you can specify the version number as a parameter:
sudo curl -sSL "https://downloads.ottomatic.cloud/ottofms/install-scripts/install-linux.sh" | bash -s -- -v 4.1.0To run, simply copy and paste the following command into PowerShell:
iex ((New-Object System.Net.WebClient).DownloadString('https://downloads.ottomatic.cloud/ottofms/install-scripts/install-win.ps1'))If you'd like to install a specific version of OttoFMS, you can specify the version number as a parameter:
$OttoFMSInstallVersion = "4.1.0"; iex ((New-Object System.Net.WebClient).DownloadString('https://downloads.ottomatic.cloud/ottofms/install-scripts/install-win.ps1'))To run, simply copy and paste the following command into your terminal:
sudo curl -sSL "https://downloads.ottomatic.cloud/ottofms/install-scripts/install-mac.sh" | bashIf you'd like to install a specific version of OttoFMS, you can specify the version number as a parameter:
sudo curl -sSL "https://downloads.ottomatic.cloud/ottofms/install-scripts/install-mac.sh" | bash -s -- -v 4.1.0Option 2: Manual Update
To manually update OttoFMS to a new version, follow the instructions for uninstalling the old version first. Then follow the instructions for installing the new version.