Advertisement
Guest User

Untitled

a guest
Nov 19th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. 1. Install/Compile your chosen coin daemon. If the coin is a POS coin, please add:
  2. enableaccounts=1
  3. staking=0
  4. to the coin config file.
  5.  
  6. 2.Install packages:
  7. sudo apt-get update
  8. sudo apt-get install git
  9. sudo apt-get install apache2 -y
  10. sudo apt-get update
  11. sudo add-apt-repository -y ppa:ondrej/php
  12. sudo apt-get update
  13. sudo apt-get install php5.6 -y
  14. sudo apt-get install php5.6-mysql -y
  15. sudo apt-get install php5.6-gd -y
  16. sudo apt-get install mysql-server -y
  17.  
  18. Please make a note of the mySQL Root password you just set.
  19.  
  20. sudo service apache2 restart
  21.  
  22. 3. Put code in /var/www/html
  23.  
  24. 4. Setup mySQL
  25. mysql -u root -p
  26. create database wallet;
  27. use wallet;
  28. *COPY AND PASTE THE DATA FROM THE users.sql FILE*
  29. exit;
  30.  
  31. 5. Edit settings.php
  32. There are quite a few lines we have to change here.
  33.  
  34. Replace password with your mySQL root password
  35. $db_pass = "admin";
  36.  
  37. Replace the RPC Port, RPC Username & RPC Password
  38. $rpc_port = "23755";
  39. $rpc_user = "user";
  40. $rpc_pass = "pass";
  41.  
  42. Link to explorer it should be linktoexplorer.com/tx/
  43. $blockchain_tx_url =
  44.  
  45. 6. Login to wallet
  46.  
  47. username = admin
  48. password = changeme
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement