HOWTO Run Sia host on headless Linux server (Ubuntu)
-
This link is not working anymore:
Configure your host settings:
See http://blog.sia.tech/2016/05/26/how-to-run-a-host-on-sia/Probably URL structure on the blog changed and this is it:
https://blog.sia.tech/how-to-run-a-host-on-sia-2159ebc4725
-
I went ahead and updated the link in the parent post. Should be noted that this guide is over a year old and hosting looks a lot different now. It's mostly still going to be relevant, but we're due for another guide soon.
-
I was able to set up a node following that post and haven't encountered any problem. So seems ok to me.
-
one short question about
./siac host announce
do I have to execute this after every sytsem reboot?
-
@menace_one: you have to execute this only once after setting up a new host. But you have to unlock your wallet after each restart.
-
What is the way to auto-unlock the hosting wallet?
My siad is working fine on the headless box. But to be a good host it needs to come up as soon as possible after a reboot or downtime. Sometimes it happens that I even do not notice that there was a power outage, as the server comes up and all services are started.
So, how to automate the wallet unlocking for the hosting service to be operational after starting?
-
One way to to it would be to put a watch into cron like evry 5 minute or so using siac,
If ! wallet unlocked
ulock it.
-
@brisk
My question was more about feeding the password to siac...
Can I do it on command line (in batch file/shell script)?
-
sure easy peasy
(echo "lakes romance ... ) | siac wallet unlock
-
@brisk
Oh, thanks. It works this way.
I thought there should be a command line parameter for siac such as siac wallet unlock -p <password> .From the other side it wouldn't be more secure as echoing from a script.
As I don't like storing cleartext passwords in script files, there should be a more elegant way to do this.
I know, most of database accessing software is storing the cleartext db access password in a conf file and it may be even less secure than storing it in the startup script.So, perhaps, when the devs have more time... Could a key file be generated from something machine specific and the wallet password? So the user should generate such key file from his wallet password when the wallet is moved to another machine.
Or better, the hosting process should be capable to run on a "partially locked" wallet, as no user approval is needed for from the hosting process originating transactions anyway. The collateral would be locked at the moment the user makes changes to his hosting parameters -price, size etc or/and turns accepting contracts on (which can happen only when the wallet is already unlocked). And these locked SC are accessible for the hosting process even if the wallet is locked.
-
I dont know if an attacker is in he (or she) is in. Imo best to do here is to make sure the online wallet always have pretty limited funds and you make a process of refilling/draining it when needed.
Also it a general bad practice to send passwds as arguments, anyone can see them using tools like top then ( my echo just as bad) better would be to read it from a file or env variable on ly accessable to current user.
-
Hello @brisk thanks for your thoughts,
can you explain how an attacker, which overtook a local (non root) user, could read the echo from your suggested command line?
Would it make a difference wheather script is executed by root or a non-root user?greetings
-
-
What about
Could not announce host: insufficient balance
when trying to annouce ?
-
Me and a few others who read the Github Gist and this (https://gist.github.com/pmknutsen/7521a29fe8125c24eb3e/) are getting this error:
Starting the service fails with status=203/EXEC
-
@chanakyabtc Only thing I can think of is that its a permissions issue. Check that the user you're running
siadas has permissions to runsiadand read/write permissions to the data directory (WorkingDirectory).
-
Awesome tutorial, thanks for making this!
I ended up using this for setting up sia.pixeldrain.com.
I modified the service file slightly, to fit my requirements better:
Description=Sia Daemon After=network.target [Service] Type=simple ExecStart=/home/sia/Sia/siad -M gctwr ExecStop=/home/sia/Sia/siac stop WorkingDirectory=/home/sia/Sia/ Restart=always RestartSec=10 User=sia Nice=2 [Install] WantedBy=multi-user.target Alias=siad.serviceThe
nicevalue is so it doesn't end up eating all resources of the pixeldrain server. It also causessiadto get eaten first if the server happens to run OOM.
This also contains a clean shutdown sequence for Sia, to reduce risks of data corruption when the server needs to reboot.
Thetype=simpleline indicates that this is not a forking service, and that it should be started in a new process.
And I addedAfter=network.targetto make sure it doesn't start before the network driver is initialized.I learned a lot about systemd from this, thanks for that :)
-
This post is deleted!
-
I'm having problems installing Sia via the linux command line. I've never used go before I think that's where my major breakdown comes in.
Does anyone have an install guide where they use go? Everything I'm finding is back before V1.1 and nothing I can find is helping me install with go.
-
@brollySSJ you don't need go, just install the compiled version from Github. The above guide still works with little modifications.