Install Structr from a .deb file#
You can download Structr as a package for any Debian based Linux distribution (Debian, Ubuntu, Mint etc.) (.deb) from https://structr.org/download.
Installation
- Download the latest
.deb
file (~ 280 MB). - After download, install the Debian package with
sudo dpkg -i structr-<version>.deb
. - Structr will be installed in
/usr/lib/structr
, log file is/var/log/structr.log
. - Start Structr with
sudo service structr start
. - Go to http://localhost:8082/structr#pages.
- Login with the default credentials
admin/admin
.
Upgrade
- Get the latest
.deb
file. - Stop the running instance with
sudo service structr stop
. - Install the new
.deb
file withsudo dpkg -i structr-<version>.deb
. - Start the service using
sudo service structr start
.
Additional Information
To start a Structr instance with an empty database refer to How to start Structr with an empty database.