Advertisement
Guest User

Untitled

a guest
Mar 12th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. 1 # What port stellar-core listens for commands on. This is for Horizon server.
  2. 2 HTTP_PORT=11626
  3. 3
  4. 4 PUBLIC_HTTP_PORT=false
  5. 5
  6. 6 # If it is true, It prevents you from trying to connect to other peers
  7. 7 RUN_STANDALONE=false
  8. 8
  9. 9 # A phrase for your network. All nodes should have the same network phrase.
  10. 10 NETWORK_PASSPHRASE="Standalone Private Network ; Mar 2019"
  11. 11
  12. 12 # The seed used for generating the public key this node will be identified within SCP.
  13. 13 NODE_SEED="SAUQCRCMMJT5CVTQQKKBTRL25N6NEFRBYIH4KOL6BXVRMLKJ5QNDBEFT self"
  14. 14
  15. 15 # Only nodes that want to participate in SCP should set NODE_IS_VALIDATOR=true.
  16. 16 # Most instances should operate in observer mode with NODE_IS_VALIDATOR=false.
  17. 17 NODE_IS_VALIDATOR=true
  18. 18
  19. 19 # Comma separated peers list
  20. 20 KNOWN_PEERS=[
  21. 21 "192.168.1.7:11625",
  22. 22 "192.168.1.5:11625"
  23. 23 ]
  24. 24
  25. 25 # Postgres DB URL
  26. 26 DATABASE="postgresql://dbname=stellar_node01_db host=localhost user=node0 password=foo@stellar"
  27. 27
  28. 28 # The port other instances of stellar-core can connect to you on.
  29. 29 PEER_PORT=11625
  30. 30
  31. 31 # Log level setup
  32. 32 COMMANDS=["ll?level=trace"]
  33. 33
  34. 34 FAILURE_SAFETY=0
  35. 35 UNSAFE_QUORUM=true
  36. 36
  37. 37 #The public keys of the Stellar servers
  38. 38 [QUORUM_SET]
  39. 39 THRESHOLD_PERCENT=100
  40. 40
  41. 41 # comma sepearted validator list
  42. 42 VALIDATORS=["$self"]
  43. 43
  44. 44 [HISTORY.vs]
  45. 45 get="cp /tmp/stellar-core/history/vs/{0} {1}"
  46. 46 put="cp {0} /tmp/stellar-core/history/vs/{1}"
  47. 47 mkdir="mkdir -p /tmp/stellar-core/history/vs/{0}"
  48.  
  49. Using DEPRECATED command-line syntax.
  50. Please refer to documentation for new syntax.
  51.  
  52. 2019-03-12T16:02:04.804 <startup> [default INFO] RUN_STANDALONE enabled in configuration file - node will not function properly with most networks
  53. Content-Length: 1046
  54. Content-Type: application/json
  55.  
  56. 2019-03-12T16:02:04.808 GBYOG [default INFO] {
  57. "info" : {
  58. "build" : "v10.2.0",
  59. "history_failure_rate" : "1",
  60. "ledger" : {
  61. "age" : 2,
  62. "baseFee" : 100,
  63. "baseReserve" : 100000000,
  64. "closeTime" : 1552386722,
  65. "hash" : "9d6610c2265ae19889dd18803f2a7b9a58c105e9a80f8b35845d7a0831bbd27c",
  66. "maxTxSetSize" : 100,
  67. "num" : 1180,
  68. "version" : 0
  69. },
  70. "network" : "Standalone Private Network ; Mar 2019",
  71. "peers" : {
  72. "authenticated_count" : 2,
  73. "pending_count" : 0
  74. },
  75. "protocol_version" : 10,
  76. "quorum" : {
  77. "1180" : {
  78. "agree" : 1,
  79. "delayed" : 0,
  80. "disagree" : 0,
  81. "fail_at" : 0,
  82. "hash" : "ab248e",
  83. "missing" : 0,
  84. "phase" : "EXTERNALIZE",
  85. "validated" : true
  86. }
  87. },
  88. "startedOn" : "2019-03-12T08:53:47Z",
  89. "state" : "Synced!",
  90. "status" : [
  91. "Publishing 18 queued checkpoints [63-1151]: Succeded: prepare-snapshot"
  92. ]
  93. }
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement