Bitcoin Forum
April 28, 2024, 05:15:19 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 [414] 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 ... 814 »
  Print  
Author Topic: [1500 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool  (Read 2591625 times)
macdaddy
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
April 17, 2014, 02:22:11 PM
 #8261

I have a P2Pool node up and running and I've been testing it a few days. It's been running stable and I was wondering how I should publish it for other folks to use. It's running on a hosted server so latency should be low.  Doing some searches, I didn't find anything other than the announce to IRC channel switch (that didn't work). Any help would be appreciated, I just didn't want to throw it out there in the wrong place.

Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
oldbushie
Member
**
Offline Offline

Activity: 94
Merit: 10


View Profile
April 17, 2014, 03:37:28 PM
 #8262

How do I manually update bitcoind on Ubuntu? apt-get is still out of date.
You need build it from sources. Clone git and make/qmake ;]

No, he don't. Linux binary is here:
https://bitcoin.org/bin/0.9.1/bitcoin-0.9.1-linux.tar.gz

Will that mess up an apt-get install at all?

roy7
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
April 17, 2014, 03:52:48 PM
 #8263

Will that mess up an apt-get install at all?

You might want to uninstall the old apt package so you don't accidentially run the wrong one at some point. But the binary is a standalone with no separate includes, libraries, etc needed. Just put the bitcoind wherever you want and run it from there directly.
oldbushie
Member
**
Offline Offline

Activity: 94
Merit: 10


View Profile
April 18, 2014, 04:50:30 PM
 #8264

Will that mess up an apt-get install at all?

You might want to uninstall the old apt package so you don't accidentially run the wrong one at some point. But the binary is a standalone with no separate includes, libraries, etc needed. Just put the bitcoind wherever you want and run it from there directly.
Thanks, I went ahead and did that. For now I'll just stick to manual updates of bitcoind so I don't have to rely on the PPA.

maqifrnswa
Sr. Member
****
Offline Offline

Activity: 454
Merit: 250


View Profile
April 19, 2014, 05:18:58 AM
 #8265

Will that mess up an apt-get install at all?

You might want to uninstall the old apt package so you don't accidentially run the wrong one at some point. But the binary is a standalone with no separate includes, libraries, etc needed. Just put the bitcoind wherever you want and run it from there directly.
Thanks, I went ahead and did that. For now I'll just stick to manual updates of bitcoind so I don't have to rely on the PPA.

PPA wasn't out of date. 0.9.1 only linked against the patched openSSL. there was no need to release a new version in the PPA since ubuntu patched it for you. There was a discussion about this on the mailing list. They probably should have released 0.9.1 into the PPA to clear up confusion, but 0.9 in the PPA is the same as home-built 0.9.1
mamaspaliLa
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
April 20, 2014, 11:36:52 AM
 #8266

how to up p2pool node of Doubloons DBL coin??
jonnybravo0311
Legendary
*
Offline Offline

Activity: 1344
Merit: 1023


Mine at Jonny's Pool


View Profile WWW
April 21, 2014, 06:24:24 PM
 #8267

So I've been playing around with p2pool quite a bit, digging through code, modifying front end code to display things, etc.  I've got a question that I hope people can help answer:

How do I get more information into the JSON queries?

For example, in the global_stats, I see something like this:

{"min_difficulty": 479474.8692329195, "pool_stale_prop": 0.1111111111111111, "pool_hash_rate": 136727809739777.47, "pool_nonstale_hash_rate": 121535830879802.19}

How would I add to that to get things like "expected_time_to_block", "last_block_found", "total_network_hashrate"?

Currently I've fudged the first two by hooking into p2pool.info directly to retrieve the data, but I'd like to have it come from the global_stats.

Thanks for the help!

Jonny's Pool - Mine with us and help us grow!  Support a pool that supports Bitcoin, not a hardware manufacturer's pockets!  No SPV cheats.  No empty blocks.
roy7
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
April 21, 2014, 06:31:21 PM
 #8268

So I've been playing around with p2pool quite a bit, digging through code, modifying front end code to display things, etc.  I've got a question that I hope people can help answer:

How do I get more information into the JSON queries?

For example, in the global_stats, I see something like this:

{"min_difficulty": 479474.8692329195, "pool_stale_prop": 0.1111111111111111, "pool_hash_rate": 136727809739777.47, "pool_nonstale_hash_rate": 121535830879802.19}

How would I add to that to get things like "expected_time_to_block", "last_block_found", "total_network_hashrate"?

Currently I've fudged the first two by hooking into p2pool.info directly to retrieve the data, but I'd like to have it come from the global_stats.

Thanks for the help!

You can see an example of adding a miner_last_difficulties array, network_hashrate, and network_block_difficulty here:

https://github.com/forrestv/p2pool/pull/191/files
jonnybravo0311
Legendary
*
Offline Offline

Activity: 1344
Merit: 1023


Mine at Jonny's Pool


View Profile WWW
April 21, 2014, 06:40:38 PM
 #8269

So I've been playing around with p2pool quite a bit, digging through code, modifying front end code to display things, etc.  I've got a question that I hope people can help answer:

How do I get more information into the JSON queries?

For example, in the global_stats, I see something like this:

{"min_difficulty": 479474.8692329195, "pool_stale_prop": 0.1111111111111111, "pool_hash_rate": 136727809739777.47, "pool_nonstale_hash_rate": 121535830879802.19}

How would I add to that to get things like "expected_time_to_block", "last_block_found", "total_network_hashrate"?

Currently I've fudged the first two by hooking into p2pool.info directly to retrieve the data, but I'd like to have it come from the global_stats.

Thanks for the help!

You can see an example of adding a miner_last_difficulties array, network_hashrate, and network_block_difficulty here:

https://github.com/forrestv/p2pool/pull/191/files

Much obliged!

Jonny's Pool - Mine with us and help us grow!  Support a pool that supports Bitcoin, not a hardware manufacturer's pockets!  No SPV cheats.  No empty blocks.
roy7
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
April 21, 2014, 06:44:33 PM
 #8270

You can see an example of adding a miner_last_difficulties array, network_hashrate, and network_block_difficulty here:

https://github.com/forrestv/p2pool/pull/191/files

Much obliged!

My pleasure. We use those stats on a modified version of p2pool-node-status, you can see it here:

http://us-east.royalminingco.com:9332/static/
mdude77
Legendary
*
Offline Offline

Activity: 1540
Merit: 1001



View Profile
April 21, 2014, 10:25:23 PM
 #8271

So I've been playing around with p2pool quite a bit, digging through code, modifying front end code to display things, etc.  I've got a question that I hope people can help answer:

How do I get more information into the JSON queries?

For example, in the global_stats, I see something like this:

{"min_difficulty": 479474.8692329195, "pool_stale_prop": 0.1111111111111111, "pool_hash_rate": 136727809739777.47, "pool_nonstale_hash_rate": 121535830879802.19}

How would I add to that to get things like "expected_time_to_block", "last_block_found", "total_network_hashrate"?

Currently I've fudged the first two by hooking into p2pool.info directly to retrieve the data, but I'd like to have it come from the global_stats.

Thanks for the help!

You can also check the code I use in mpoolmonitor in github.  I make use of p2pool stats extensively in there.

M

I mine at Kano's Pool because it pays the best and is completely transparent!  Come join me!
Dave5
Member
**
Offline Offline

Activity: 109
Merit: 10


View Profile
April 21, 2014, 11:18:13 PM
 #8272

"Warning: LOST CONTACT WITH BITCOIND "

Hi,

I'm having  a problem with my Dogecoin windows (32 bit) p2pool and would appreciate some help.

I installed Dogecoin p2pool for window by following these instructions:
http://www.reddit.com/r/dogemining/comments/1wmw3j/how_to_setup_p2pool_locally_windows

The pool was running great for a day when I started having connection issues.
For some reason connection to the p2pool or connection between the pool and the wallet QT is lost.
The connection is lost 2 or 3 min after starting the p2pool. After that it's on and off connection.

I disabled the firewall and anti-virus just to be sure its not blocking the connection, but that doesn't look like the cause.
Both uPnP in Windows and my router are turned on.

Here are some lines from my  log file:
Code:
2014-04-21 18:46:29.542000 Peer sent entire transaction 46d8afa3117bd5ded077d00259833063038ce8e58c80c3d79837a0dafe4110f5 that was already received
2014-04-21 18:46:29.542000 Peer sent entire transaction 46d8afa3117bd5ded077d00259833063038ce8e58c80c3d79837a0dafe4110f5 that was already received
2014-04-21 18:46:29.698000 Peer sent entire transaction 46d8afa3117bd5ded077d00259833063038ce8e58c80c3d79837a0dafe4110f5 that was already received
2014-04-21 18:46:31.601000 P2Pool: 5791 shares in chain (5441 verified/5795 total) Peers: 6 (0 incoming)
2014-04-21 18:46:31.601000  Local: 0H/s in last 0.0 seconds Local dead on arrival: ??? Expected time to share: ???
2014-04-21 18:46:31.601000  Shares: 0 (0 orphan, 0 dead) Stale rate: ??? Efficiency: ??? Current payout: 0.0000 DOGE
2014-04-21 18:46:31.601000  Pool: 1308MH/s Stale rate: 21.3% Expected time to block: 49.9 minutes
2014-04-21 18:48:10.053000 Lost peer 37.187.49.183:8555 - Connection to the other side was lost in a non-clean fashion.
2014-04-21 18:48:10.053000 Lost peer 67.11.62.236:8555 - Connection to the other side was lost in a non-clean fashion.
2014-04-21 18:48:10.053000 Lost peer 83.143.51.50:8555 - Connection to the other side was lost in a non-clean fashion.
2014-04-21 18:48:10.115000 Lost peer 108.48.45.12:22558 - Connection to the other side was lost in a non-clean fashion.
2014-04-21 18:48:10.115000 Lost peer 220.135.202.202:8555 - Connection to the other side was lost in a non-clean fashion.
2014-04-21 18:48:10.131000 > ########################################
2014-04-21 18:48:10.131000 > >>> Warning: LOST CONTACT WITH BITCOIND for 1.7 minutes! Check that it isn't frozen or dead!
2014-04-21 18:48:10.131000 > ########################################
2014-04-21 18:48:10.131000 P2Pool: 5795 shares in chain (5446 verified/5800 total) Peers: 1 (0 incoming)

Any ideas on how to debug would be appreciated.

Thank you!

❒ SWISS ALPS ❒        ▬ MINING & ENERGY ▬      ❒ SWISS ALPS ❒
█████          The Smart Mining Company           █████
Telegram █  Get a piece of COLD 6 220 238 SAM █     Twitter
jonnybravo0311
Legendary
*
Offline Offline

Activity: 1344
Merit: 1023


Mine at Jonny's Pool


View Profile WWW
April 22, 2014, 12:20:39 PM
 #8273

So I've been playing around with p2pool quite a bit, digging through code, modifying front end code to display things, etc.  I've got a question that I hope people can help answer:

How do I get more information into the JSON queries?

For example, in the global_stats, I see something like this:

{"min_difficulty": 479474.8692329195, "pool_stale_prop": 0.1111111111111111, "pool_hash_rate": 136727809739777.47, "pool_nonstale_hash_rate": 121535830879802.19}

How would I add to that to get things like "expected_time_to_block", "last_block_found", "total_network_hashrate"?

Currently I've fudged the first two by hooking into p2pool.info directly to retrieve the data, but I'd like to have it come from the global_stats.

Thanks for the help!

You can also check the code I use in mpoolmonitor in github.  I make use of p2pool stats extensively in there.

M

Thanks, I'll have a look.  I'm not much of a windows programmer - I think the last time I touched an MS development environment was about 12 years ago, but I'll take a look through the code to see some examples of what you've done.

Jonny's Pool - Mine with us and help us grow!  Support a pool that supports Bitcoin, not a hardware manufacturer's pockets!  No SPV cheats.  No empty blocks.
bilabonic
Sr. Member
****
Offline Offline

Activity: 325
Merit: 250


View Profile
April 23, 2014, 06:41:37 PM
 #8274

How do i find out what i am owed on p2pool.org ?

I have disconnected my 1Th miner, mining BTC, where do i look/search Huh


Cheers

BTC - 1Ayax24aAU8c1xwAakK94DVDkm4kbfZ8Ch
roy7
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
April 23, 2014, 07:03:30 PM
 #8275

How do i find out what i am owed on p2pool.org ?

I have disconnected my 1Th miner, mining BTC, where do i look/search Huh

Cheers

You should contact them on their support thread:

https://bitcointalk.org/index.php?topic=176938.0

p2pool.org is just a public node like many people run, it's not an official site/service/etc of the P2Pool project (which this thread is for).
Hunterbunter
Hero Member
*****
Offline Offline

Activity: 994
Merit: 1000


View Profile
April 23, 2014, 10:26:24 PM
 #8276

How do i find out what i am owed on p2pool.org ?

I have disconnected my 1Th miner, mining BTC, where do i look/search Huh


It doesn't work like that with p2pool. You connect using a bitcoin address, and whenever a block is found it is automatically paid out. You earn shares in the pool while you mine on there (shares are distributed across all p2pool nodes). You can even switch between p2pool nodes (eg if one goes down), and your shares are kept up to date and continue. I've got 3 backup nodes set up on my miners.

Some sites have a stats section where you can see how much you can expect to be paid if a block is found "now", and you'll get that, like this one: http://blisterpool.com/stats

For example, P2pool just found a block about 5 minutes ago, and I found that out from my bitcoin client, which told me I just got generation coins. Blisterpool is a p2pool node, but this one in particular pays out a bonus in dvc based on hashpower if you register a btc/dvc address pair.
zvs
Legendary
*
Offline Offline

Activity: 1680
Merit: 1000


https://web.archive.org/web/*/nogleg.com


View Profile WWW
April 24, 2014, 11:07:32 PM
 #8277

"Warning: LOST CONTACT WITH BITCOIND "

Hi,

I'm having  a problem with my Dogecoin windows (32 bit) p2pool and would appreciate some help.

I installed Dogecoin p2pool for window by following these instructions:
http://www.reddit.com/r/dogemining/comments/1wmw3j/how_to_setup_p2pool_locally_windows

The pool was running great for a day when I started having connection issues.
For some reason connection to the p2pool or connection between the pool and the wallet QT is lost.
The connection is lost 2 or 3 min after starting the p2pool. After that it's on and off connection.

I disabled the firewall and anti-virus just to be sure its not blocking the connection, but that doesn't look like the cause.
Both uPnP in Windows and my router are turned on.

Here are some lines from my  log file:
Code:
2014-04-21 18:46:29.542000 Peer sent entire transaction 46d8afa3117bd5ded077d00259833063038ce8e58c80c3d79837a0dafe4110f5 that was already received
2014-04-21 18:46:29.542000 Peer sent entire transaction 46d8afa3117bd5ded077d00259833063038ce8e58c80c3d79837a0dafe4110f5 that was already received
2014-04-21 18:46:29.698000 Peer sent entire transaction 46d8afa3117bd5ded077d00259833063038ce8e58c80c3d79837a0dafe4110f5 that was already received
2014-04-21 18:46:31.601000 P2Pool: 5791 shares in chain (5441 verified/5795 total) Peers: 6 (0 incoming)
2014-04-21 18:46:31.601000  Local: 0H/s in last 0.0 seconds Local dead on arrival: ??? Expected time to share: ???
2014-04-21 18:46:31.601000  Shares: 0 (0 orphan, 0 dead) Stale rate: ??? Efficiency: ??? Current payout: 0.0000 DOGE
2014-04-21 18:46:31.601000  Pool: 1308MH/s Stale rate: 21.3% Expected time to block: 49.9 minutes
2014-04-21 18:48:10.053000 Lost peer 37.187.49.183:8555 - Connection to the other side was lost in a non-clean fashion.
2014-04-21 18:48:10.053000 Lost peer 67.11.62.236:8555 - Connection to the other side was lost in a non-clean fashion.
2014-04-21 18:48:10.053000 Lost peer 83.143.51.50:8555 - Connection to the other side was lost in a non-clean fashion.
2014-04-21 18:48:10.115000 Lost peer 108.48.45.12:22558 - Connection to the other side was lost in a non-clean fashion.
2014-04-21 18:48:10.115000 Lost peer 220.135.202.202:8555 - Connection to the other side was lost in a non-clean fashion.
2014-04-21 18:48:10.131000 > ########################################
2014-04-21 18:48:10.131000 > >>> Warning: LOST CONTACT WITH BITCOIND for 1.7 minutes! Check that it isn't frozen or dead!
2014-04-21 18:48:10.131000 > ########################################
2014-04-21 18:48:10.131000 P2Pool: 5795 shares in chain (5446 verified/5800 total) Peers: 1 (0 incoming)

Any ideas on how to debug would be appreciated.

Thank you!
Well, you probably have an old version of dogecoin.

Did you cut 1m40s out of the log, or is that exactly what it looked like?  If that's so, it's definitely an old version of dogecoin.  (and a slow machine)

if not, the only connection you've maintained is 127.0.0.1.  so you have a connectivity issue
PublicP2poolNode
Sr. Member
****
Offline Offline

Activity: 347
Merit: 252


View Profile
April 25, 2014, 02:40:54 AM
Last edit: April 25, 2014, 03:02:04 AM by PublicP2poolNode
 #8278

I'm running a node, hosting a pool, thanks to you forestv... I am currently renting some hashing power and would have more options if I could enable stratum on my pool as many of my options only support stratum protocol. Any ideas where I could look into enabling stratum protocol on my p2pool node/pool?

WINGS Beta is live - List your ICO for only 5000 WINGS at https://wings.ai Over $650 Million raised by ICOs with WINGS since June 2017
jonnybravo0311
Legendary
*
Offline Offline

Activity: 1344
Merit: 1023


Mine at Jonny's Pool


View Profile WWW
April 25, 2014, 04:31:00 AM
 #8279

p2pool supports stratum.

Jonny's Pool - Mine with us and help us grow!  Support a pool that supports Bitcoin, not a hardware manufacturer's pockets!  No SPV cheats.  No empty blocks.
zvs
Legendary
*
Offline Offline

Activity: 1680
Merit: 1000


https://web.archive.org/web/*/nogleg.com


View Profile WWW
April 25, 2014, 05:20:21 AM
 #8280

pls give refunds to rentee
Pages: « 1 ... 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 [414] 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 ... 814 »
  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!