Author

Topic: [ANN][CRW] CROWN (SHA256) | Platform | Governance | Systemnodes | Masternodes | - page 146. (Read 316951 times)

legendary
Activity: 964
Merit: 1000
You should be able to setup a hot node using by adding the throne options to the crown.conf file. Shouldn't need the throne.conf at all for a hot node. Make sure to use an external IP address that has port forwarding enabled to port 9340. I need to get some sleep before i start debugging anymore. I've been working on the pool to try and get it ready for Crown payments Wink

throne=1
throneaddr=
throneprivkey=

I've all that in my .crown/crown.conf.  The server is a VPS, so its IP is public and there's no firewall or anything else that would block the port.  In fact, I have 80 connections, including many incoming ones; I also verified that I can telnet to the address/port combination (51.254.131.226:9340).  This used to work with the old client, and I haven't since touched the configs or the network configuration at all.
Same problem,

Working on it now, The VPS, does it have the funds stored on it as a hot node? or are you storing the funds locally? Just about to try and set one up myself now.

ACP
hero member
Activity: 612
Merit: 520
You should be able to setup a hot node using by adding the throne options to the crown.conf file. Shouldn't need the throne.conf at all for a hot node. Make sure to use an external IP address that has port forwarding enabled to port 9340. I need to get some sleep before i start debugging anymore. I've been working on the pool to try and get it ready for Crown payments Wink

throne=1
throneaddr=
throneprivkey=

I've all that in my .crown/crown.conf.  The server is a VPS, so its IP is public and there's no firewall or anything else that would block the port.  In fact, I have 80 connections, including many incoming ones; I also verified that I can telnet to the address/port combination (51.254.131.226:9340).  This used to work with the old client, and I haven't since touched the configs or the network configuration at all.
Same problem, I'm getting incorrect port for mainnet but I have many connections and conifg is same. Let me guess, regenerate the throne because of the fork?
hero member
Activity: 805
Merit: 500


The Crown team would love to get some help from a professional marketing guy, a person who can spread this idea further  Wink PM me
legendary
Activity: 1135
Merit: 1166
You should be able to setup a hot node using by adding the throne options to the crown.conf file. Shouldn't need the throne.conf at all for a hot node. Make sure to use an external IP address that has port forwarding enabled to port 9340. I need to get some sleep before i start debugging anymore. I've been working on the pool to try and get it ready for Crown payments Wink

throne=1
throneaddr=
throneprivkey=

I've all that in my .crown/crown.conf.  The server is a VPS, so its IP is public and there's no firewall or anything else that would block the port.  In fact, I have 80 connections, including many incoming ones; I also verified that I can telnet to the address/port combination (51.254.131.226:9340).  This used to work with the old client, and I haven't since touched the configs or the network configuration at all.
legendary
Activity: 1092
Merit: 1000
Is the Throne guide currently up to date with the correct folder names/file paths? Everything is fine until I get to adding "./autogen.sh && ./configure  && sudo make install -j 2"  and I get "./autogen.sh: 9:   .autogen.sh: autoreconf: not found"

Yeh sorry about that. The guide was built using Ubuntu 16.04. If you have the choice id use that version.
newbie
Activity: 154
Merit: 0
I've just updated to the latest version (120061) and verified I'm on the correct chain.  But when I try to do a "throne start", I get:

Not capable throne: Could not connect to 51.254.131.226:9340

I verified that I can actually telnet to this IP and port (besides I've not changed anything on the server except for updating the client).  What is the issue here?

Is the throne.conf stored in the folder crown or crowncoin?

I renamed ~/.crowncoin to ~/.crown.  I don't have a throne.conf in it (except for the default), since I have the required output in the throne's wallet.  At least that used to work fine with the old client - do I need one now after the update?

alright now that i know that, are you trying to run the throne locally or remotely? and by locally i mean hot node. so the funds for the throne would stored on the throne instead of in a remote wallet.

Yes, I'm trying to run a hot throne.  (But I'm happy to change that, whatever is easiest.)

I'm not 100% on this but I don't think throne.conf allows you to run a hot Throne.  I'll do a test a bit later when I'm back in front of a computer.

My throne doesn't have a throne.conf, except an empty one that seems to be autogenerated.  I just want to run it, in the simplest possible way - up until now that was to have it "hot" and just run "throne start " on the actual server.  That seems to no longer work for me.

I'm happy with any other way that works - awaiting your test results.  Thanks!
happiness mental satisfaction and consideration is a cater pillar of any task to complete it beautifully..
legendary
Activity: 1722
Merit: 1002
Decentralize Everything
Is the guide currently up to date with the correct folder names/file paths? Everything is fine until I get to adding "./autogen.sh && ./configure  && sudo make install -j 2"  and I get "./autogen.sh: 9:   .autogen.sh: autoreconf: not found"

We've found that they work for ubuntu 14.04 but 16.04 and 16.10 they do not. One of the other guys should be able to chime in shortly. But there are bin's available at https://github.com/Crowndev/crowncoin/releases

Bitchin, I'll give it another shot tomorrow. I was using the latest ubuntu.

Here's the script that I use to compile on 16.10.  It sets a non persistent page file.

Code:
#!/bin/bash
sudo mkdir -p /var/cache/swap/
sudo dd if=/dev/zero of=/var/cache/swap/myswap bs=1M count=2048
sudo mkswap /var/cache/swap/myswap
sudo swapon /var/cache/swap/myswap
sudo apt-get update -y
sudo apt-get upgrade -y
sudo apt-get install git-all dh-autoreconf pkg-config build-essential libtool autotools-dev libssl-dev libevent-dev bsdmainutils libboost-all-dev -y
sudo apt-add-repository ppa:bitcoin/bitcoin
sudo apt-get update -y
sudo apt-get install libdb4.8-dev libdb4.8++-dev -y
mkdir -p src && cd src
git clone https://github.com/Crowndev/crowncoin.git -b master
cd crowncoin/
./autogen.sh && ./configure && sudo make install -j 2
full member
Activity: 171
Merit: 100
Is the guide currently up to date with the correct folder names/file paths? Everything is fine until I get to adding "./autogen.sh && ./configure  && sudo make install -j 2"  and I get "./autogen.sh: 9:   .autogen.sh: autoreconf: not found"

We've found that they work for ubuntu 14.04 but 16.04 and 16.10 they do not. One of the other guys should be able to chime in shortly. But there are bin's available at https://github.com/Crowndev/crowncoin/releases

Bitchin, I'll give it another shot tomorrow. I was using the latest ubuntu.
legendary
Activity: 964
Merit: 1000
I've just updated to the latest version (120061) and verified I'm on the correct chain.  But when I try to do a "throne start", I get:

Not capable throne: Could not connect to 51.254.131.226:9340

I verified that I can actually telnet to this IP and port (besides I've not changed anything on the server except for updating the client).  What is the issue here?

Is the throne.conf stored in the folder crown or crowncoin?

I renamed ~/.crowncoin to ~/.crown.  I don't have a throne.conf in it (except for the default), since I have the required output in the throne's wallet.  At least that used to work fine with the old client - do I need one now after the update?

alright now that i know that, are you trying to run the throne locally or remotely? and by locally i mean hot node. so the funds for the throne would stored on the throne instead of in a remote wallet.

Yes, I'm trying to run a hot throne.  (But I'm happy to change that, whatever is easiest.)

I'm not 100% on this but I don't think throne.conf allows you to run a hot Throne.  I'll do a test a bit later when I'm back in front of a computer.



You should be able to setup a hot node using by adding the throne options to the crown.conf file. Shouldn't need the throne.conf at all for a hot node. Make sure to use an external IP address that has port forwarding enabled to port 9340. I need to get some sleep before i start debugging anymore. I've been working on the pool to try and get it ready for Crown payments Wink

throne=1
throneaddr=
throneprivkey=

And thank you stone for testing Wink
legendary
Activity: 1135
Merit: 1166
I've just updated to the latest version (120061) and verified I'm on the correct chain.  But when I try to do a "throne start", I get:

Not capable throne: Could not connect to 51.254.131.226:9340

I verified that I can actually telnet to this IP and port (besides I've not changed anything on the server except for updating the client).  What is the issue here?

Is the throne.conf stored in the folder crown or crowncoin?

I renamed ~/.crowncoin to ~/.crown.  I don't have a throne.conf in it (except for the default), since I have the required output in the throne's wallet.  At least that used to work fine with the old client - do I need one now after the update?

alright now that i know that, are you trying to run the throne locally or remotely? and by locally i mean hot node. so the funds for the throne would stored on the throne instead of in a remote wallet.

Yes, I'm trying to run a hot throne.  (But I'm happy to change that, whatever is easiest.)

I'm not 100% on this but I don't think throne.conf allows you to run a hot Throne.  I'll do a test a bit later when I'm back in front of a computer.

My throne doesn't have a throne.conf, except an empty one that seems to be autogenerated.  I just want to run it, in the simplest possible way - up until now that was to have it "hot" and just run "throne start " on the actual server.  That seems to no longer work for me.

I'm happy with any other way that works - awaiting your test results.  Thanks!
legendary
Activity: 964
Merit: 1000
Is the guide currently up to date with the correct folder names/file paths? Everything is fine until I get to adding "./autogen.sh && ./configure  && sudo make install -j 2"  and I get "./autogen.sh: 9:   .autogen.sh: autoreconf: not found"

We've found that they work for ubuntu 14.04 but 16.04 and 16.10 they do not. One of the other guys should be able to chime in shortly. But there are bin's available at https://github.com/Crowndev/crowncoin/releases
legendary
Activity: 1722
Merit: 1002
Decentralize Everything
I've just updated to the latest version (120061) and verified I'm on the correct chain.  But when I try to do a "throne start", I get:

Not capable throne: Could not connect to 51.254.131.226:9340

I verified that I can actually telnet to this IP and port (besides I've not changed anything on the server except for updating the client).  What is the issue here?

Is the throne.conf stored in the folder crown or crowncoin?

I renamed ~/.crowncoin to ~/.crown.  I don't have a throne.conf in it (except for the default), since I have the required output in the throne's wallet.  At least that used to work fine with the old client - do I need one now after the update?

alright now that i know that, are you trying to run the throne locally or remotely? and by locally i mean hot node. so the funds for the throne would stored on the throne instead of in a remote wallet.

Yes, I'm trying to run a hot throne.  (But I'm happy to change that, whatever is easiest.)

I'm not 100% on this but I don't think throne.conf allows you to run a hot Throne.  I'll do a test a bit later when I'm back in front of a computer.

legendary
Activity: 1135
Merit: 1166
I've just updated to the latest version (120061) and verified I'm on the correct chain.  But when I try to do a "throne start", I get:

Not capable throne: Could not connect to 51.254.131.226:9340

I verified that I can actually telnet to this IP and port (besides I've not changed anything on the server except for updating the client).  What is the issue here?

Is the throne.conf stored in the folder crown or crowncoin?

I renamed ~/.crowncoin to ~/.crown.  I don't have a throne.conf in it (except for the default), since I have the required output in the throne's wallet.  At least that used to work fine with the old client - do I need one now after the update?

alright now that i know that, are you trying to run the throne locally or remotely? and by locally i mean hot node. so the funds for the throne would stored on the throne instead of in a remote wallet.

Yes, I'm trying to run a hot throne.  (But I'm happy to change that, whatever is easiest.)
full member
Activity: 171
Merit: 100
Is the Throne guide currently up to date with the correct folder names/file paths? Everything is fine until I get to adding "./autogen.sh && ./configure  && sudo make install -j 2"  and I get "./autogen.sh: 9:   .autogen.sh: autoreconf: not found"
member
Activity: 77
Merit: 10
Same issue, give config for hot throne plz
legendary
Activity: 964
Merit: 1000
I've just updated to the latest version (120061) and verified I'm on the correct chain.  But when I try to do a "throne start", I get:

Not capable throne: Could not connect to 51.254.131.226:9340

I verified that I can actually telnet to this IP and port (besides I've not changed anything on the server except for updating the client).  What is the issue here?

Is the throne.conf stored in the folder crown or crowncoin?

I renamed ~/.crowncoin to ~/.crown.  I don't have a throne.conf in it (except for the default), since I have the required output in the throne's wallet.  At least that used to work fine with the old client - do I need one now after the update?

alright now that i know that, are you trying to run the throne locally or remotely? and by locally i mean hot node. so the funds for the throne would stored on the throne instead of in a remote wallet.
legendary
Activity: 1135
Merit: 1166
I've just updated to the latest version (120061) and verified I'm on the correct chain.  But when I try to do a "throne start", I get:

Not capable throne: Could not connect to 51.254.131.226:9340

I verified that I can actually telnet to this IP and port (besides I've not changed anything on the server except for updating the client).  What is the issue here?

Is the throne.conf stored in the folder crown or crowncoin?

I renamed ~/.crowncoin to ~/.crown.  I don't have a throne.conf in it (except for the default), since I have the required output in the throne's wallet.  At least that used to work fine with the old client - do I need one now after the update?
legendary
Activity: 964
Merit: 1000
QT is included for ARM but will only compile if you have installed the dependencies for QT.

This should do the trick:
Code:
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler

Optional but recommended:

Code:
sudo apt-get install libqrencode-dev

Install those and recompile and you should find the QT has been built. In an hour or two  Wink



OK, after some searching, I found the qt wallet compiled in subfolder "src/qt". Should open my eyes before asking stupid questions Smiley Thanks for the help anyway.

Should I add the nodes manually to my conf or may I leave this out. I am running the latest release.

It never hurts to have more nodes in your list Smiley
member
Activity: 112
Merit: 10
QT is included for ARM but will only compile if you have installed the dependencies for QT.

This should do the trick:
Code:
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler

Optional but recommended:

Code:
sudo apt-get install libqrencode-dev

Install those and recompile and you should find the QT has been built. In an hour or two  Wink



OK, after some searching, I found the qt wallet compiled in subfolder "src/qt". Should open my eyes before asking stupid questions Smiley Thanks for the help anyway.

Should I add the nodes manually to my conf or may I leave this out. I am running the latest release.
legendary
Activity: 964
Merit: 1000
0.12.0.61 nodes for anyone searching. Any miners having troubles popping off chain right now. or getting a decent amount of connections. Try adding these into your crown.conf

The dns nodes have been updated but I've have a few reports of connection issues still.
Code:
addnode=80.233.175.26
addnode=163.172.64.208
addnode=78.28.250.81
addnode=158.69.195.55
addnode=81.2.253.228
addnode=158.69.89.107
addnode=158.69.66.58
addnode=158.69.88.85
addnode=158.69.88.80
addnode=158.69.89.104
addnode=158.69.88.66
addnode=158.69.88.82
addnode=158.69.88.91
addnode=158.69.89.0
addnode=92.222.70.58
addnode=158.69.88.72
addnode=158.69.89.113
addnode=158.69.88.93
addnode=158.69.89.115
addnode=158.69.88.76
addnode=158.69.89.116
addnode=158.69.88.90
addnode=85.255.2.60
addnode=158.69.88.74
addnode=158.69.89.109
addnode=158.69.88.94
addnode=158.69.88.78
addnode=158.69.88.101
addnode=158.69.89.105
addnode=158.69.88.92
addnode=158.69.88.98
addnode=158.69.89.1
addnode=158.69.88.65
addnode=158.69.88.70
addnode=158.69.88.95
addnode=158.69.88.75
addnode=158.69.88.73
addnode=158.69.88.97
addnode=158.69.88.7
addnode=92.222.65.157
addnode=158.69.88.99
addnode=158.69.88.71
addnode=158.69.88.68
addnode=158.69.88.8
addnode=158.69.88.67
addnode=158.69.89.108
addnode=158.69.88.81
addnode=158.69.88.89
addnode=158.69.88.96
addnode=158.69.88.64
addnode=158.69.89.119
addnode=158.69.88.87
addnode=92.222.89.52
addnode=158.69.88.63
addnode=85.175.216.200
addnode=94.177.201.57
addnode=85.255.14.196
addnode=85.255.5.40
addnode=185.107.80.17
addnode=158.69.212.239
addnode=158.69.213.140
addnode=94.177.201.241
addnode=151.80.149.209
addnode=151.80.149.210
addnode=151.80.149.211
addnode=94.177.201.98
Jump to: