Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. LITEDOGE LINUX DAEMON INSTRUCTIONS:
  2.  
  3. Last Updated: February 06, 2016 {Sheesh's questions version}
  4.  
  5. Note: for CrownCloud OpenVZ VPS-2048 or VPS-4096 running Ubuntu 14.04 64bit
  6. https://crowncloud.net/openvz.php
  7.  
  8. Use Putty to SSH into your new VPS. (You'll need the IP address from CrownCloud, thats like the street
  9. address of your VPS) Log in as root and use the password you received in your confirmation email from
  10. CrownCloud.
  11.  
  12. First, make a new account, to run the litedoge wallet on later, for better security;
  13. adduser your-non-root-username
  14. {Answer the questions, other than the password - REMEMBER THAT! - the rest is ignorable.}
  15.  
  16. run:
  17. locale-gen en_US.UTF-8
  18. This sets up your Locale to regenerate the locales used on the vps to standard UTF-8 character encoding.
  19.  
  20. Then update your Linux install so it's up to date with the packages you'll use:
  21. apt-get update
  22. apt-get install nano build-essential libssl-dev libdb++-dev libboost-all-dev libminiupnpc-dev git
  23. git clone https://bitbucket.org/ctgiant/litedoge.git
  24. cd litedoge/src
  25. apt-get update
  26. make -f makefile.unix
  27. apt-get update
  28. cp litedoged /bin
  29. litedoged (will error but needed to create files)
  30. cd ~
  31. cd .litedoge
  32. nano litedoge.conf
  33.  
  34. Add Lines into litedoge.conf:
  35.  
  36. server=1
  37. daemon=1
  38. listen=1
  39. rpcuser=username
  40. rpcpassword=somethinglongyoudonthavetoremember
  41. rpcallowip=127.0.0.1
  42. txindex=1
  43. stake=1
  44.  
  45. (use control +x then y to save it)
  46.  
  47. {We need to tell the user here the heck they get their privkey, below here? They WON'T KNOW! And tell them to
  48. make up a password, too}
  49. litedoged
  50. litedoged importprivkey PASTE-YOUR-PRIVKEY-HERE
  51. litedoged getinfo
  52. litedoged encryptwallet passwordyouwant-REMEMBER-THIS
  53. litedoged
  54. litedoged getinfo
  55.  
  56. For best security you don't want to stake on your root account; so do,
  57. litedoged stop
  58. logout
  59.  
  60. then reconnect, and log in to your-non-root-username staking only account, then start the daemon with
  61. litedoged
  62.  
  63. (then, unlock for staking only, see below)
  64.  
  65. Unlock for Staking Only: (Note the space in front of this line; this tells your putty client
  66. NOT to cache this line, so someone with physical access to your PC cannot scroll back for
  67. your password!)
  68. litedoged walletpassphrase yourpassword 99999999 true
  69.  
  70. Confirm you are staking, {How, exactly, will they know?} and close Putty.
  71.  
  72. Helpful Commands:
  73.  
  74. litedoged help
  75.  
  76. litedoged
  77. litedoged stop
  78. litedoged getinfo
  79. litedoged getblockcount
  80. litedoged getstakinginfo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement