Advertisement
Guest User

Untitled

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