[Tech Preview] Linux Storage Node & Updater

I would like to report two non-critical issues:

  1. On the first start storagenode updater we have it on log:
  2. Storagenode updater use the same option for debugging endpoint (debug.addr: 0.0.0.0:7777) from the config file and overlap storagenode debug endpoint

For issue two, I just add a workaround to storagenode-updater service exec string --debug.addr "127.0.0.1:0"

Summary
[Unit]
Description  = Storage Node Updater service
After        = syslog.target network.target

[Service]
Type         = simple
User         = storj-storagenode
Group        = storj-storagenode
ExecStart    = /opt/storagenode/bin/storagenode-updater run --config-dir "/etc/storagenode/config" --binary-location "/opt/storagenode/bin/storagenode" --service-name "storagenode" --debug.addr "127.0.0.1:0"
Restart      = on-failure
NotifyAccess = main

[Install]
Alias        = storagenode-updater
WantedBy     = multi-user.target
2 Likes