Advertisement
Guest User

Xuma CentOS Masternode

a guest
Mar 27th, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.56 KB | None | 0 0
  1. Installing XUMA Masternode on CentOS 7:
  2. ======================================
  3.  
  4. [ Create new user: ]
  5.  
  6. root@centos ~# adduser xuma
  7. root@centos /etc# passwd xuma
  8. edit /etc/groups
  9. add xuma user to the wheel group
  10.  
  11. [ install required packages: ]
  12.  
  13. root@centos ~# yum install automake git libtool autoconf nano
  14. root@centos ~# yum install libdb4-cxx libdb4-cxx-devel boost-devel
  15. root@centos ~# yum install gcc-c++
  16. root@centos ~# yum install openssl-devel
  17.  
  18. change to xuma user
  19. sudo su
  20.  
  21. [ download and compile node: ]
  22.  
  23. root@centos /h/xuma# git clone https://github.com/xumacoin/xuma-core.git
  24. root@centos /h/xuma# cd xuma-core/
  25. root@centos /h/x/xuma-core# ./autogen.sh
  26. root@centos /h/x/xuma-core# ./configure
  27. root@centos /h/x/xuma-core# make all install
  28.  
  29. exit su
  30.  
  31. [ configure node: ]
  32.  
  33. [xuma@centos ~]$ nano .xuma/mainnet/xuma.conf
  34.  
  35. insert the following, changing user and password:
  36.  
  37. rpcuser=[CHOOSE A RANDOM USERNAME]
  38. rpcpassword=[CHOOSE A RANDOM PASSWORD]
  39. rpcallowip=127.0.0.1
  40. listen=1 server=1
  41. daemon=1
  42. logtimestamps=1
  43. maxconnections=256
  44. addnode=159.89.120.208
  45. addnode=159.89.120.226
  46. addnode=165.227.230.24
  47. addnode=159.65.63.79
  48. addnode=159.203.10.85
  49. addnode=138.197.151.120
  50. addnode=139.59.38.142
  51. addnode=159.89.170.123
  52.  
  53.  
  54. [ start daemon: ]
  55. [xuma@centos ~]$ xumad
  56. Xuma server starting
  57.  
  58. ======================================
  59.  
  60. Continue this guide from step 8 for finalizing wallet and node configuration:
  61.  
  62. https://medium.com/@wolfcrypto/how-to-setup-a-xumacoin-xmx-masternode-on-vultr-bb8a1979d85d
  63.  
  64. ======================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement