root@mein:~/ppool# sudo ./pushpoold -E -D 2
[2012-08-20 16:59:53.121413] Debug output enabled
[2012-08-20 16:59:53.121687] Forcing local hostname to localhost.localdomain
root@mein:~/ppool# [2012-08-20 16:59:53.126800] Listening on host :: port 9942
[2012-08-20 16:59:53.126874] Listening on host :: port 9941
[2012-08-20 16:59:53.126924] Listening on host :: port 9944
[2012-08-20 16:59:53.126957] Listening on host 127.0.0.1 port 9938
root@mein:~/ppool#
I've been at this since last night and went through this whole thread looking for answers.
I'm trying to get Pushpoold to work with an alternative Crypt-Currency, but am not having any luck getting it to initialize.
The alt currency is the same format as Bitcoin (with RPC commands and everything).
I made sure the DB, RPC, as well as the file permission/locations where correct.
{
# network ports
"listen" : [
# binary protocol (default), port 8342
{ "port" : 9942 },
# HTTP JSON-RPC protocol, port 8341
{ "port" : 9941, "protocol" : "http-json" },
# HTTP JSON-RPC protocol, port 8344,
# with trusted proxy appserver.example.com forwarding
# requests to us
{ "port" : 9944, "protocol" : "http-json",
"proxy" : "127.0.0.1" },
# binary protocol, localhost-only port 8338
{ "host" : "127.0.0.1", "port" : 9938, "protocol" : "binary" }
],
# database settings
"database" : {
"engine" : "mysql",
"host" : "localhost",
"port" : 3306,
"name" : "*",
"username" : "*",
"password" : "*",
"sharelog" : true,
"stmt.pwdb":"SELECT `password` FROM `pool_worker` WHERE `username` = ?",
"stmt.sharelog":"INSERT INTO shares (rem_host, username, our_result, upstream_resul$
},
# cache settings
"memcached" : {
"servers" : [
{ "host" : "127.0.0.1", "port" : 11211 }
]
},
"pid" : "/root/pushpoold.pid",
# overrides local hostname detection
"forcehost" : "localhost.localdomain",
"log.requests" : "/root/request.log",
"log.shares" : "/root/shares.log",
# the server assumes longpolling (w/ SIGUSR1 called for each blk)
"longpoll.disable" : false,
# length of time to cache username/password credentials, in seconds
"auth.cred_cache.expire" : 75,
# RPC settings | Notice how this ISN'T port number 8332 this is becuase the same port numbe$
"rpc.url" : "http://127.0.0.1:9932/",
"rpc.user" : "*",
"rpc.pass" : "*",
# rewrite returned 'target' to difficulty-1?
"rpc.target.rewrite" : true
}