Bitcoin Forum
June 23, 2024, 11:17:04 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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 ... 99 »
  Print  
Author Topic: [GLC] Globalcoin | 4 Year Anniversary 1.5.4! | NO IPO, NO PREMINE | [SCRYPT]  (Read 225831 times)
roundrobin
Full Member
***
Offline Offline

Activity: 203
Merit: 100


View Profile
December 13, 2013, 03:17:33 AM
 #541

Using just the two nodes you suggested now, MinerMike. Network difficulty is up to 3 now, from 1 before. (and still reported as very high at 243k further up in the status display). Will see if I manage to solve a block this way.

   LTC: Lbha3tRmE75oHfF4SjSKpxVK2fY9PxrPUX         VTC: VguAuTdGRcQzihEgrJDYPYUuugGMMGFCNn
   FTC: 6fVWQ3eHhhgH1haqThQbxTFV8XjrqyuKY2          SOL: 8X6dLCY8MeZ6RNdBxzYQkd5kxWj8VVPJmL
DOGE: DMBQta9ME9cWnRPVXtEbi57CDk1uNpwzSh
roundrobin
Full Member
***
Offline Offline

Activity: 203
Merit: 100


View Profile
December 13, 2013, 03:30:28 AM
 #542

I did what you said to me Mike but i don't see news transactions.

Maybe two blocks orphaned??I dont think so. Maybe a problem of set up?

Just a thought... are you sure your wallet is unlocked? Because you cannot solo-mine without unlocking the wallet first.

If the wallet is locked, execute this on your terminal/cmd prompt: globalcoind.exe walletpassphrase PASSWORDHERE 9999999

This will keep the wallet unlocked for the pool software for pretty much as long as it's running. You can confirm by doing globalcoind.exe getinfo, which should show in the bottom "unlocked_until" : <any number except 0>.

   LTC: Lbha3tRmE75oHfF4SjSKpxVK2fY9PxrPUX         VTC: VguAuTdGRcQzihEgrJDYPYUuugGMMGFCNn
   FTC: 6fVWQ3eHhhgH1haqThQbxTFV8XjrqyuKY2          SOL: 8X6dLCY8MeZ6RNdBxzYQkd5kxWj8VVPJmL
DOGE: DMBQta9ME9cWnRPVXtEbi57CDk1uNpwzSh
lulutis2000
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
December 13, 2013, 03:37:50 AM
 #543

Yes, is unlocked, i never set a password.
MinerMike
Member
**
Offline Offline

Activity: 105
Merit: 10


View Profile
December 13, 2013, 03:50:58 AM
 #544

For anyone wanting to really help contribute to the network security it would be great if you could setup a dedicated node on a VPS, you can do this for as little as $5 a month with digitalocean.com (there's probably some coupons around as well to get first month free etc).

Here is a quick guide.

Register an account with https://www.digitalocean.com

Create a new droplet (512mb $5 a month will do fine) and select ubuntu 12.04 x64

Hostname: glcnode (or whatever you want)

Your root login details will be emailed to you

SSH to your server using putty or similar then issue the following commands (line by line):

Change your root password
Code:
passwd
You'll be prompted to type a new password twice.

Install updates
Code:
apt-get update -y
apt-get upgrade -y

Install ufw firewall and configure rules for globalcoin
Code:
apt-get install ufw
ufw allow 22/tcp
ufw allow 55789/tcp
ufw --force enable

Install requirements for globalcoin
Code:
apt-get install -y build-essential libboost-all-dev libcurl4-openssl-dev libdb5.1-dev libdb5.1++-dev
apt-get install -y git
cd ~
git clone git://github.com/muddafudda/globalcoin.git

Since we're on a 512mb server we need to make a swapfile otherwise globalcoin runs out of memory when compiling
Code:
sudo dd if=/dev/zero of=/swapfile bs=64M count=16
sudo mkswap /swapfile
sudo swapon /swapfile

Now let's compile globalcoind
Code:
cd globalcoin/src
mkdir obj
make -f makefile.unix USE_UPNP=-

This make command will take a few minutes then
Code:
sudo cp globalcoind /usr/bin

Time to setup globalcoin configuration
Code:
cd ~
mkdir .globalcoin
cd .globalcoin
nano globalcoin.conf

Copy and paste the following, edit in a username and password then press ctrl+k to save it as globalcoin.conf
Code:
rpcuser=USER
rpcpassword=PASSWORD
rpcallowip=localhost
rpcport=55788
port=55789
daemon=1
server=1
gen=0
maxconnections=50
addnode=162.243.239.107
addnode=162.243.106.159

Now we can start globalcoind, type the following:
Code:
globalcoind

It should say something about globalcoind starting, wait a minute then you can check your node with:
Code:
globalcoind getinfo

BTC: 1LRmi5uU9XkrMDYQKUFJei9QpEzs5UWAEX      GLC: 7NrpVZzPo2iFUuEpB7dpnZktMcGaQDjLPS
LTC: LWz1MX5YrvrwZr9EonB9NwCWF2KgG1f2aY
MinerMike
Member
**
Offline Offline

Activity: 105
Merit: 10


View Profile
December 13, 2013, 03:53:16 AM
 #545

Another dedicated node is up:

addnode=162.243.104.134

BTC: 1LRmi5uU9XkrMDYQKUFJei9QpEzs5UWAEX      GLC: 7NrpVZzPo2iFUuEpB7dpnZktMcGaQDjLPS
LTC: LWz1MX5YrvrwZr9EonB9NwCWF2KgG1f2aY
Thrash
Sr. Member
****
Offline Offline

Activity: 519
Merit: 253



View Profile
December 13, 2013, 05:20:21 AM
 #546

Another dedicated node is up:

addnode=162.243.104.134

I mentioned it earlier but this one should be pretty reliable.

162.243.231.130

For some reason I am only showing 8 connections. I have the port open but still show less than10 connections. Any ideas? I just made a couple of small changes, maybe they will help get more connections.
MinerMike
Member
**
Offline Offline

Activity: 105
Merit: 10


View Profile
December 13, 2013, 05:54:43 AM
 #547

I mentioned it earlier but this one should be pretty reliable.

162.243.231.130

For some reason I am only showing 8 connections. I have the port open but still show less than10 connections. Any ideas? I just made a couple of small changes, maybe they will help get more connections.

I've added your address to my nodes configs, should help spread it around Smiley

BTC: 1LRmi5uU9XkrMDYQKUFJei9QpEzs5UWAEX      GLC: 7NrpVZzPo2iFUuEpB7dpnZktMcGaQDjLPS
LTC: LWz1MX5YrvrwZr9EonB9NwCWF2KgG1f2aY
Sovietaced
Member
**
Offline Offline

Activity: 224
Merit: 10


View Profile
December 13, 2013, 07:34:49 AM
 #548

Thanks for the IP addresses guys. I was having a real hard time with the addresses from the OP.
X68N
Hero Member
*****
Offline Offline

Activity: 672
Merit: 500


View Profile
December 13, 2013, 12:14:07 PM
 #549

Block explorer doesnt work, site doesnt load.

please fix it. greetings

YOBIT IS SCAM , YOBIT IS SCAM , YOBIT IS SCAM meine Steuerdatei:
https://bitcointalk.org/index.php?topic=612741.msg19244732#msg19244732
roundrobin
Full Member
***
Offline Offline

Activity: 203
Merit: 100


View Profile
December 13, 2013, 05:25:51 PM
 #550

Still no luck solo-mining a block. 4-5 healthy connections to other nodes, everything APPEARS to be working OK but I'm confused about the "network diff set to 3" message, when the other difficulty displayed is "243k". Anyone got any ideas what's up with that?


   LTC: Lbha3tRmE75oHfF4SjSKpxVK2fY9PxrPUX         VTC: VguAuTdGRcQzihEgrJDYPYUuugGMMGFCNn
   FTC: 6fVWQ3eHhhgH1haqThQbxTFV8XjrqyuKY2          SOL: 8X6dLCY8MeZ6RNdBxzYQkd5kxWj8VVPJmL
DOGE: DMBQta9ME9cWnRPVXtEbi57CDk1uNpwzSh
colx
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
December 13, 2013, 06:23:04 PM
 #551

Still no luck solo-mining a block. 4-5 healthy connections to other nodes, everything APPEARS to be working OK but I'm confused about the "network diff set to 3" message, when the other difficulty displayed is "243k". Anyone got any ideas what's up with that?

The difficulty is 3.7098 at the moment, so it's more or less correct with what yours are showing. The 243k was, from what I believe, earlier when the pools went down and difficulty went very low (0,2).
sQueeZer
Sr. Member
****
Offline Offline

Activity: 312
Merit: 251


View Profile
December 13, 2013, 07:19:05 PM
 #552

Still no luck solo-mining a block. 4-5 healthy connections to other nodes, everything APPEARS to be working OK but I'm confused about the "network diff set to 3" message, when the other difficulty displayed is "243k". Anyone got any ideas what's up with that?



you dont get any blocks cuz your gpu's are not hot enough...
colx
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
December 13, 2013, 07:35:02 PM
 #553

Still no luck solo-mining a block. 4-5 healthy connections to other nodes, everything APPEARS to be working OK but I'm confused about the "network diff set to 3" message, when the other difficulty displayed is "243k". Anyone got any ideas what's up with that?

you dont get any blocks cuz your gpu's are not hot enough...

Noticed as well, do you push them around 100C when you are not around as well? I really dislike anything over 80C when I'm not at home.
colx
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
December 13, 2013, 07:46:05 PM
 #554

Anyone else not getting a single payout from japool?
roundrobin
Full Member
***
Offline Offline

Activity: 203
Merit: 100


View Profile
December 13, 2013, 07:48:58 PM
 #555

Noticed as well, do you push them around 100C when you are not around as well? I really dislike anything over 80C when I'm not at home.

Well, the card is still running the locked stock BIOS which throttles and goes down to half core speed and 0.95V when it gets "too hot", but I have had the card reading 100C on both cores for several hours on end, and there are no signs of anything in the case overheating.

I'm still split on whether I should return the card and try some "pump/hold/dump" instead, or invest in a dedicated water cooling block to keep the noise down so it becomes bearable to have it running 24/7 - the fans are just way too loud to endure.


Anyone else not getting a single payout from japool?

Yesterday I could not even get work from japool. It kept rejecting and making trouble, so I just stopped trying. globalcoin.miners-pool.eu worked perfectly until their setup crashed the other day, though.

   LTC: Lbha3tRmE75oHfF4SjSKpxVK2fY9PxrPUX         VTC: VguAuTdGRcQzihEgrJDYPYUuugGMMGFCNn
   FTC: 6fVWQ3eHhhgH1haqThQbxTFV8XjrqyuKY2          SOL: 8X6dLCY8MeZ6RNdBxzYQkd5kxWj8VVPJmL
DOGE: DMBQta9ME9cWnRPVXtEbi57CDk1uNpwzSh
colx
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
December 13, 2013, 07:59:29 PM
 #556

Noticed as well, do you push them around 100C when you are not around as well? I really dislike anything over 80C when I'm not at home.

Well, the card is still running the locked stock BIOS which throttles and goes down to half core speed and 0.95V when it gets "too hot", but I have had the card reading 100C on both cores for several hours on end, and there are no signs of anything in the case overheating.

I'm still split on whether I should return the card and try some "pump/hold/dump" instead, or invest in a dedicated water cooling block to keep the noise down so it becomes bearable to have it running 24/7 - the fans are just way too loud to endure.


Anyone else not getting a single payout from japool?

Yesterday I could not even get work from japool. It kept rejecting and making trouble, so I just stopped trying. globalcoin.miners-pool.eu worked perfectly until their setup crashed the other day, though.

What cards are they? I have xfx 7950 DD. Really bad coolers and those exhaust fans are LOUD! I also have 2xGTX 770 from MSI, can't hear them at all and they keep around 60C without maxing fans. But again, nvidia is not very good at this stuff. Not gonna buy waterblocks myself, they are way too hard to get for me and expensive as well. Even more cost to break even! Tongue
roundrobin
Full Member
***
Offline Offline

Activity: 203
Merit: 100


View Profile
December 13, 2013, 08:04:45 PM
 #557

What cards are they? I have xfx 7950 DD. Really bad coolers and those exhaust fans are LOUD! I also have 2xGTX 770 from MSI, can't hear them at all and they keep around 60C without maxing fans. But again, nvidia is not very good at this stuff. Not gonna buy waterblocks myself, they are way too hard to get for me and expensive as well. Even more cost to break even! Tongue

It's a single Gigabyte HD7990. The blocks are expensive, yeah, but if you hit the right coins so to speak then the cooling blocks, just like the rig, will eventually pay for itself. It's kinda vital to keep the rig going 24/7 to make a profit, and right now I just can't stand having it going around the clock because of the noise... sigh.

   LTC: Lbha3tRmE75oHfF4SjSKpxVK2fY9PxrPUX         VTC: VguAuTdGRcQzihEgrJDYPYUuugGMMGFCNn
   FTC: 6fVWQ3eHhhgH1haqThQbxTFV8XjrqyuKY2          SOL: 8X6dLCY8MeZ6RNdBxzYQkd5kxWj8VVPJmL
DOGE: DMBQta9ME9cWnRPVXtEbi57CDk1uNpwzSh
roundrobin
Full Member
***
Offline Offline

Activity: 203
Merit: 100


View Profile
December 13, 2013, 08:59:34 PM
 #558

I just tried if japool's payments were working again, and it's handing out payments now, but 5 GLC for 30 minutes seems way too little for 1 mH/s @ 3.x difficulty, does it not? That's about... 50% fee, not 2% fee.

   LTC: Lbha3tRmE75oHfF4SjSKpxVK2fY9PxrPUX         VTC: VguAuTdGRcQzihEgrJDYPYUuugGMMGFCNn
   FTC: 6fVWQ3eHhhgH1haqThQbxTFV8XjrqyuKY2          SOL: 8X6dLCY8MeZ6RNdBxzYQkd5kxWj8VVPJmL
DOGE: DMBQta9ME9cWnRPVXtEbi57CDk1uNpwzSh
colx
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
December 13, 2013, 09:16:24 PM
 #559

I just tried if japool's payments were working again, and it's handing out payments now, but 5 GLC for 30 minutes seems way too little for 1 mH/s @ 3.x difficulty, does it not? That's about... 50% fee, not 2% fee.

Yeah, something is not right.
orco#2
Hero Member
*****
Offline Offline

Activity: 868
Merit: 1000



View Profile
December 14, 2013, 07:34:00 AM
 #560

The other pool is probably getting all the blocks.

           ▄▄███████▄▄
        ▄███▀▀
▄▄▄▄    ▀▄
     ▄▄█████████████▄▄  ▀▄
  ▄▀▀██▀           ▀▀██▄▄▀▄
▄▀  ██                 ▀██
  ██       ▀▀█▀▀         █
█▀        █ █ █        ▄█▀▄
▀▄         █ █ █       ▄█  █
 ██         █▄▄▄█      ▄█  ▄▀
  ██▄                ▄█▀  ▄▀
  ▀▄▀██▄▄          ▄█▀  ▄▀
   ▀▄ ▀▀███▄▄▄▄▄▄█████▀▀
     ▀▀▄▄▄▄▄▄▀▀▀▀▀▀▀
.UTRUST.▀████████▄
  ▀███████▄
    ▀██████▄
      ▀██████
       ▀█████
        ▀████▄
         █████
          ▀███
           ███
           ▀██
            ██
             █
             █
●  Download WHITEPAPER  ●
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ▼ ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
facebook      twitter      slack
▀████████▄
  ▀███████▄
    ▀██████▄
      ▀██████
       ▀█████
        ▀████▄
         █████
          ▀███
           ███
           ▀██
            ██
             █
             █
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 ... 99 »
  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!