Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions setup-masternode.php
Original file line number Diff line number Diff line change
Expand Up @@ -372,21 +372,21 @@

<p class="mt-3 mb-1"><strong>Step 3: Start your Node</strong></p>
<p>Run:</p>
<pre>sudo docker-compose -f docker-services.yml up -d</pre>
<pre>sudo docker-compose -f docker-compose.yml up -d</pre>
<p class="link-break-out">
You should be able to see your node listed on this page: <a href="http://xinfin.network" target="_blank">http://xinfin.network</a> Select Menu "Switch to TestNet" for Test Network and Select "Switch to
LiveNet" to check Live Network Stats.
</p>
<p>Your Coinbase address can be found in xdcchain/coinbase.txt file.</p>

<p>To stop the node or if you encounter any issues use:</p>
<pre>sudo docker-compose -f docker-services.yml down</pre>
<pre>sudo docker-compose -f docker-compose.yml down</pre>

<p class="mb-1"><strong>Upgrade</strong></p>
<p>To upgrade please use the following commands</p>
<pre><code>sudo docker-compose -f docker-services.yml down
<pre><code>sudo docker-compose -f docker-compose.yml down
sudo ./upgrade.sh
sudo docker-compose -f docker-services.yml up -d
sudo docker-compose -f docker-compose.yml up -d
</code></pre>

<p class="mb-1"><strong>Troubleshooting</strong></p>
Expand Down