INSTALL 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. ECOin - Copyright (c) - 2014/2022 - GPLv3 - epsylon@riseup.net (https://03c8.net)
  2. ===================================================
  3. # BUILDS - ECOlogical P2P Crypto-Currency (ECOin) #
  4. ===================================================
  5. =================
  6. + Build Makefile:
  7. =================
  8. cd ecoin/
  9. + GNU/Linux:
  10. /usr/lib/x86_64-linux-gnu/qt4/bin/qmake USE_UPNP=0 USE_IPV6=0 -o Makefile ecoin-qt.pro
  11. ================
  12. + Build leveldb:
  13. ================
  14. cd src/leveldb
  15. + GNU/Linux:
  16. TARGET_OS=Linux make libleveldb.a libmemenv.a
  17. + MacOS X:
  18. TARGET_OS=Darwin make libleveldb.a libmemenv.a
  19. + Windows:
  20. TARGET_OS=NATIVE_WINDOWS make libleveldb.a libmemenv.a
  21. ===================================================
  22. ===============
  23. + Build Wallet:
  24. ===============
  25. See doc/build-*.txt for detailed instructions on building /ecoin-qt/ on different platforms.
  26. + GNU/Linux:
  27. cd ..
  28. qmake USE_UPNP=- (or USE_UPNP=0)
  29. make
  30. ./ecoin-qt
  31. ===============
  32. + Build Daemon:
  33. ===============
  34. See doc/build-*.txt for detailed instructions on building /ecoind/ on different platforms.
  35. + GNU/Linux:
  36. cd src/
  37. make -f makefile.linux USE_UPNP=- (or USE_UPNP=0)
  38. strip ecoind
  39. ./ecoind
  40. ==========================
  41. + Configuration (Example):
  42. ==========================
  43. + GNU/Linux:
  44. - File: /home/$USER/.ecoin/ecoin.conf # chmod 600 ecoin.conf
  45. rpcuser=ecoinrpc
  46. rpcpassword=YourPassWord2021 # use lowercase, upper case and numbers
  47. rpcallowip=127.0.0.1
  48. noirc=1
  49. listen=1
  50. server=1
  51. daemon=1
  52. testnet=0
  53. addnode = 46.163.118.220 # 03c8.net (turina.space)
  54. ./ecoind -conf=/home/$USER/.ecoin/ecoin.conf
  55. ====================
  56. + Testnet (Running):
  57. ====================
  58. + GNU/Linux:
  59. cd src/
  60. ./ecoind -testnet
  61. ====================
  62. + Ports (Listening):
  63. ====================
  64. + Default P2P Port: 7408
  65. + Default RPC Port (main): 7474
  66. + Default RPC Port (testnet): 17474
  67. ===================================================