1

大学のいくつかのクラブで LiteCoin mmcFE-pushpool プールを開始していますが、問題が発生しています。まず、EC2 インスタンス (Ubuntu) で実行しており、mmcFE と pushpull を実行しています。このプールを開始する前に、2 つの大きな問題が発生しています...

1) Web インターフェイスでは、ユーザーは問題なくアカウントを作成し、ログインできます。左側に、次のようなエラー/通知があります: /includes/leftsidebar.php 71 行目

2) 次に、先に進んで前のエラーを無視し、統計をテストするためだけに CPU マイナーを実行することにしました。通常、他の人のプールでは約 11kh/s でハッシュ (暗号化) できます。現在、約 5 時間実行されていますが、ウェブサイトの統計はまだ 0 です。cron ジョブは 2 分ごとに実行されています。MINERD を使用していて、「共有が送信されました。ええ!」はまったくありません。私のPCで....

誰にも指針がありますか?何が私たちを妨げているのか、私は本当に困惑しています。この問題は、http://p2pool.usの Web ページで確認できます。

{
    # network ports
    "listen" : [
            # binary protocol (default), port 8336
            { "port" : 8336 },

            # HTTP JSON-RPC protocol, port 8337
            { "port" : 8337, "protocol" : "http-json" }

    ],

# database settings
 "database" : {
           "engine" : "mysql",

           # 'host' defaults to localhost, if not specified
            "host" : "127.0.0.1",

           # 'port' uses proper default port for the DB engine,
           # if not specified
           "port" : "3306",

           "name" : "sc",
           "username" : "myusername",
           "password" : "mypasswd",
           "sharelog" : true,
           "stmt.pwdb":"SELECT password FROM pool_worker WHERE username = ?",

           "stmt.sharelog":"INSERT INTO shares (rem_host, username, our_result,               upstream_result, reason, solution) VALUES (?, ?, ?, $
},

    # cache settings
    "memcached" : {
            "servers" : [
                    { "host" : "127.0.0.1", "port" : 11211 }
            ]
    },
            "servers" : [
                    { "host" : "127.0.0.1", "port" : 11211 }
            ]
    },

    "pid" : "/tmp/pushpoold.pid",

    # overrides local hostname detection
    "forcehost" : "localhost.localdomain",

    "log.requests" : "/tmp/request.log",
    "log.shares" : "/tmp/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
    "rpc.url" : "http://127.0.0.1:9332/",
    "rpc.user" : "user",
    "rpc.pass" : "pass",

    # rewrite returned 'target' to difficulty-1?
    "rpc.target.rewrite" : true,

    # allow clients to update the ntime field of their work
    "roll.ntime.disable" : false
}

上記は私のPUSHPOOLD構成を示しています。以下は、私のlitecoind confです:

server=1
rpcallowip=127.0.0.1
rpcuser=user
rpcpassword=pass
4

0 に答える 0