You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 11, 2018. It is now read-only.
Copy file name to clipboardExpand all lines: docs/Frequently_Asked_Questions.rst
+11-9Lines changed: 11 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Questions on the Full Node in private networks
17
17
18
18
.. code-block:: shell
19
19
20
-
- netstat -tulnp| grep 50051
20
+
netstat -tulnp| grep 50051
21
21
22
22
If the port is open, you can test your node using tronscan.org. Make sure your port and IP is open on internet. If you are using a private IP only, you will need to use other gRPC software
23
23
@@ -30,7 +30,7 @@ You can also check if your node is running using the following terminal command:
30
30
31
31
.. code-block:: shell
32
32
33
-
- tail -f logs/tron.log |grep "MyheadBlockNumber"
33
+
tail -f logs/tron.log |grep "MyheadBlockNumber"
34
34
35
35
36
36
Questions on the Super Node in private networks
@@ -40,7 +40,7 @@ Questions on the Super Node in private networks
40
40
A: On a private deployment, you will need at least one Super Node, no minimum requirements for FullNode.
41
41
42
42
2. Q: As user voting determines Super Node selection in private networks, do I need to submit any application materials to the TRON foundation to be approved as a Super Node?
43
-
A: You don’ t need to submit material to TRON foundation.
43
+
A: You don’ t need to submit material to TRON Foundation.
44
44
45
45
3. Q: Why is data in private environments continuously synchronized and why is the journal still continuously updated to all other nodes? What is the difference between a private and a public environment then?
46
46
A: If this is related to the IP list-> A: On config.conf you need to update the seed.ip, if you use the same of the public network, and your computer is connected to the internet, it will attempt to connect to those nodes and the IP list will be saved in the DB, even if the connection fails.
@@ -56,7 +56,7 @@ Questions regarding operation in public networks
56
56
Is a good practice to limit JVM heap size to fit inside one NUMA region (Around 1 TB on the bigger machines). If its JVM spans NUMA regions, GC will take much longer.
57
57
58
58
2. Q: What performance does a processor need to have in order to run the node software?
59
-
A: You will need at least 2 CPU cores to run a full node badly. On a private environment, with lower number of transactions, you can will be fine running on 4 CPU cores. So, the CPU performance will depends on the network request. You will need to monitor your machine to decide the best requirements. In the PUBLIC NETWORK, TRON recommend at least 64CPU cores machine for a Super Representative to be approved.
59
+
A: At least 2 core CPUs are required to run a full node, at the minimum performance. On a private environment, with lower number of transactions, you can will be fine running on 4 CPU cores. So, the CPU performance will depends on the network request. You will need to monitor your machine to decide the best requirements. In the PUBLIC NETWORK, TRON recommend at least 64CPU cores machine for a Super Representative to be approved.
60
60
61
61
3. Q: What ports should be open to public network?
62
62
A: 18888 and 50051 are the two default ports.
@@ -78,7 +78,7 @@ Questions regarding error occurrences/messages for Super Nodes
78
78
79
79
.. code-block:: shell
80
80
81
-
- tail -f logs/tron.log |grep "MyheadBlockNumber"
81
+
tail -f logs/tron.log |grep "MyheadBlockNumber"
82
82
83
83
Questions regarding block generation by Super Nodes
@@ -98,14 +98,16 @@ Questions regarding block generation by Super Nodes
98
98
5. Q: How do I know if my test Super Node is running?
99
99
A: A: Run the following command:
100
100
101
-
- tail -f logs/tron.log |grep "Try Produce Block"
101
+
.. code-block:: shell
102
+
103
+
tail -f logs/tron.log |grep "Try Produce Block"
102
104
103
105
6. Q: Based on this command: java -jar java-tron.jar -p yourself private key --witness -c yourself config.conf(Example:/data/java-tron/config.conf, how do I know that I am running a Super Node?
104
106
A: Run the following command:
105
107
106
108
.. code-block:: shell
107
109
108
-
- tail -f logs/tron.log |grep "Try Produce Block"
110
+
tail -f logs/tron.log |grep "Try Produce Block"
109
111
110
112
7. Q: What are some command-line commands that can generate an address to be sent to TRON? Is web wallet the only way?
111
113
A: You can use Wallet CLI: https://github.com/tronprotocol/wallet-cli
@@ -153,7 +155,7 @@ Questions on the Super Representatives election
153
155
A: Voting does not consume your TRX.
154
156
155
157
9. Q: Does the status of Super Representatives only last for 24 hours?
156
-
A: No. The status of Super Representatives lasts for 6 hours. But if the results of the next election remains the same, the status will be maintained for another 6 hours.
158
+
A: No. The status of Super Representatives lasts for 6 hours. But if the results of the next election remains the same, the status will be maintained for another 6 hours.
157
159
158
160
10. Q: Information on my node is not included in either of the two configuration nodes, namely build/resources/main/config.conf and build/resources/main/config.conf in the wallet. Is it still possible to discover my node and proceed to block production?
159
161
A: Set your own private key in the configuration file. With a successful vote a block will be produced.
@@ -193,7 +195,7 @@ Others
193
195
10. Q: Listaccounts is a list of all addresses in the network?
194
196
A: For now, yes. But we are uncertain if that’s going to change, because we need to further think it through as the address base if enormous.
195
197
196
-
11. Q: How many decimal places is there for the balance?
198
+
11. Q: How many decimal places are there for the balance?
197
199
A: Six.
198
200
199
201
12. Q: Is the machines of the nodes in Beijing? Is the wall an issue?
0 commit comments