Installing on Debian - Official Docs
Setup the repo. This will run a script to setup the Stork repo for your distro
curl -1sLf 'https://dl.cloudsmith.io/public/isc/stork/cfg/setup/bash.deb.sh' | sudo bash
Install the Stork server package
apt install isc-stork-server
Install PostgreSQL (as of the time of writing this, ≥ v10 is required)
apt install postgresql
Run the Stork DB setup tool. By default, the script logs in with the postgres user - you'll need to set/change the password of this user if you don't already know it. This can also be completed manually
stork-tool db-create --db-name stork --db-user stork
Open the Stork config file
vim /etc/stork/server.env
Modify, at a minimum, the following parameters
STORK_DATABASE_HOST=127.0.0.1
STORK_DATABASE_PORT=5432
STORK_DATABASE_NAME=stork
STORK_DATABASE_USER_NAME=stork
STORK_DATABASE_PASSWORD=***********************
Enable and start the Stork service
systemctl enable isc-stork-server.service
systemctl start isc-stork-server.service
Use a web browser to navigate to http://<stork-uri>:8080
. The default credentials are admin
/admin
Installing on Debian - Official Docs
Setup the repo. This will run a script to setup the Stork repo for your distro
curl -1sLf 'https://dl.cloudsmith.io/public/isc/stork/cfg/setup/bash.deb.sh' | sudo bash
Install the Stork server package
apt install isc-stork-agent