Bitcoin Forum
June 19, 2024, 10:49:43 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 [14] 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 »
  Print  
Author Topic: [ANN][ENT] Eternity - X11 - No Premine  (Read 83864 times)
0xBAADF00D
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
July 16, 2017, 04:55:57 PM
 #261

Hi there!

I bought ENT to make a node also. I saw that the community doesnt have a facebook and I did one https://www.facebook.com/groups/1926495864238631/
I have just created a Slack for the tutorials to make the nodes. https://eternitycoin.slack.com/
Thanks


Can you post the slack invitation instead? since its not possible to join without it. thanks Smiley
0xBAADF00D
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
July 16, 2017, 06:14:15 PM
 #262

Guide to put a remote EN in a VPS server like Vultr or VPS.ag in Ubuntu 16.04 x64

I know that put this in root should be avoided, but don't have time to make users and so on for all the nodes I have.

After looging for the first time in the VPS follow this instructions. VPS is refered to the remote wallet. Controller wallet is the one with your ENT in your computer. If yo have installed masternodes of other coins, this is quite similar, but wording is always eternitynode.

Change default pass for security:
Quote
passwd root

Some simple firewall rules to improve security a bit:
Quote
ufw default deny
ufw logging on
ufw allow 22/tcp
ufw allow 4854/tcp
ufw allow 4855/tcp
ufw limit OpenSSH
ufw --force enable


Install the repo:
Quote

Wallet first start to create folders and files:
Quote
./eternityd

After the error message we create our eternity.conf file:
Quote
cd
cd .eternity/
nano eternity.conf

Write in it and save:
Quote
rpcuser=long random username
rpcpassword=longer random password
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
logtimestamps=1
maxconnections=256
eternitynode=1
eternitynodeprivkey=XXXX
addnode=176.65.120.174
addnode=176.65.120.5
addnode=2.95.220.18
addnode=46.119.117.105
addnode=5.19.241.85


In the controller wallet, open console and:
Quote
eternitynode genkey
You get the EN private_key
Quote
getaccountaddress <node-alias>
Associated address to the EN.

Send the collateral (exactly 1000 ENT in one trasaction) to the address generated before.

Back in the VPS:
Quote
cd
cd .eternity/
nano eternity.conf

Put your private_key obtained with enternitynode genkey before in the place XXXX and save.

Then:
Quote
cd
cd eternity-0.12.0/bin
./eternityd

In the wallet:
Quote
eternitynode getoutputs
We get the collateral TX_ID and TX_INDEX(0 or 1) (85898ae7956757657ced9689687687a 1 for example)

We open eternitynode.conf in our controller wallet and put a new line as:
Quote
Node-alias VPS_IP:4855 Private_key TX_ID TX_INDEX
Save the file
Close and reopen controller wallet

In VPS, check the wallet is already synced:
Quote
./eternity-cli getinfo
And take a look at block number to be sure EN is synced.

Check node creation transaction has already at least 16 confirmations. In the console:

Quote
Eternitynode start-alias <node-alias>

Message : eternitynode <node-alias> succesfully started blablablablabla...

Back in the VPS:
Quote
./eternity-cli eternitynode status

   "status" : "Eternitynode successfully started"

And done. My nodes have the bad habit to fall down every 10-15 days, take a look sometimes to their status with:
Quote
eternitynode list-conf

Donation address (give me a bit of your returns, I'm a poor man Wink ) : EenLewAUJNYR2EWVd4qRCyq7vrzysLkpRb

Salute, and any correction will be appreciated.

Thanks for the guide, I've just added a masternode Smiley

Also for those who need it more visually I found a video on youtube: https://www.youtube.com/watch?v=yaeZ-qKgK7I&feature=youtu.be

fher80
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
July 16, 2017, 07:08:46 PM
 #263

Slack group Invitation

Join my Slack team! https://join.slack.com/t/eternitycoin/shared_invite/MjEzNTgxMjUwNzI1LTE1MDAyMDA3MzEtZTQ3NGQyN2RkZQ
MrDreamerrr
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
July 16, 2017, 10:15:25 PM
 #264

How much do you have to hold for a masternode?
0xBAADF00D
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
July 16, 2017, 10:26:42 PM
 #265

How much do you have to hold for a masternode?

1000 coins Smiley
MrDreamerrr
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
July 16, 2017, 10:45:26 PM
 #266

How much do you have to hold for a masternode?

1000 coins Smiley

Thanks!
0xBAADF00D
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
July 17, 2017, 07:16:18 AM
 #267

Guide to put a remote EN in a VPS server like Vultr or VPS.ag in Ubuntu 16.04 x64

I know that put this in root should be avoided, but don't have time to make users and so on for all the nodes I have.

After looging for the first time in the VPS follow this instructions. VPS is refered to the remote wallet. Controller wallet is the one with your ENT in your computer. If yo have installed masternodes of other coins, this is quite similar, but wording is always eternitynode.

Change default pass for security:
Quote
passwd root

Some simple firewall rules to improve security a bit:
Quote
ufw default deny
ufw logging on
ufw allow 22/tcp
ufw allow 4854/tcp
ufw allow 4855/tcp
ufw limit OpenSSH
ufw --force enable


Install the repo:
Quote

Wallet first start to create folders and files:
Quote
./eternityd

After the error message we create our eternity.conf file:
Quote
cd
cd .eternity/
nano eternity.conf

Write in it and save:
Quote
rpcuser=long random username
rpcpassword=longer random password
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
logtimestamps=1
maxconnections=256
eternitynode=1
eternitynodeprivkey=XXXX
addnode=176.65.120.174
addnode=176.65.120.5
addnode=2.95.220.18
addnode=46.119.117.105
addnode=5.19.241.85


In the controller wallet, open console and:
Quote
eternitynode genkey
You get the EN private_key
Quote
getaccountaddress <node-alias>
Associated address to the EN.

Send the collateral (exactly 1000 ENT in one trasaction) to the address generated before.

Back in the VPS:
Quote
cd
cd .eternity/
nano eternity.conf

Put your private_key obtained with enternitynode genkey before in the place XXXX and save.

Then:
Quote
cd
cd eternity-0.12.0/bin
./eternityd

In the wallet:
Quote
eternitynode getoutputs
We get the collateral TX_ID and TX_INDEX(0 or 1) (85898ae7956757657ced9689687687a 1 for example)

We open eternitynode.conf in our controller wallet and put a new line as:
Quote
Node-alias VPS_IP:4855 Private_key TX_ID TX_INDEX
Save the file
Close and reopen controller wallet

In VPS, check the wallet is already synced:
Quote
./eternity-cli getinfo
And take a look at block number to be sure EN is synced.

Check node creation transaction has already at least 16 confirmations. In the console:

Quote
Eternitynode start-alias <node-alias>

Message : eternitynode <node-alias> succesfully started blablablablabla...

Back in the VPS:
Quote
./eternity-cli eternitynode status

   "status" : "Eternitynode successfully started"

And done. My nodes have the bad habit to fall down every 10-15 days, take a look sometimes to their status with:
Quote
eternitynode list-conf

Donation address (give me a bit of your returns, I'm a poor man Wink ) : EenLewAUJNYR2EWVd4qRCyq7vrzysLkpRb

Salute, and any correction will be appreciated.


berron would be great if you have also manual for miners, I saw that some people had problems setting them up.
Smokeyw
Full Member
***
Offline Offline

Activity: 228
Merit: 100


View Profile WWW
July 17, 2017, 02:05:09 PM
 #268

nice got my masternode on windows running
now we need to hype this coin like chaincoin hodl gang  Grin
Nahpets
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
July 17, 2017, 04:26:07 PM
 #269

great manual, thank you.
I have two questions
it has only 8 outgoing connection, and 0 incoming, is it ok?
how long will it takes to see the first income?
0xBAADF00D
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
July 17, 2017, 06:48:51 PM
 #270

great manual, thank you.
I have two questions
it has only 8 outgoing connection, and 0 incoming, is it ok?
how long will it takes to see the first income?


I got first reward after about 24h
Smokeyw
Full Member
***
Offline Offline

Activity: 228
Merit: 100


View Profile WWW
July 17, 2017, 06:50:34 PM
 #271

so after a few hours i check with eternitynode list-conf if everything work
what is status" : "MISSING ?
Nahpets
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
July 17, 2017, 07:04:50 PM
 #272

it was my fault, i forgot to write down the current ip in the config file  Lips sealed

status was "enabled"
0xBAADF00D
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
July 17, 2017, 07:28:55 PM
 #273

so after a few hours i check with eternitynode list-conf if everything work
what is status" : "MISSING ?

did it started successfully? maybe you have something missing on your configuration file
Smokeyw
Full Member
***
Offline Offline

Activity: 228
Merit: 100


View Profile WWW
July 17, 2017, 08:50:41 PM
 #274

so after a few hours i check with eternitynode list-conf if everything work
what is status" : "MISSING ?

did it started successfully? maybe you have something missing on your configuration file

yup the start was a success and status was enable first but after 2 hours or so status is missing
but still masternode is enable
dekm0101
Member
**
Offline Offline

Activity: 148
Merit: 11


View Profile WWW
July 18, 2017, 01:25:29 AM
Last edit: July 18, 2017, 02:32:59 AM by dekm0101
 #275

nice got my masternode on windows running
now we need to hype this coin like chaincoin hodl gang  Grin

I have that HODL fever to dude!  Managed to get one masternode of CHC before it exploded.  Now I'm just using extra coins from there to buy Eternity masternodes.
da10ge
Newbie
*
Offline Offline

Activity: 59
Merit: 0


View Profile
July 18, 2017, 01:30:36 AM
 #276

I'm glad to be a part of this team. I would continue posting sensible ideas and share onto it to my greatest extent.
I would love to carry this as my ad on twitter, if possible.
0xBAADF00D
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
July 18, 2017, 07:37:20 AM
 #277

so after a few hours i check with eternitynode list-conf if everything work
what is status" : "MISSING ?

did it started successfully? maybe you have something missing on your configuration file

yup the start was a success and status was enable first but after 2 hours or so status is missing
but still masternode is enable

Come join the slack and to the very fast growing community and get help there:
https://join.slack.com/t/eternitycoin/shared_invite/MjEzNTgxMjUwNzI1LTE1MDAyMDA3MzEtZTQ3NGQyN2RkZQ
currently there are 484 masternodes and reward is delivered after ~24h
akamy789
Full Member
***
Offline Offline

Activity: 165
Merit: 100


View Profile
July 18, 2017, 07:43:04 AM
 #278

The exact details of the bounty haven't come out yet Can I participate in this new account?
0xBAADF00D
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
July 18, 2017, 10:24:12 AM
 #279

The exact details of the bounty haven't come out yet Can I participate in this new account?


Sure, join the slack and get help there, the invitation link is in previous message
CryptoBatsy
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
July 18, 2017, 03:14:00 PM
 #280

Guide to put a remote EN in a VPS server like Vultr or VPS.ag in Ubuntu 16.04 x64

I know that put this in root should be avoided, but don't have time to make users and so on for all the nodes I have.

After looging for the first time in the VPS follow this instructions. VPS is refered to the remote wallet. Controller wallet is the one with your ENT in your computer. If yo have installed masternodes of other coins, this is quite similar, but wording is always eternitynode.

Change default pass for security:
Quote
passwd root

Some simple firewall rules to improve security a bit:
Quote
ufw default deny
ufw logging on
ufw allow 22/tcp
ufw allow 4854/tcp
ufw allow 4855/tcp
ufw limit OpenSSH
ufw --force enable


Install the repo:
Quote

Wallet first start to create folders and files:
Quote
./eternityd

After the error message we create our eternity.conf file:
Quote
cd
cd .eternity/
nano eternity.conf

Write in it and save:
Quote
rpcuser=long random username
rpcpassword=longer random password
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
logtimestamps=1
maxconnections=256
eternitynode=1
eternitynodeprivkey=XXXX
addnode=176.65.120.174
addnode=176.65.120.5
addnode=2.95.220.18
addnode=46.119.117.105
addnode=5.19.241.85


In the controller wallet, open console and:
Quote
eternitynode genkey
You get the EN private_key
Quote
getaccountaddress <node-alias>
Associated address to the EN.

Send the collateral (exactly 1000 ENT in one trasaction) to the address generated before.

Back in the VPS:
Quote
cd
cd .eternity/
nano eternity.conf

Put your private_key obtained with enternitynode genkey before in the place XXXX and save.

Then:
Quote
cd
cd eternity-0.12.0/bin
./eternityd

In the wallet:
Quote
eternitynode getoutputs
We get the collateral TX_ID and TX_INDEX(0 or 1) (85898ae7956757657ced9689687687a 1 for example)

We open eternitynode.conf in our controller wallet and put a new line as:
Quote
Node-alias VPS_IP:4855 Private_key TX_ID TX_INDEX
Save the file
Close and reopen controller wallet

In VPS, check the wallet is already synced:
Quote
./eternity-cli getinfo
And take a look at block number to be sure EN is synced.

Check node creation transaction has already at least 16 confirmations. In the console:

Quote
Eternitynode start-alias <node-alias>

Message : eternitynode <node-alias> succesfully started blablablablabla...

Back in the VPS:
Quote
./eternity-cli eternitynode status

   "status" : "Eternitynode successfully started"

And done. My nodes have the bad habit to fall down every 10-15 days, take a look sometimes to their status with:
Quote
eternitynode list-conf

Donation address (give me a bit of your returns, I'm a poor man Wink ) : EenLewAUJNYR2EWVd4qRCyq7vrzysLkpRb

Salute, and any correction will be appreciated.

Thanks for the guide, I've just added a masternode Smiley

Also for those who need it more visually I found a video on youtube: https://www.youtube.com/watch?v=yaeZ-qKgK7I&feature=youtu.be




Do you know what are the masternode rewards right now also I have concerns whether the dev have has abandoned this project?
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 [14] 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!