Skip to content

Commit 34f25e0

Browse files
authored
fix(script): update install dependency script (#6528)
1 parent 26baac4 commit 34f25e0

2 files changed

Lines changed: 367 additions & 60 deletions

File tree

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,8 @@ Network selection is performed by specifying the appropriate configuration file
115115
### 1. Join the TRON main network
116116
Launch a main-network full node with the built-in default configuration:
117117
```bash
118-
nohup java -jar ./build/libs/FullNode.jar &
118+
java -jar ./build/libs/FullNode.jar
119119
```
120-
* `nohup ... &`: Runs the command in the background and ignores the hangup signal.
121120

122121
> For production deployments or long-running Mainnet nodes, please refer to the [JVM Parameter Optimization for FullNode](https://tronprotocol.github.io/documentation-en/using_javatron/installing_javatron/#jvm-parameter-optimization-for-mainnet-fullnode-deployment) guide for the recommended Java command configuration.
123122
@@ -132,7 +131,7 @@ Use [TronScan](https://tronscan.org/#/), TRON's official block explorer, to view
132131
Utilize the `-c` flag to direct the node to the configuration file corresponding to the desired network. Since Nile TestNet may incorporate features not yet available on the MainNet, it is **strongly advised** to compile the source code following the [Building the Source Code](https://github.com/tron-nile-testnet/nile-testnet/blob/master/README.md#building-the-source-code) instructions for the Nile TestNet.
133132

134133
```bash
135-
nohup java -jar ./build/libs/FullNode.jar -c config-nile.conf &
134+
java -jar ./build/libs/FullNode.jar -c config-nile.conf
136135
```
137136

138137
Nile resources: explorer, faucet, wallet, developer docs, and network statistics at [nileex.io](https://nileex.io/).

0 commit comments

Comments
 (0)