Bitcoin Forum
July 08, 2024, 11:29:15 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 [113] 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 »
  Print  
Author Topic: ✅|ANN| 🌍DESIRE |NeoScrypt| |🔨MasterNodes🔨| - COIN OF YOUR DREAMS!  (Read 167311 times)
Anatoliyb50
Sr. Member
****
Offline Offline

Activity: 377
Merit: 250


View Profile
December 27, 2017, 07:58:59 PM
 #2241

I understand - to create a Master Noda you need to register on some kind of hosting and buy a server. Somewhere before I met the publication, that you can do Master Nodu on the Raspbian microcomputer. Maybe someone will share the installation experience, especially since this microcomputer also works on Linux. I want in the near future to buy Raspbian 3B.  Wink
Lavdanoid
Newbie
*
Offline Offline

Activity: 70
Merit: 0


View Profile
December 27, 2017, 08:40:31 PM
 #2242

I understand - to create a Master Noda you need to register on some kind of hosting and buy a server. Somewhere before I met the publication, that you can do Master Nodu on the Raspbian microcomputer. Maybe someone will share the installation experience, especially since this microcomputer also works on Linux. I want in the near future to buy Raspbian 3B.  Wink

Check "MasterNode Setup Guides" from the thread first post. Maybe they will help
Anatoliyb50
Sr. Member
****
Offline Offline

Activity: 377
Merit: 250


View Profile
December 27, 2017, 08:49:46 PM
 #2243

I understand - to create a Master Noda you need to register on some kind of hosting and buy a server. Somewhere before I met the publication, that you can do Master Nodu on the Raspbian microcomputer. Maybe someone will share the installation experience, especially since this microcomputer also works on Linux. I want in the near future to buy Raspbian 3B.  Wink

Check "MasterNode Setup Guides" from the thread first post. Maybe they will help

Thanks, I'll take a look.
Toxias
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
December 27, 2017, 09:53:44 PM
 #2244

Can i build masternode on my mining rig?
yangb0
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
December 27, 2017, 10:02:07 PM
 #2245

Forgive me for being ecstatic Grin Grin. It is because I just received my first MN reward in my entire life. All those frustrating hours spent on setting up the VPS and stuff has been paid back.

Veterans like you guys may have gotten used to it, one day I will too but hey this virginal experience is just fantastic.

Wish DESIRE be really desired in 2018.
jwhale70
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
December 28, 2017, 01:33:18 AM
 #2246

Here are my steps for fixing the WATCHDOG EXPIRED Status on Desire (DSR) Masternode

https://steemit.com/desire/@jwhale/fix-watchdog-expired-status-on-desire-dsr-masternode
OrigenZ
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
December 28, 2017, 02:25:32 AM
Last edit: December 30, 2017, 04:03:52 AM by OrigenZ
 #2247

Here are my steps for fixing the WATCHDOG EXPIRED Status on Desire (DSR) Masternode

https://steemit.com/desire/@jwhale/fix-watchdog-expired-status-on-desire-dsr-masternode


For all those running the masternode trough VPS here is the solution for the watchdog error that worked out for me after trying for 3 days, first of all I want to clarify that this is only if you are setting up the masternode from scratch, like I did after reinstalling my server for 5 times:

If you head to the website: https://sonofatech.com/how-to-setup-a-desire-masternode/ you will have just to follow all the instructions until you get to this code line:


cd ~;
wget https://github.com/lazyboozer/Desire/releases/download/Desire-v.0.12.2.1/desire-0.12.2.1-linux.tar.gz ;
cd desire;
tar xzvf desire-0.12.2.1-linux.tar.gz;


After learning a bit of linux I could finally spot a misspelling there, basically cd ~; sends you to the main directory, after that you ask to download the  desire-0.12.2.1-linux.tar.gz through the command wget, but as you can see cd Desire; is sending you to the desire folder and the command tar xzvf its an order to extract the compressed file .gz, but if you download the file in one folder and then try to extract it in another one it makes no sense right?, so as I do not know for which one of the folders is originally destinated to be extracted I downloaded and extracted it on both as follows :

cd ~;
wget https://github.com/lazyboozer/Desire/releases/download/Desire-v.0.12.2.1/desire-0.12.2.1-linux.tar.gz ;

tar xzvf desire-0.12.2.1-linux.tar.gz;

cd Desire;

wget https://github.com/lazyboozer/Desire/releases/download/Desire-v.0.12.2.1/desire-0.12.2.1-linux.tar.gz ;

tar xzvf desire-0.12.2.1-linux.tar.gz;

Right, this may be not related to the sentinel (the exe that fixes the watchdog timeout isssue) but just in case is good to have it done right and for those following the only nice guide around which is this one of Sonofatech I'm sure it will be usefull, right, now we go to the point of sentinel, once you get to the following code lines:



wget https://github.com/ZonnCash/sentinel/releases/download/v1.1.0-win64/sentinel-lin64 ;

chmod +x sentinel-lin64;

echo “desire_conf=`pwd`/desire.conf” sentinel.conf;

Instead of entering that code line, and once I realized that there was a new version (1.1.0.3) of the sentinel on github,  I just changed the old file link for the new one like this:


wget https://github.com/ZonnCash/sentinel/releases/download/v1.1.0.3/sentinel-lin64 ;

chmod +x sentinel-lin64;

echo “desire_conf=`pwd`/desire.conf” sentinel.conf;


Follow the remaining part of the guide step by step as normal until you get to to this code line:

sudo ufw allow 9919/tcp

As I previously had the error  "IPv6 address not found" when running sentinel manually (you will see how to do that down to the end of this post) I tried, jus in case, changing the port 9919 to 9918 (The why is because I had to change the RPC port to 9918 because another error  I was getting when opening the local wallet, as I had set up the port 9919 both on the masternode.conf and the RPC port in the desire.conf, to fix it I had to change the RPC one to 9918 and that is why I believe allowing 18 instead of 19 worked for me)

so the code line I used instead is:
sudo ufw allow 9918/tcp


After that just follow the guide and the video guide until the end, and once you finish and get to open your local wallet (the one on your computer) you will see the status: WATCHDOG_TIMEDOUT


What you do is go in to your putty,log in and launch Sentinel manually by tipping the following lines:

cd .desirecore/

./sentinel-lin64

And select the option one: press 1 and then enter.

It might happen that you get the watchdog error again after a few hours, so simply manually run sentinel using the 2 above commands again.


I hope this helped you out, for me it was the heaven after struggling for days.



If this helped you also please feel free to leave a tip and let me know!

Donation address: DPgRGFa62tDmuhVyV2oLpkBNXdmJZ33uwo


Enjoy your masternode!

P.D: sentinel runs every 1 minute, you have to allow your wallet to get updated, for me it took about 10 mins, then you will see the PRE_ENABLED status, and once the other masternodes recognize you you will finally see the status ENABLED, but it takes some time, be patient!.













Jasonbeetle
Full Member
***
Offline Offline

Activity: 420
Merit: 100


View Profile
December 28, 2017, 06:32:06 AM
 #2248

Everyday have Runtime error in my wallet! Sombdy met such problem?
yangb0
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
December 28, 2017, 09:19:43 AM
 #2249

Dear Devs,

To achieve a better tomorrow, you do need to work on UI and stuff, people are visual animals. DESIRE has a beautiful name. Now we also need a beautiful UI.

Ugly wallet won't last long. An good looking android wallet is also fundamental.

Keep working Devs!

All the efforts will be paid.

Cheers!
Vaevskui
Member
**
Offline Offline

Activity: 117
Merit: 10


View Profile
December 28, 2017, 10:04:28 AM
 #2250

Hi all. I'm happy with the growth of the coin. Do not tell me: is expected to launch on other exchanges? If so, when?

Leading-Edge Ecosystem & Technology     ▐ █ ▌     R E P U B L I A     ▐ █ ▌     P R E - S A L E   :   August 23rd - September 23rd
▬   ▬▬   ▬▬▬   ▬▬▬▬   ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬   ▬▬▬▬   ▬▬▬   ▬▬   ▬
|        [ WHITEPAPER ]  [ BOUNTY ]  [ ANN THREAD ]        |        Facebook     Telegram     Twitter     Instagram        |
thedjnivek
Newbie
*
Offline Offline

Activity: 27
Merit: 0


View Profile
December 28, 2017, 10:09:23 AM
 #2251

Congratulations Devs, keep working ! Moon is soon Smiley
If you need any help, just tell me Wink
starl1ng
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
December 28, 2017, 01:31:16 PM
 #2252

My masternode received a reward today, but it was 4.8 DSR instead of 5 DSR.
So i'm wondering, what is the reason for receiving 0.2 DSR less per block?
Cymatoxa
Full Member
***
Offline Offline

Activity: 378
Merit: 121


"SWISSREALCOIN - FIRST REAL ESTATE CRYPTO TOKEN"


View Profile
December 28, 2017, 01:42:46 PM
 #2253

Hi all. Is it possible for one purse to start immediately 2 MASTERNODS?

ShowMeCoins
Member
**
Offline Offline

Activity: 129
Merit: 11


View Profile
December 28, 2017, 01:50:03 PM
Last edit: December 28, 2017, 02:15:56 PM by ShowMeCoins
 #2254

My masternode received a reward today, but it was 4.8 DSR instead of 5 DSR.
So i'm wondering, what is the reason for receiving 0.2 DSR less per block?
Suddenly total block reward went from 25 (20 POW, 5 MN) to 24 (19.2 POW, 4.8 MN)

EDIT: From Discord "Block reward is controlled by: 2222222/(((Difficulty+2600)/9)^2)"
CentBradley
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
December 28, 2017, 01:51:10 PM
 #2255

Is there any bounty or maybe airdrop?
lonerdrop
Newbie
*
Offline Offline

Activity: 76
Merit: 0


View Profile
December 28, 2017, 02:45:11 PM
 #2256

Why can I not be able to mine this coin using cuda 9 miner? I noticed same thing with most neoscrypt coins like vivo, innova and onions. The miner will just be counting the blocks
Snippa
Newbie
*
Offline Offline

Activity: 27
Merit: 0


View Profile WWW
December 28, 2017, 02:59:51 PM
 #2257

Why can I not be able to mine this coin using cuda 9 miner? I noticed same thing with most neoscrypt coins like vivo, innova and onions. The miner will just be counting the blocks
https://github.com/KlausT/ccminer/releases works for me, have you tried it?
Anatoliyb50
Sr. Member
****
Offline Offline

Activity: 377
Merit: 250


View Profile
December 28, 2017, 03:34:01 PM
 #2258

Why can I not be able to mine this coin using cuda 9 miner? I noticed same thing with most neoscrypt coins like vivo, innova and onions. The miner will just be counting the blocks

At me the same, writes a mistake in CUDA - now I shake CUDA 9.1 can helps.
Miningmax
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
December 28, 2017, 03:45:47 PM
 #2259

Everytime I try to setup the Masternode i get the error masternode not capable: masternode not in masternode list
I tried to run it on a windows server.
Please help Smiley
sys039995
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
December 28, 2017, 03:52:24 PM
 #2260

https://discord.gg/YSCt6eB can help you
Pages: « 1 ... 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 [113] 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 »
  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!