Author

Topic: 0 Active Connections On The Network (Read 183 times)

newbie
Activity: 41
Merit: 0
April 02, 2018, 09:48:32 PM
#4

You can deploy few VPS with linux daemon and add to your coin.conf file on both VPS and your wallet:

Code:
daemon=1
server=1
addnode=VPS1_IP
addnode=VPS2_IP
member
Activity: 74
Merit: 10
April 02, 2018, 02:33:12 PM
#3
Hello all,

Trying to build my own LiteCoin fork for educational purposes.

I've made it as far as compiling the wallets in Ubuntu.

The problem I'm having is that there isn't any active connections on my network.

Hello.

You'll need 2 wallet/daemon to make it work.

The trick is to launch a 2nd wallet or daemon, using a different -datadir= and making sure it doesn't try to listen (I won't be able to) and to connect to the other instance (using -connect):

Code:
# First instance
$ ./QuickCash-qt -testnet

# 2nd instance, in another terminal if needed
$ mkdir instance_2 ; ./QuickCash-qt -testnet -datadir=instance_2 -listen=0 -connect=localhost

You'll be able to mine new blocks, and the "out of sync" stuff will disappear once a new block is mined.



Thank you so much for the help I really appreciate it!
full member
Activity: 198
Merit: 130
Some random software engineer
April 02, 2018, 01:32:03 PM
#2
Hello all,

Trying to build my own LiteCoin fork for educational purposes.

I've made it as far as compiling the wallets in Ubuntu.

The problem I'm having is that there isn't any active connections on my network.

Hello.

You'll need 2 wallet/daemon to make it work.

The trick is to launch a 2nd wallet or daemon, using a different -datadir= and making sure it doesn't try to listen (I won't be able to) and to connect to the other instance (using -connect):

Code:
# First instance
$ ./QuickCash-qt -testnet

# 2nd instance, in another terminal if needed
$ mkdir instance_2 ; ./QuickCash-qt -testnet -datadir=instance_2 -listen=0 -connect=localhost

You'll be able to mine new blocks, and the "out of sync" stuff will disappear once a new block is mined.

member
Activity: 74
Merit: 10
April 02, 2018, 12:51:08 PM
#1
Hello all,

Trying to build my own LiteCoin fork for educational purposes.

I've made it as far as compiling the wallets in Ubuntu.

The problem I'm having is that there isn't any active connections on my network.

I'm following this tutorial
Code:
https://www.youtube.com/watch?v=nfE-SYJ7PrQ


This is the main VM

This is the VM I put in server mode

As you can see I added the IP as a node, still ain't getting any connections



Any help would be greatly appreciated
Jump to: