Pages:
Author

Topic: [ANN]INNOVA - We strive for innovation and adoption! | Hybrid Tribus coin - page 82. (Read 154440 times)

newbie
Activity: 4
Merit: 0
Ok I've attempted upgrading and now in some way I've were left with a brand new pocket book and also the coins from my final walletOraddress are no longer thereI did a backup while using back-up pocket book choice before I improved and tried to fix thingsHowever I can't use whatever choice to restore my pocket book from the back-up ?How am I designed to recover my pocket book in the backup I created?
newbie
Activity: 25
Merit: 0
http://
VPS has 4 gb worth of swap space. Typed: FREE and this is what it brought back:
Code:
              total        used        free      shared  buff/cache   available
Mem:         499940       42852       17724        5080      439364      420872
Swap:       5119996       19968     5100028

These are the steps I did:

# --------------------------
# 1. Install dependencies
# --------------------------
Code:
sudo apt-get -y update && sudo apt-get -y install build-essential libssl-dev libdb++-dev libboost-all-dev libcrypto++-dev libqrencode-dev libminiupnpc-dev libgmp-dev libgmp3-dev autoconf autogen automake libtool autotools-dev pkg-config bsdmainutils software-properties-common libzmq3-dev libminiupnpc-dev libssl-dev libevent-dev

sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev -y

# --------------------------
# 2. Clone repo
# --------------------------
Code:
git clone https://github.com/innovacoin/innova.git

# --------------------------
# 3. Build innova
# --------------------------
Code:
sudo ./autogen.sh
sudo ./configure
sudo make

# --------------------------
# 4. Run innova daemon
# --------------------------
Code:
~/innova/src/innovad -daemon

# --------------------------
# 5. Stop innova daemon
# --------------------------
Code:
~/innova/src/innova-cli stop

# --------------------------
# 6. Edit config file
# --------------------------
Code:
vi ~/.innovacore/innova.conf

Add to file:
Code:
rpcuser=USERNAME
rpcpassword=PASSWORD
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0

# --------------------------
# 7. Start innovad
# --------------------------
Code:
~/innova/src/innovad

# --------------------------
# 8. Check last block synced
# --------------------------
Code:
~/innova/src/innova-cli getmininginfo

{
    "blocks" : 19057,
    "currentblocksize" : 0,
    "currentblocktx" : 0,
    "difficulty" : 86981.82878668,
    "blockvalue" : 150000000000,
    "netmhashps" : 1226758.61464298,
    "netstakeweight" : 303434916154333.12500000,
    "errors" : "",
    "pooledtx" : 0,
    "stakeweight" : {
        "minimum" : 0,
        "maximum" : 0,
        "combined" : 0
    },
    "testnet" : false
}

# --------------------------
# 9. On your local Windows innova wallet click Tools->Debug Console and type
# --------------------------
Code:
masternode genkey

Generates masternode private key: MASTERNODE_PRIVATE_KEY

Code:
getaccountaddress INN_MASTERNODE

Generates masternode address: GENERATED_MASTERNODE_ADDRESS

# --------------------------
# 10. Send 1000 INN to the address above and wait for 15 confirmations, Make sure to send 1000.1
# --------------------------


# --------------------------
# 11. Update your innova.conf file on VPS
# --------------------------
Code:
vi ~/.innovacore/innova.conf 

Add to the file:
Code:
rpcuser=USERNAME
rpcpassword=PASSWORD
bind=VPS_IP_ADDRESS:14520
masternode=1
masternodeprivkey=MASTERNODE_PRIVATE_KEY

# --------------------------
# 12. On Windows wallet console TYPE
# --------------------------
Code:
masternode outputs

{
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" : "1"
}

# --------------------------
# 13. On Windows edit masternode.conf
# --------------------------

Code:
#LABEL PUBLICIP:PORT MASTERNODEKEY COLLATERALTX INDEX

INN_MASTERNODE VPS_IP_ADDRESS:14520 MASTERNODE_PRIVATE_KEY xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 1

# --------------------------
# 14. Start your VPS innovad daemon
# --------------------------
Code:
~/innova/src/innovad -daemon

# --------------------------
# 15. Restart your windows wallet
# --------------------------




Thanks a ton. Currently I am at a new issue:

Code:
root@MIAMNZEN1:~# git clone https://github.com/innovacoin/innova.git
fatal: destination path 'innova' already exists and is not an empty directory.
root@MIAMNZEN1:~# sudo ./autogen.sh
sudo: ./autogen.sh: command not found
root@MIAMNZEN1:~# sudo ./configure
sudo: ./configure: command not found
root@MIAMNZEN1:~# sudo make
make: *** No targets specified and no makefile found.  Stop.
root@MIAMNZEN1:~#

Currently my nodes show up ENABLED from a third party point of view but not sure if it is working. will wait to see if payments come through.
http://oi65.tinypic.com/r19ytz.jpg

For Reference... When checking Masternode Status on MN1:
Code:

{
  "vin": "CTxIn(COutPoint(TXOUTPUTOMITTEDFORPRIVACY, 1), scriptSig=)",
  "service": "walletip omitted:14520",
  "payee": "MN1 address omitted for privacy",
  "status": "Masternode successfully started"
}

Checking masternode status on MN2:
Code:
{
  "vin": "CTxIn(COutPoint(TXOUTPUTOMITTEDFORPRIVACY, 1), scriptSig=)",
  "service": "walletip omitted:14520",
  "payee": " address omitted for privacy",
  "status": "Masternode successfully started"
}

I get stuck at this point:

root@vultr:~# sudo ./autogen.sh
sudo: ./autogen.sh: command not found

Any solution?
jr. member
Activity: 56
Merit: 10
Nice to be part of this.
member
Activity: 476
Merit: 14
Bcnex - The Ultimate Blockchain Trading Platform
Has signature campaign been opened ? thanks
member
Activity: 170
Merit: 10
I've followed the steps for a masternode and i've tried both ways (hosting masternode wallet on vps  and hosting the masternode wallet on windows) but in both cases when I enter 'masternode outputs' in the console or in the client wallet in ubuntu it just comes back blank.  any ideas?
full member
Activity: 280
Merit: 100
Code:
root@MIAMNZEN1:~# git clone https://github.com/innovacoin/innova.git
fatal: destination path 'innova' already exists and is not an empty directory.
root@MIAMNZEN1:~# sudo ./autogen.sh
sudo: ./autogen.sh: command not found
root@MIAMNZEN1:~# sudo ./configure
sudo: ./configure: command not found
root@MIAMNZEN1:~# sudo make
make: *** No targets specified and no makefile found.  Stop.
root@MIAMNZEN1:~#

this error means that you already have innova directory, you can delete it and run it again or name it differently.

newbie
Activity: 54
Merit: 0
http://
VPS has 4 gb worth of swap space. Typed: FREE and this is what it brought back:
Code:
              total        used        free      shared  buff/cache   available
Mem:         499940       42852       17724        5080      439364      420872
Swap:       5119996       19968     5100028

These are the steps I did:

# --------------------------
# 1. Install dependencies
# --------------------------
Code:
sudo apt-get -y update && sudo apt-get -y install build-essential libssl-dev libdb++-dev libboost-all-dev libcrypto++-dev libqrencode-dev libminiupnpc-dev libgmp-dev libgmp3-dev autoconf autogen automake libtool autotools-dev pkg-config bsdmainutils software-properties-common libzmq3-dev libminiupnpc-dev libssl-dev libevent-dev

sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev -y

# --------------------------
# 2. Clone repo
# --------------------------
Code:
git clone https://github.com/innovacoin/innova.git

# --------------------------
# 3. Build innova
# --------------------------
Code:
sudo ./autogen.sh
sudo ./configure
sudo make

# --------------------------
# 4. Run innova daemon
# --------------------------
Code:
~/innova/src/innovad -daemon

# --------------------------
# 5. Stop innova daemon
# --------------------------
Code:
~/innova/src/innova-cli stop

# --------------------------
# 6. Edit config file
# --------------------------
Code:
vi ~/.innovacore/innova.conf

Add to file:
Code:
rpcuser=USERNAME
rpcpassword=PASSWORD
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0

# --------------------------
# 7. Start innovad
# --------------------------
Code:
~/innova/src/innovad

# --------------------------
# 8. Check last block synced
# --------------------------
Code:
~/innova/src/innova-cli getmininginfo

{
    "blocks" : 19057,
    "currentblocksize" : 0,
    "currentblocktx" : 0,
    "difficulty" : 86981.82878668,
    "blockvalue" : 150000000000,
    "netmhashps" : 1226758.61464298,
    "netstakeweight" : 303434916154333.12500000,
    "errors" : "",
    "pooledtx" : 0,
    "stakeweight" : {
        "minimum" : 0,
        "maximum" : 0,
        "combined" : 0
    },
    "testnet" : false
}

# --------------------------
# 9. On your local Windows innova wallet click Tools->Debug Console and type
# --------------------------
Code:
masternode genkey

Generates masternode private key: MASTERNODE_PRIVATE_KEY

Code:
getaccountaddress INN_MASTERNODE

Generates masternode address: GENERATED_MASTERNODE_ADDRESS

# --------------------------
# 10. Send 1000 INN to the address above and wait for 15 confirmations, Make sure to send 1000.1
# --------------------------


# --------------------------
# 11. Update your innova.conf file on VPS
# --------------------------
Code:
vi ~/.innovacore/innova.conf 

Add to the file:
Code:
rpcuser=USERNAME
rpcpassword=PASSWORD
bind=VPS_IP_ADDRESS:14520
masternode=1
masternodeprivkey=MASTERNODE_PRIVATE_KEY

# --------------------------
# 12. On Windows wallet console TYPE
# --------------------------
Code:
masternode outputs

{
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" : "1"
}

# --------------------------
# 13. On Windows edit masternode.conf
# --------------------------

Code:
#LABEL PUBLICIP:PORT MASTERNODEKEY COLLATERALTX INDEX

INN_MASTERNODE VPS_IP_ADDRESS:14520 MASTERNODE_PRIVATE_KEY xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 1

# --------------------------
# 14. Start your VPS innovad daemon
# --------------------------
Code:
~/innova/src/innovad -daemon

# --------------------------
# 15. Restart your windows wallet
# --------------------------




Thanks a ton. Currently I am at a new issue:

Code:
root@MIAMNZEN1:~# git clone https://github.com/innovacoin/innova.git
fatal: destination path 'innova' already exists and is not an empty directory.
root@MIAMNZEN1:~# sudo ./autogen.sh
sudo: ./autogen.sh: command not found
root@MIAMNZEN1:~# sudo ./configure
sudo: ./configure: command not found
root@MIAMNZEN1:~# sudo make
make: *** No targets specified and no makefile found.  Stop.
root@MIAMNZEN1:~#

Currently my nodes show up ENABLED from a third party point of view but not sure if it is working. will wait to see if payments come through.
http://oi65.tinypic.com/r19ytz.jpg

For Reference... When checking Masternode Status on MN1:
Code:

{
  "vin": "CTxIn(COutPoint(TXOUTPUTOMITTEDFORPRIVACY, 1), scriptSig=)",
  "service": "walletip omitted:14520",
  "payee": "MN1 address omitted for privacy",
  "status": "Masternode successfully started"
}

Checking masternode status on MN2:
Code:
{
  "vin": "CTxIn(COutPoint(TXOUTPUTOMITTEDFORPRIVACY, 1), scriptSig=)",
  "service": "walletip omitted:14520",
  "payee": " address omitted for privacy",
  "status": "Masternode successfully started"
}
newbie
Activity: 43
Merit: 0
it looks like great project which contains great ideas from developers. I am in. how about signature campaigns?
full member
Activity: 280
Merit: 100
VPS has 4 gb worth of swap space. Typed: FREE and this is what it brought back:
Code:
              total        used        free      shared  buff/cache   available
Mem:         499940       42852       17724        5080      439364      420872
Swap:       5119996       19968     5100028

These are the steps I did:

# --------------------------
# 1. Install dependencies
# --------------------------
Code:
sudo apt-get -y update && sudo apt-get -y install build-essential libssl-dev libdb++-dev libboost-all-dev libcrypto++-dev libqrencode-dev libminiupnpc-dev libgmp-dev libgmp3-dev autoconf autogen automake libtool autotools-dev pkg-config bsdmainutils software-properties-common libzmq3-dev libminiupnpc-dev libssl-dev libevent-dev

sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev -y

# --------------------------
# 2. Clone repo
# --------------------------
Code:
git clone https://github.com/innovacoin/innova.git

# --------------------------
# 3. Build innova
# --------------------------
Code:
sudo ./autogen.sh
sudo ./configure
sudo make

# --------------------------
# 4. Run innova daemon
# --------------------------
Code:
~/innova/src/innovad -daemon

# --------------------------
# 5. Stop innova daemon
# --------------------------
Code:
~/innova/src/innova-cli stop

# --------------------------
# 6. Edit config file
# --------------------------
Code:
vi ~/.innovacore/innova.conf

Add to file:
Code:
rpcuser=USERNAME
rpcpassword=PASSWORD
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0

# --------------------------
# 7. Start innovad
# --------------------------
Code:
~/innova/src/innovad

# --------------------------
# 8. Check last block synced
# --------------------------
Code:
~/innova/src/innova-cli getmininginfo

{
    "blocks" : 19057,
    "currentblocksize" : 0,
    "currentblocktx" : 0,
    "difficulty" : 86981.82878668,
    "blockvalue" : 150000000000,
    "netmhashps" : 1226758.61464298,
    "netstakeweight" : 303434916154333.12500000,
    "errors" : "",
    "pooledtx" : 0,
    "stakeweight" : {
        "minimum" : 0,
        "maximum" : 0,
        "combined" : 0
    },
    "testnet" : false
}

# --------------------------
# 9. On your local Windows innova wallet click Tools->Debug Console and type
# --------------------------
Code:
masternode genkey

Generates masternode private key: MASTERNODE_PRIVATE_KEY

Code:
getaccountaddress INN_MASTERNODE

Generates masternode address: GENERATED_MASTERNODE_ADDRESS

# --------------------------
# 10. Send 1000 INN to the address above and wait for 15 confirmations, Make sure to send 1000.1
# --------------------------


# --------------------------
# 11. Update your innova.conf file on VPS
# --------------------------
Code:
vi ~/.innovacore/innova.conf 

Add to the file:
Code:
rpcuser=USERNAME
rpcpassword=PASSWORD
bind=VPS_IP_ADDRESS:14520
masternode=1
masternodeprivkey=MASTERNODE_PRIVATE_KEY

# --------------------------
# 12. On Windows wallet console TYPE
# --------------------------
Code:
masternode outputs

{
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" : "1"
}

# --------------------------
# 13. On Windows edit masternode.conf
# --------------------------

Code:
#LABEL PUBLICIP:PORT MASTERNODEKEY COLLATERALTX INDEX

INN_MASTERNODE VPS_IP_ADDRESS:14520 MASTERNODE_PRIVATE_KEY xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 1

# --------------------------
# 14. Start your VPS innovad daemon
# --------------------------
Code:
~/innova/src/innovad -daemon

# --------------------------
# 15. Restart your windows wallet
# --------------------------


newbie
Activity: 47
Merit: 0
do you have signature campaign for INNOVA community? thanks
newbie
Activity: 54
Merit: 0
VPS has 4 gb worth of swap space. Typed: FREE and this is what it brought back:
Code:
              total        used        free      shared  buff/cache   available
Mem:         499940       42852       17724        5080      439364      420872
Swap:       5119996       19968     5100028
full member
Activity: 280
Merit: 100
Here is how I setup Masternode on Ubuntu VPS. Hope it is helpful

# For Ubuntu 14.04 64-bit VPS. Assumes you have all the latest dependencies installed.
# fyi, I followed vivo linux guide to install dependencies

# download latest code from git
cd ~
git clone https://github.com/innovacoin/innova.git

# Install files
cd ~/innova/
./autogen.sh
./configure --without-gui
make
sudo make install

# start the daemon and let the wallet sync - this may take few minutes. periodically run 'getinfo' command and check 'blocks' parameter.
# That number should be increasing. You can find the current blockcount from block explorer link on page 1
innovad --daemon
innova-cli getinfo

# Get wallet address and masternode private key. Save both keys in a text file for future use
innova-cli getaccountaddress 0
innova-cli masternode genkey
              
# Stop the daemon and edit the .conf file
innova-cli stop
nano ~/.innovacore/innova.conf

# Add the following lines to innova.conf file
masternode=1
masternodeprivkey=

# Restat the daemon. Send exactly 1000 Innova to the wallet address that you saved in the previous step.
# Wait for 15 confirmations. This may take few mintues. Periodically check with 'listtransactions'.
# From 'listtransactions', also find the 'txid' and save it for future use
innovad --daemon
innova-cli getinfo
innova-cli listtransactions

# After 15+ confirmations
innova-cli masternode start

# To confirm if the Masternode is running. Masternode status may show PRE-ENABLED for a short period and then should say ENABLED
innova-cli masternode list | grep

# other commands for status
innova-cli masternode status
innova-cli getwalletinfo


I am stuck @


# Install files
cd ~/innova/
./autogen.sh
./configure --without-gui
make
sudo make install


It is saying:

make: *** No rule to make target 'install'.  Stop.

Can anyone help or point out to a guide about running a node remotely? or a propper guide to run two nodes in one wallet on windows using two VPS servers each with their own IP would be greatly appreciated.

I get POSE_BAN on my nodes because they seem to be running out of my local wallet IP rather than the VPS servers and it is causing some mix up here.  It is rather annoying to be following guides for other coins that don't address these details.

Did you add swap to your VPS?

newbie
Activity: 54
Merit: 0
Here is how I setup Masternode on Ubuntu VPS. Hope it is helpful

# For Ubuntu 14.04 64-bit VPS. Assumes you have all the latest dependencies installed.
# fyi, I followed vivo linux guide to install dependencies

# download latest code from git
cd ~
git clone https://github.com/innovacoin/innova.git

# Install files
cd ~/innova/
./autogen.sh
./configure --without-gui
make
sudo make install

# start the daemon and let the wallet sync - this may take few minutes. periodically run 'getinfo' command and check 'blocks' parameter.
# That number should be increasing. You can find the current blockcount from block explorer link on page 1
innovad --daemon
innova-cli getinfo

# Get wallet address and masternode private key. Save both keys in a text file for future use
innova-cli getaccountaddress 0
innova-cli masternode genkey
              
# Stop the daemon and edit the .conf file
innova-cli stop
nano ~/.innovacore/innova.conf

# Add the following lines to innova.conf file
masternode=1
masternodeprivkey=

# Restat the daemon. Send exactly 1000 Innova to the wallet address that you saved in the previous step.
# Wait for 15 confirmations. This may take few mintues. Periodically check with 'listtransactions'.
# From 'listtransactions', also find the 'txid' and save it for future use
innovad --daemon
innova-cli getinfo
innova-cli listtransactions

# After 15+ confirmations
innova-cli masternode start

# To confirm if the Masternode is running. Masternode status may show PRE-ENABLED for a short period and then should say ENABLED
innova-cli masternode list | grep

# other commands for status
innova-cli masternode status
innova-cli getwalletinfo


I am stuck @


# Install files
cd ~/innova/
./autogen.sh
./configure --without-gui
make
sudo make install


It is saying:

make: *** No rule to make target 'install'.  Stop.

Can anyone help or point out to a guide about running a node remotely? or a propper guide to run two nodes in one wallet on windows using two VPS servers each with their own IP would be greatly appreciated.

I get POSE_BAN on my nodes because they seem to be running out of my local wallet IP rather than the VPS servers and it is causing some mix up here.  It is rather annoying to be following guides for other coins that don't address these details.

Currently I have two VPS servers, for the sake of the argument. Lets call them MN1 and MN2. I will use phony IP numbers to make this as easy to understand as possible for anyone going through this in the future and if possible use whatever help I am offered here to solve their problem.

MN1 has IP: 123.123.123.3
MN2 has IP: 122.122.122.2

Wallet pc IP: 100.100.100.1

the following are my conf files:
Innova.conf
Code:
masternode=1
masternodeprivkey="masternode genkey result goes here without""
externalip=100.100.100.1

masternode.conf
Code:
mn1 123.123.123.3:14520 "masternode genkey result goes here without"" "tx output obtained by typing on debug: masternode outputs" 1
mn2 122.122.122.2:14520 "masternode genkey result goes here without"" "tx output obtained by typing on debug: masternode outputs" 1

Can anyone point out what I am missing?

I have two nodes going online, both showing enabled if I run separate wallets inside the same pc, but I get POSE_BAN when i do that. Running both from the same wallet gives me 1 enabled, and one that remains PRE_ENABLED without ever changing.
newbie
Activity: 47
Merit: 0
how about signature campaigns? thanks dev
member
Activity: 188
Merit: 10
can you tell, what is the min contribution amount for your project? 0.01 eth? 
newbie
Activity: 25
Merit: 0
Here is how I setup Masternode on Ubuntu VPS. Hope it is helpful

# For Ubuntu 14.04 64-bit VPS. Assumes you have all the latest dependencies installed.
# fyi, I followed vivo linux guide to install dependencies

# download latest code from git
cd ~
git clone https://github.com/innovacoin/innova.git

# Install files
cd ~/innova/
./autogen.sh
./configure --without-gui
make
sudo make install

# start the daemon and let the wallet sync - this may take few minutes. periodically run 'getinfo' command and check 'blocks' parameter.
# That number should be increasing. You can find the current blockcount from block explorer link on page 1
innovad --daemon
innova-cli getinfo

# Get wallet address and masternode private key. Save both keys in a text file for future use
innova-cli getaccountaddress 0
innova-cli masternode genkey
              
# Stop the daemon and edit the .conf file
innova-cli stop
nano ~/.innovacore/innova.conf

# Add the following lines to innova.conf file
masternode=1
masternodeprivkey=

# Restat the daemon. Send exactly 1000 Innova to the wallet address that you saved in the previous step.
# Wait for 15 confirmations. This may take few mintues. Periodically check with 'listtransactions'.
# From 'listtransactions', also find the 'txid' and save it for future use
innovad --daemon
innova-cli getinfo
innova-cli listtransactions

# After 15+ confirmations
innova-cli masternode start

# To confirm if the Masternode is running. Masternode status may show PRE-ENABLED for a short period and then should say ENABLED
innova-cli masternode list | grep

# other commands for status
innova-cli masternode status
innova-cli getwalletinfo



Hi,

I'm getting an error when executing ./autogen.sh;
It's responding this: ./autogen.sh: 9: ./autogen.sh: autoreconf: not found

If anyone can help it's much appreciated

EDIT: solved by executing apt-get dh-autoreconf

Can you please help me? I got the same error and tried your solution but it says "E: Invalid operation dh-autoreconf"
member
Activity: 188
Merit: 10
Is there any mining options?
hero member
Activity: 669
Merit: 520
tl;dir
anyone mining it with cpu?
any maths / stats / calculations ?
member
Activity: 188
Merit: 10
i can translate white paper in Spanish and Portuguese, if relevant 
newbie
Activity: 170
Merit: 0
Do we have signature campaign? thanks
Pages:
Jump to: