Bitcoin Forum

Alternate cryptocurrencies => Altcoin Discussion => Topic started by: blastbob on April 21, 2013, 04:35:12 AM



Title: [HOWTO] Setup a p2pool for Feathercoin
Post by: blastbob on April 21, 2013, 04:35:12 AM
Quick and dirty

Modified code can be found here - https://github.com/narken/p2pool-altcoins

Instructions for Ubuntu 12.04
Code:
sudo apt-get update
sudo apt-get install python-software-properties screen git python-rrdtool python-pygame python-scipy
sudo apt-get install python-twisted python-twisted-web python-imaging build-essential libglib2.0-dev libglibmm-2.4-dev
sudo apt-get install python-dev libboost-all-dev libdb++-dev autoconf automake ncurses-dev

Install Feathercoin Daemon:
Code:
cd ~/ ; git clone https://github.com/FeatherCoin/FeatherCoin ; cd ~/FeatherCoin/src ; make -f makefile.unix USE_UPNP=- ; mv feathercoind ~/
mkdir ~/.feathercoin
nano -w ~/.feathercoin/feathercoin.conf

Add this text into ~/.feathercoin/feathercoin.conf
Code:
server=1
daemon=1
rpcuser=rpcadmin
rpcpassword=GenerateAgoodpasswordhere
rpcport=9667

Fire Up Feathercoin daemon:
Code:
~/feathercoind

Get p2pool modifed code for feathercoin:
Code:
cd ~/ ; git clone https://github.com/Yorango/p2pool-ftc

Install scrypt module for ltc that feathercoin uses (Need sudo) :
Code:
cd ~/p2pool-fc/litecoin_scrypt ; sudo python setup.py install

Start up your P2pool for Feathercoin!:
Code:
screen -d -m -S fcpool ~/p2pool-fc/run_p2pool.py --net litecoin -a YourFCfeePayoutAddress -f 1 --give-author 0 --w 19327 --bitcoind-p2p-port 9336 --bitcoind-rpc-port 9337 rpcadmin yourgoodpasswordfromfeathercoin.confhere

You can use screen -r to open up the p2pool console, or you can tail -f ~/p2pool-fc/data/feathercoin/log

--w port (The port for the stat web interface and also the port where miners connect)
-f number ( Fee you will get for running the pool, in percent)

Some nice commands:
tail -f ~/p2poolf-fc/data/feathercoin/log | grep BLOCK

-----------------------
Thanks to paul21 for helping me find a few snags, and p2pool owner forrestv for creating the script.

When using the git code mention over, your p2pool should be able to connect to the 2 other servers i have setup.

Disclaimer:
I have tried to get as much help as possible modifying the p2pool, but there has been some lack of interest there. But hey, it "works".
Also might be some errors in the guide above, most can be solved with some linux skills. If not, post in the thread and you will get some help.
This guide will focus on Ubuntu 12.04 and might work fine on other ubuntu platforms.
There might be some code error showing up, but if shares are going through and stats seems fine, it should be working.

Got any inputs on the code, please contact me, i need to modify the 2 live servers also if certain code is changed.






Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: wmikrut on April 23, 2013, 07:18:50 PM
Everything works great... just update your p2pool launch script from

--bitcoind-rpc-port 9337

to

--bitcoind-rpc-port 9667

Based on your feathercoin.conf file -- and everything is good!   ;D


Edit:
I noticed some console errors when running the process... and I am not sure if it will mess with the block found/payout logic.

I am pointing some hashing power at P2Pool and hope that a block is found and paid out properly.
I will post back once I see this is working without any problems.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: Invest0r on April 23, 2013, 08:54:30 PM
Thanks. Very informative.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: mr_random on April 23, 2013, 08:56:48 PM
Very nice guide. I might actually give this a go...


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: wmikrut on April 23, 2013, 09:47:07 PM
I am receiving payments for blocks found.
Very nice work   ;D


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: dolfcao on April 24, 2013, 06:21:06 AM
Quick and dirty

Modified code can be found here - https://github.com/chrda/p2pool-fc

Instructions for Ubuntu 12.04
Code:
sudo apt-get update
sudo apt-get install python-software-properties screen git python-rrdtool python-pygame python-scipy
sudo apt-get install python-twisted python-twisted-web python-imaging build-essential libglib2.0-dev libglibmm-2.4-dev
sudo apt-get install python-dev libboost-all-dev libdb++-dev autoconf automake ncurses-dev

Install Feathercoin Daemon:
Code:
cd ~/ ; git clone https://github.com/FeatherCoin/FeatherCoin ; cd ~/FeatherCoin/src ; make -f makefile.unix USE_UPNP=- ; mv feathercoind ~/
mkdir ~/.feathercoin
nano -w ~/.feathercoin/feathercoin.conf

Add this text into ~/.feathercoin/feathercoin.conf
Code:
server=1
daemon=1
rpcuser=rpcadmin
rpcpassword=GenerateAgoodpasswordhere
rpcport=9667

Fire Up Feathercoin daemon:
Code:
~/feathercoind

Get p2pool modifed code for feathercoin:
Code:
cd ~/ ; git clone https://github.com/chrda/p2pool-fc.git

Install scrypt module for ltc that feathercoin uses (Need sudo) :
Code:
cd ~/p2pool-fc/litecoin_scrypt ; sudo python setup.py install

Start up your P2pool for Feathercoin!:
Code:
screen -d -m -S fcpool ~/p2pool-fc/run_p2pool.py --net feathercoin -a YourFCfeePayoutAddress -f 1 --give-author 0 --w 19327 --bitcoind-p2p-port 9336 --bitcoind-rpc-port 9337 rpcadmin yourgoodpasswordfromfeathercoin.confhere

You can use screen -r to open up the p2pool console, or you can tail -f ~/p2pool-fc/data/feathercoin/log

--w port (The port for the stat web interface and also the port where miners connect)
-f number ( Fee you will get for running the pool, in percent)

Some nice commands:
tail -f ~/p2poolf-fc/data/feathercoin/log | grep BLOCK

-----------------------
Thanks to paul21 for helping me find a few snags, and p2pool owner forrestv for creating the script.

When using the git code mention over, your p2pool should be able to connect to the 2 other servers i have setup.

Disclaimer:
I have tried to get as much help as possible modifying the p2pool, but there has been some lack of interest there. But hey, it "works".
Also might be some errors in the guide above, most can be solved with some linux skills. If not, post in the thread and you will get some help.
This guide will focus on Ubuntu 12.04 and might work fine on other ubuntu platforms.
There might be some code error showing up, but if shares are going through and stats seems fine, it should be working.

Got any inputs on the code, please contact me, i need to modify the 2 live servers also if certain code is changed.






I have successfuly setup my own feathercoin p2pool with the p2pool server running on virtualbox ubuntu 12.04, miner runing on win7 sp1 x64.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: dolfcao on April 24, 2013, 08:20:36 AM
Hey guys, I'm runing for about 4 hours to mine feathercoin using feathercoin p2pool, but I get nothing, anyone could help?
It seems that all applications work fine.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: dolfcao on April 24, 2013, 02:21:30 PM
How to allow other pepole to mine use my feathercoin p2pool?


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: nesic1 on April 26, 2013, 11:58:59 PM
on what server should i put this? special or i can get it to work on my home PC?


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: Mushoz on April 29, 2013, 07:55:47 AM
Getting tons of orphans and very low efficiency (60%). I've been mining a lot on P2Pool with different coins, and I've always had very good efficiency (> 100% most of the time). What could be my problem?


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: shakezula on April 29, 2013, 02:08:58 PM
Thanks for the tutorial and p2pool modifications, this works great! The Fee payout doesn't seem to though, is that a problem of the p2pool modifications? Any chance of an update?


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: gyverlb on May 02, 2013, 09:47:17 PM
Quick and dirty

Modified code can be found here - https://github.com/chrda/p2pool-fc

This github repository gives me a 404.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: shakezula on May 02, 2013, 11:02:11 PM
Fee payout is still not working for me either. No worries, its all for fun. Thanks for your efforts!


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: LeftToeCut on May 03, 2013, 09:52:05 AM
yeah, that repo is gone, there is this now  https://github.com/chrda/p2pool-chncoin , does only support bitcoin, litecoin and terracoin as --net argument


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: wacko on May 03, 2013, 10:59:30 AM
Strange stuff indeed, the original repo is gone and the new one has feathercoin support stated in the description:
"Only use this for feathercoin"...

Yet the actual support of feathercoin mining was dropped without any comments. :(


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: caish5 on May 03, 2013, 11:00:48 AM
Has anyone got this working recently?
I'm stuck around the p2pool git bit which doesn;t work.
Will the chncoin git actually work for FC?


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: LeftToeCut on May 03, 2013, 11:51:48 AM
uhm, can someone upload the fc pool?


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: Jude Austin on May 03, 2013, 04:47:12 PM
Where oh where did p2pool-fc go?



Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: blastbob on May 03, 2013, 04:48:03 PM
Ill remake one.. need food, give me an hour..


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: Jude Austin on May 03, 2013, 04:48:41 PM
Ill remake one.. need food, give me an hour..

Thank you!



Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: blastbob on May 03, 2013, 05:31:07 PM
Updated first post with new url

https://github.com/Yorango/p2pool-ftc

Code is untested. Let me know if there is any

Need to use --net litecoin for feathercoin


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: wacko on May 03, 2013, 06:02:16 PM
Updated first post with new url

https://github.com/Yorango/p2pool-ftc

Code is untested. Let me know if there is any

Need to use --net litecoin for feathercoin
Thanks for your efforts. When I start this p2pool it shows my miners' speed as the whole network speed, and doesn't show anyone else, only my 2 addresses in the table. Looks like it doesn't connect to other nodes for some reason. :(


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: Jude Austin on May 03, 2013, 06:10:24 PM
Still not working on the dedicated.

Testing it on another VPS.

I will keep you updated.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: Jude Austin on May 03, 2013, 06:25:29 PM
Still getting the same thing.

http://198.23.129.176:19327/

There is nothing else running on this server.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: wacko on May 03, 2013, 06:58:22 PM
By the way, in my case it always shows the same p2pool's rate = 3413 kH/s. And Jude Austin's pool shows "Pool rate: 960kH/s" at the moment. It's like this p2pool doesn't connect to the actual feathercoin network or something.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: blastbob on May 03, 2013, 07:04:37 PM
By the way, in my case it always shows the same p2pool's rate = 3413 kH/s. And Jude Austin's pool shows "Pool rate: 960kH/s" at the moment. It's like this p2pool doesn't connect to the actual feathercoin network or something.

Its experimental code. If some one find bugs or things to change they need to share it, else we will never get far.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: kohonez on May 03, 2013, 07:57:39 PM
Jude Austin how did you fixed your node?


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: Jude Austin on May 03, 2013, 08:01:11 PM
Jude Austin how did you fixed your node?

Another forum member pointed me to a different git clone of p2pool for feathercoin.

I will post it here shortly.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: LeftToeCut on May 03, 2013, 09:09:28 PM
Anyone got it working?

I am connected to the network or not?

http://ftc-cryptocoin.pagekite.me:80

Does not seem so, right?


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: blastbob on May 03, 2013, 09:12:37 PM
Anyone got it working?

I am connected to the network or not?

http://ftc-cryptocoin.pagekite.me:80

Does not seem so, right?

Code is not enabled for connecting to other nodes..
So many ways to send bad data to other pools :)


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: LeftToeCut on May 03, 2013, 09:14:05 PM
Jude seems to have it working , will try his clone when he posts


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: bumbox on May 03, 2013, 10:17:19 PM
Anyone would like to share network IP? I'd like to connect my 5 Mhash node.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: nesic1 on May 03, 2013, 10:23:36 PM
i hawe couple of retarded questions:
1. how to download pool files, when i click on files from first post link it opens their code?
2. it would be fancy if i can get pushpool to mine at, just curious how it work
3. how to setup that some amount goes to other address, something like fee?

thx


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: tyrion70 on May 03, 2013, 10:26:12 PM
Just finished mine:

http://p2pool.nl:19327
userid your ftc address
pass doesn't matter

rate 1%

Would love to see ppl connecting to see if it works correctly.

Thx


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: bumbox on May 03, 2013, 10:28:27 PM
i hawe couple of retarded questions:
1. how to download pool files, when i click on files from first post link it opens their code?
2. it would be fancy if i can get pushpool to mine at, just curious how it work

1. Check your webserver mime types settings
2. AFAIK scrypt patched pushpool can work for FTC. You may clone it here https://github.com/CryptoManiac/p2pool But it does not have stratum/vardiff support. At least in opesource version :)


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: nesic1 on May 03, 2013, 10:31:01 PM
just found another post mile long so will read it now, it has some answers

tyrion how you set fee 1%?


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: MrSheep on May 03, 2013, 10:31:11 PM
Anyone would like to share network IP? I'd like to connect my 5 Mhash node.

My p2pool is on pool.maeh.org - However, i still do run the "old" p2pool-fc from the now no longer existing chrda network. From doing a diff of the code from the one posted in this thread the IDENTIFIER and PREFIX seem to be mixed up with the litecoin network?

Assumption: People running the Y... something repository run their feathercoin p2pools with the litecoin identifier and people running on the old repository run it with the former identifer. From my gut feeling the Y... repository needs to be amended!?


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: Jude Austin on May 03, 2013, 10:32:53 PM
Anyone would like to share network IP? I'd like to connect my 5 Mhash node.

My p2pool is on pool.maeh.org - However, i still do run the "old" p2pool-fc from the now no longer existing chrda network. From doing a diff of the code from the one posted in this thread the IDENTIFIER and PREFIX seem to be mixed up with the litecoin network?

Assumption: People running the Y... something repository run their feathercoin p2pools with the litecoin identifier and people running on the old repository run it with the former identifer. From my gut feeling the Y... repository needs to be amended!?


Here you go: https://github.com/skralg/p2pool-feathercoin.git

This is the one that I am using for http://p2pool.org

Seems to be working good.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: tyrion70 on May 03, 2013, 10:33:42 PM
just found another post mile long so will read it now, it has some answers

tyrion how you set fee 1%?
-f 1

where 1 is fee :)


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: bumbox on May 03, 2013, 10:38:52 PM
Anyone would like to share network IP? I'd like to connect my 5 Mhash node.

My p2pool is on pool.maeh.org - However, i still do run the "old" p2pool-fc from the now no longer existing chrda network. From doing a diff of the code from the one posted in this thread the IDENTIFIER and PREFIX seem to be mixed up with the litecoin network?

Assumption: People running the Y... something repository run their feathercoin p2pools with the litecoin identifier and people running on the old repository run it with the former identifer. From my gut feeling the Y... repository needs to be amended!?


Here you go: https://github.com/skralg/p2pool-feathercoin.git

This is the one that I am using for http://p2pool.org

Seems to be working good.

Thanks! I am making a setup to test.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: bumbox on May 03, 2013, 10:42:10 PM
https://github.com/skralg/p2pool-feathercoin.git

Indeed this version works great for me. At least now I can see the full network on my local node.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: MrSheep on May 03, 2013, 10:45:17 PM
The skralg code seems to be much cleaner and complete from having a quick browse of it. Also looks like the IDENTIFIER was changed here on purpose. I got that running now on pool.maeh.org. Press your thumbs!


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: turtle83 on May 03, 2013, 10:55:18 PM

Here you go: https://github.com/skralg/p2pool-feathercoin.git

This is the one that I am using for http://p2pool.org

Seems to be working good.

Looks good, i see it has a seed. Will try it tomorrow(past bedtime). But i see incompatible changes in this version, i.e. it mungles up some litecoin things. (example: https://github.com/skralg/p2pool-feathercoin/commit/bb5b1edbf0e95565bed127281a88a13df8d7cf77  )

Would it be possible to keep it clean, and just add feathercoin things, that way the changes can be pushed into the original p2pool repository. That would be most convenient, rather than tracking forks and debating over which to use.

^ If answer to above is no, then let me know, ill fork the upstream p2pool, use your identifier, prefix and seed and redo the changes such that it doesnt mungle up other coins and apply for pull request.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: Jude Austin on May 03, 2013, 10:56:42 PM
Am I crazy or what?

I have a 7970 and when I point it to the pool it never shows an accepted share or is that normal?

Just new blocks and work restarts.

I never mine scrypt so this is confusing me.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: bumbox on May 03, 2013, 11:00:43 PM
Am I crazy or what?

I have a 7970 and when I point it to the pool it never shows an accepted share or is that normal?

Just new blocks and work restarts.

I never mine scrypt so this is confusing me.

I think no.
Here is my 7970 on local node of skralg p2pool:
Code:
 GPU 1:  74.0C 3702RPM | 734.4K/736.8Kh/s | A:524 R:0 HW:0 U:  31.71/m I:13


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: nesic1 on May 03, 2013, 11:08:54 PM
just found another post mile long so will read it now, it has some answers

tyrion how you set fee 1%?
-f 1

where 1 is fee :)

is this fee goes to your account? where you put code for fee and adress on which it should be sent


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: Jude Austin on May 03, 2013, 11:14:01 PM
Am I crazy or what?

I have a 7970 and when I point it to the pool it never shows an accepted share or is that normal?

Just new blocks and work restarts.

I never mine scrypt so this is confusing me.

I think no.
Here is my 7970 on local node of skralg p2pool:
Code:
 GPU 1:  74.0C 3702RPM | 734.4K/736.8Kh/s | A:524 R:0 HW:0 U:  31.71/m I:13

What does your config look like?


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: wacko on May 03, 2013, 11:50:41 PM
Am I crazy or what?

I have a 7970 and when I point it to the pool it never shows an accepted share or is that normal?
Thanks for posting the link to skralg git, seems like it works.

By "accepted shares" do you mean the shares in p2pool chain or the shares shown in miners? Cgminer shows a lot of shares accepted (as on the bumbox's "screenshot"), but those aren't "real" p2pool shares, afaik they're just there for hashrate calculation. It might take a while to get "real" shares with p2pool, I've setup a node and connected my home workers to it about half an hour ago, and with ~ 11 Mhash/sec I've got 5 shares accepted by p2pool so far, 2 of which are orphaned. Whether it's ok or not to have so few shares accepted I'm not sure myself, let's see how others are doing.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: bumbox on May 03, 2013, 11:59:45 PM
What does your config look like?

Here is it:
Code:
./cgminer --scrypt -o http://10.10.10.10:8080 -u x -p x --thread-concurrency 8192 -g 2 -I 13 -w 256 --gpu-engine 940,1050,1120,1120 --gpu-memclock 1350,1500,1450,1600

7970 is a second card with 1050/1500 and flashed bios.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: Jude Austin on May 04, 2013, 12:16:41 AM
It's really weird.

None of my GPUs will mine scrypt.

None, lol.

And yes, I know how to tune for scrypt.

But when I run them they never get shares and the diff is really high according to cgminer for each share.

I don't understand what the issue could be.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: LeftToeCut on May 04, 2013, 12:28:47 AM
Could anyone throw a few hashes this way > http://ftc-cryptocoin.pagekite.me to see if it works?

I am getting 0 shares with this git clone , according to the stats page anyway.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: nesic1 on May 04, 2013, 12:31:25 AM
did you change pool fee and how do you do it? also how you put your address to receive fee?


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: LeftToeCut on May 04, 2013, 12:34:50 AM
run_p2pool.py --net litecoin -a YourFTCfeePayoutAddress -f 1 --give-author 0 --w 19327 --bitcoind-p2p-port 9336 --bitcoind-rpc-port 9337 rpcadmin yourgoodpasswordfromfeathercoin.confhere

-a YourFTCfeePayoutAddress
-f x where x is the fee amount


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: bumbox on May 04, 2013, 12:41:56 AM
run_p2pool.py --net litecoin -a YourFTCfeePayoutAddress -f 1 --give-author 0 --w 19327 --bitcoind-p2p-port 9336 --bitcoind-rpc-port 9337 rpcadmin yourgoodpasswordfromfeathercoin.confhere

-a YourFTCfeePayoutAddress
-f x where x is the fee amount

For the skralg's version it is needed to use:
Code:
--net feathercoin


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: nesic1 on May 04, 2013, 12:52:58 AM
will test it now, thank you for your reply


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: nesic1 on May 04, 2013, 01:59:26 AM
ImportError: cannot import name MAXREPEAT

i get this at step
cd litecoin_scrypt
            C:\Python27\python.exe setup.py build --compile=mingw32 install


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: erk on May 04, 2013, 03:25:24 AM
Working but doesn't seem to be many other peers


EDIT: nevermind I was following the instructions at the start of the thread with the -net litecoin flag, when I read further and installed the updated version which uses the -net feathercoin falg all is good.



Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: nesic1 on May 04, 2013, 10:20:28 AM
delete post


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: turtle83 on May 04, 2013, 11:09:58 AM
i get this error, someone know what it is?

since i am fckin retarded i am willing to pay 0.01BitBar (i have it in my wallet but dont know is there any fee for sending) and 5FTC for someone who help me to get FTC p2pool completely functional

http://anonymouse.org/cgi-bin/anon-www.cgi/http://anonymouse.org/cgi-bin/anon-www.cgi/http://img577.imageshack.us/img577/594/121211copycopy2.jpg (http://imageshack.us/photo/my-images/577/121211copycopy2.jpg/)

do you have any files matching C:\Windows\System32\python*.dll ?


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: nesic1 on May 04, 2013, 11:36:57 AM
it looks like i dont have python files in system32 dir?


*do i need to run ftc, ltc, btc clients for this to work?

new error:

http://img268.imageshack.us/img268/67/wwwwwwwwwwwwwwwwwwwwa.jpg (http://imageshack.us/photo/my-images/268/wwwwwwwwwwwwwwwwwwwwa.jpg/)


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: tilt on May 04, 2013, 04:45:50 PM
it looks like i dont have python files in system32 dir?


*do i need to run ftc, ltc, btc clients for this to work?

new error:

http://anonymouse.org/cgi-bin/anon-www.cgi/http://anonymouse.org/cgi-bin/anon-www.cgi/http://img268.imageshack.us/img268/67/wwwwwwwwwwwwwwwwwwwwa.jpg (http://imageshack.us/photo/my-images/268/wwwwwwwwwwwwwwwwwwwwa.jpg/)
You are running the wrong version on python.  You need to run the script with python 3.  You cant run it with python 2.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: nesic1 on May 04, 2013, 05:12:24 PM
i also try with python 3.3.1 ant everything that goes for him, also 32&64bit versions and still nothing

solved: it wont work on win7 x64


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: hagenees on May 26, 2013, 03:08:32 PM
All what you wrote here is total bullshit,I made everything how you described, but got nothing.


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: hagenees on May 27, 2013, 05:49:14 PM
To start p2pool better make this:
1.Go to directory where p2pool is installed - "cd ~/p2pool-feathercoin"
2. Run command: "python run_p2pool.py --net feathercoin -a YourFTCPayoutAddress -f 0 --give-author 0 --w 19327 --bitcoind-p2p-port 9336 --bitcoind-rpc-port 9667 rpcadmin yourgoodpasswordfromfeathercoin.confhere"


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: MrSheep on October 25, 2013, 09:13:27 PM
As the repositories in this thread are either no longer available or the p2pool version provided is very old, i have created a p2pool version for Feathercoin based on the latest available p2pool version. I do intend to update this version regularly. Please let me know if you have updated your p2pool for Feathercoin to the latest version on a stable and continually running host so i could then add you to the seed hosts. Right now there is only two if my machines running as seed hosts.

Repository: https://github.com/andreasfaerber/p2pool-feathercoin
Blog / Pool Site: http://pool.maeh.org/

Regards,
MrSheep


Title: Re: [HOWTO] Setup a p2pool for Feathercoin
Post by: wrapperband0lite on June 20, 2016, 12:09:01 PM
Status of Feathercoin p2pool software releases

Feathercoin has updated to GPU "only" Neoscrypt algorithm and p2pool updates have been released for a while.

**The Feathercoin neoscrypt p2pool instruction are included in Github repository :**

https://github.com/wellenreiter01/p2pool-neoscrypt

**Ask for further help with p2pool on the Feathercoin Forum**

http://forum.feathercoin.com/topic/8384/what-version-of-p2pool-software-to-use-with-feathercoin-neoscrypt/2

The p2pool now installs easy and runs great as your own private pool. The current estimates at current average FTC (neoscrypt) difficulty means you can "Solo mine" a  something like a R9 280 using  NSGminer. It is a good introduction to mining without using ASICs.

** NSGminer v0.9.2: The Fastest NeoScrypt GPU Miner**

https://github.com/ghostlander/nsgminer

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