Guest User

Untitled

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