Bitcoin Forum
May 06, 2024, 05:09:34 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 [5] 6 7 »  All
  Print  
Author Topic: [ANNOUNCE] ecoinpool - A brand new pool mining software written in Erlang  (Read 28426 times)
Mobius
Hero Member
*****
Offline Offline

Activity: 988
Merit: 1000



View Profile
September 20, 2012, 12:21:05 PM
 #81

I know that in 0.6.3.rc you need to
# gedit  apps/ecoinpool/src/btc_daemon_util.erl
# replace getblocknumber with getblockcount line 220

in 0.7.0
getmemorypool has been removed in 0.7.0 and replaced with getblocktemplate

in the release notes:
Incompatible Changes
--------------------
* Replaced the 'getmemorypool' RPC command with 'getblocktemplate/submitblock'
  and 'getrawmempool' commands.
* Remove deprecated RPC 'getblocknumber'


and it was suggested that  apps/ecoinpool/src/btc_daemon_util.erl line 238 be tweaked as well

1714972174
Hero Member
*
Offline Offline

Posts: 1714972174

View Profile Personal Message (Offline)

Ignore
1714972174
Reply with quote  #2

1714972174
Report to moderator
1714972174
Hero Member
*
Offline Offline

Posts: 1714972174

View Profile Personal Message (Offline)

Ignore
1714972174
Reply with quote  #2

1714972174
Report to moderator
1714972174
Hero Member
*
Offline Offline

Posts: 1714972174

View Profile Personal Message (Offline)

Ignore
1714972174
Reply with quote  #2

1714972174
Report to moderator
"With e-currency based on cryptographic proof, without the need to trust a third party middleman, money can be secure and transactions effortless." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714972174
Hero Member
*
Offline Offline

Posts: 1714972174

View Profile Personal Message (Offline)

Ignore
1714972174
Reply with quote  #2

1714972174
Report to moderator
1714972174
Hero Member
*
Offline Offline

Posts: 1714972174

View Profile Personal Message (Offline)

Ignore
1714972174
Reply with quote  #2

1714972174
Report to moderator
slush
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
September 27, 2012, 03:52:43 PM
 #82

p2k, I heard some rumours that you're going to implement Stratum protocol. Feel free to join us at #stratum, there are already people willing to answer your potential questions.

Mobius
Hero Member
*****
Offline Offline

Activity: 988
Merit: 1000



View Profile
October 02, 2012, 08:27:26 AM
 #83

bump
maaku
Legendary
*
Offline Offline

Activity: 905
Merit: 1011


View Profile
October 04, 2012, 03:53:07 AM
 #84

As it says, you've got a syntax error on line 88 starting with "Format". You shouldn't have uncommented that line (or the one further down starting with "MM Format".

I'm an independent developer working on bitcoin-core, making my living off community donations.
If you like my work, please consider donating yourself: 13snZ4ZyCzaL7358SmgvHGC9AxskqumNxP
psilan
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250



View Profile
October 04, 2012, 10:10:46 AM
 #85

Anybody tried running this on a Pi?

dip
betatest512
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
October 04, 2012, 03:42:10 PM
 #86

my test_launch.config is:

% This is an example configuration file. Lists are denoted with [...] and tuples
% are denoted with {...}. Together they form a nested structure of names and
% parameters. If you make changes and add or remove options, make sure not to
% have a comma before a closing bracket or curly brace.

[
    % SASL is Erlang's internal error and crash logger; it also logs starting
    % and stopping of certain processes. I set it to "error" here so it won't
    % pollute stdout/stderr.
    {sasl, [
        {errlog_type, error}
    ]},
   
    % This is ecoinpool's main configuration. The CouchDB connection is
    % configured here.
    {ecoinpool, [
        % The following commented lines are default settings.
        {db_host, "localhost"},
        {db_port, 5984},
        {db_prefix, ""},
       
        % The next line should be changed, depending on your CouchDB
        % authentication settings: username password
        {db_options, [{basic_auth, {"admin", "admin"}}]},
       
        % Here you can change ecoinpool's HTTP service port, currently used to
        % serve global RPC functions used by the frontend.
        %{service_port, 8080},
       
        % The last line in this section contains your blowfish secret key, share
        % this among your servers and don't tell it to anyone else. Minimum key
        % length is 4 bytes, maximum is 56 bytes.
        % If you have pwgen (a password generator), try "pwgen -s 56 1" to get
        % 56 random characters.
        {blowfish_secret, "1a2a3a4a5a"}
    ]},
   
    % This is the ebitcoin configuration. ebitcoin forms a separate application,
    % thus it doesn't share ecoinpool's database settings. If you use the same
    % CouchDB server and authentication, copy it from above.
    {ebitcoin, [
        % You can also disable ebitcoin altogether by uncommenting the following
        % line. Note that you will fall back to the polling system then.
        %{enabled, false},
       
        {db_host, "localhost"},
        {db_port, 5984},
        {db_prefix, ""},
        {db_options, [{basic_auth, {"admin", "admin"}}]}
    ]},
   
    % The third separate application (it also has to be started separately) is
    % the MySQL Replicator. It is used to bridge legacy MySQL worker tables to
    % CouchDB and also stores copies of the shares into a MySQL table.
    {ecoinpool_mysql_replicator, [
        % Again, commented lines are default settings.
        %{couchdb_host, "localhost"},
        %{couchdb_port, 5984},
        %{couchdb_prefix, ""},
        {couchdb_options, [{basic_auth, {"ecoinpool", "localtest"}}]},
        %{couchdb_database, "ecoinpool"},
       
        %{mysql_host, "localhost"},
        %{mysql_port, 3306},
        %{mysql_prefix, ""},
        {mysql_options, [{auth, {"ecoinpool", "localtest"}}]},
        %{mysql_database, "ecoinpool"},
       
        % This is a setting that certainly has to be changed. Configure one or
        % more worker table replicators here (if you have multiple sub-pools).
        % Please only connect one sub-pool to one table or things get jammed up.
        {replicator_configs, [
            % Format: {<ecoinpool sub-pool ID>, <MySQL worker table>, <MySQL sync interval in seconds, 1 or more>}
            {"24aa68ec6c910de0850ed0c575621ec9", "pool_worker", 15}
        ]},
       
        % Next is your blowfish secret key. Copy it from above.
        {blowfish_secret, "Replace me!"},
       
        % And the last one, also to be likely changed, is the shares deployer
        % configuration. There are two possible formats here, one with and one
        % without using merged mining. The config ID is used as basename for
        % saving the deployment state file and for the "source" column.
        {share_deployer_configs, [
            % Non-MM Format: {<config ID string>, <pool name>, <MySQL shares table>, <MySQL write interval in seconds, 0 allowed>}
            {"ltc_test_shares", "ltc-test", "shares", 60},
            % MM Format: {<config ID string>, <main pool name>, <aux pool name>, <MySQL shares table>, <MySQL write interval in seconds, 0 allowed>}
            {"btc_nmc_test_shares", "btc-test", "nmc-test", "shares", 60}
        ]}
    ]}
].

i get the following error when i run test_launch.sh :

==> ecoinpool (compile)
==> ebitcoin (compile)
==> rel (compile)
==> ecoinpool (compile)
Erlang R15B (erts-5.9) [source] [smp:1:1] [async-threads:0] [kernel-poll:true]

Eshell V5.9  (abort with ^G)
(ecoinpool_test@ubuntu)1> {"init terminating in do_boot",{{badmatch,{error,{shutdown,{ebitcoin_app,start,[normal,[]]}}}},[{ecoinpool_test_launch,start,0,[{file,"src/ecoinpool_test_launch.erl"},{line,34}]},{init,start_it,1,[]},{init,start_em,1,[]}]}}

Crash dump was written to: erl_crash.dump
init terminating in do_boot ()


maaku
Legendary
*
Offline Offline

Activity: 905
Merit: 1011


View Profile
October 04, 2012, 04:45:43 PM
 #87

Did you apply the fix the dependency versions as I mentioned a few pages back? Are you using v0.7 (not supported)?

I'm an independent developer working on bitcoin-core, making my living off community donations.
If you like my work, please consider donating yourself: 13snZ4ZyCzaL7358SmgvHGC9AxskqumNxP
sippsnapp
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
October 05, 2012, 05:22:02 AM
Last edit: October 05, 2012, 06:12:52 AM by sippsnapp
 #88

I tried once again to get ecoinpool working.
Im pretty sure everything is setup fine (couchdb, erlang) except the last part of the configuration file.

Here is the error i actually encounter:
Code:
root@j064:/opt/ecoinpool# ./test_launch.sh
==> ecoinpool (compile)
==> ebitcoin (compile)
==> rel (compile)
==> ecoinpool (compile)
Erlang R15B (erts-5.9) [source] [64-bit] [smp:4:4] [async-threads:0] [hipe] [kernel-poll:true]

Eshell V5.9  (abort with ^G)
(ecoinpool_test@j064)1> {"init terminating in do_boot",{{badmatch,{error,{shutdown,{ebitcoin_app,start,[normal,[]]}}}},[{ecoinpool_test_launch,start,0,[{file,"src/ecoinpool_test_launch.erl"},{line,34}]},{init,start_it,1,[]},{init,start_em,1,[]}]}}

Crash dump was written to: erl_crash.dump
init terminating in do_boot ()
root@j064:/opt/ecoinpool#


Anybody here who can post a sample config and a describtion on the nessecary steps from here to get this working?
What parts to be edited, removed, replaced and database settings outside of this config file.

Code:
% This is a setting that certainly has to be changed. Configure one or
        % more worker table replicators here (if you have multiple sub-pools).
        % Please only connect one sub-pool to one table or things get jammed up.
        {replicator_configs, [
            % Format: {<ecoinpool sub-pool ID>, <MySQL worker table>, <MySQL sync interval in seconds, 1 or more>}
            {"24aa68ec6c910de0850ed0c575621ec9", "pool_worker", 15}
        ]},
        
        % Next is your blowfish secret key. Copy it from above.
        {blowfish_secret, "Replace me!"},
        
        % And the last one, also to be likely changed, is the shares deployer
        % configuration. There are two possible formats here, one with and one
        % without using merged mining. The config ID is used as basename for
        % saving the deployment state file and for the "source" column.
        {share_deployer_configs, [
            % Non-MM Format: {<config ID string>, <pool name>, <MySQL shares table>, <MySQL write interval in seconds, 0 allowed>}
            {"ltc_test_shares", "ltc-test", "shares", 60},
            % MM Format: {<config ID string>, <main pool name>, <aux pool name>, <MySQL shares table>, <MySQL write interval in seconds, 0 allowed>}
            {"btc_nmc_test_shares", "btc-test", "nmc-test", "shares", 60}
        ]}
    ]}
].

Πάντα ῥεῖ
Bitcoin + Altcoin node pool setup - pm
OgStar
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
October 05, 2012, 11:54:01 PM
 #89

I tried once again to get ecoinpool working.
Im pretty sure everything is setup fine (couchdb, erlang) except the last part of the configuration file.

Here is the error i actually encounter:
Code:
root@j064:/opt/ecoinpool# ./test_launch.sh
==> ecoinpool (compile)
==> ebitcoin (compile)
==> rel (compile)
==> ecoinpool (compile)
Erlang R15B (erts-5.9) [source] [64-bit] [smp:4:4] [async-threads:0] [hipe] [kernel-poll:true]

Eshell V5.9  (abort with ^G)
(ecoinpool_test@j064)1> {"init terminating in do_boot",{{badmatch,{error,{shutdown,{ebitcoin_app,start,[normal,[]]}}}},[{ecoinpool_test_launch,start,0,[{file,"src/ecoinpool_test_launch.erl"},{line,34}]},{init,start_it,1,[]},{init,start_em,1,[]}]}}

Crash dump was written to: erl_crash.dump
init terminating in do_boot ()
root@j064:/opt/ecoinpool#


Anybody here who can post a sample config and a describtion on the nessecary steps from here to get this working?
What parts to be edited, removed, replaced and database settings outside of this config file.

Code:
% This is a setting that certainly has to be changed. Configure one or
        % more worker table replicators here (if you have multiple sub-pools).
        % Please only connect one sub-pool to one table or things get jammed up.
        {replicator_configs, [
            % Format: {<ecoinpool sub-pool ID>, <MySQL worker table>, <MySQL sync interval in seconds, 1 or more>}
            {"24aa68ec6c910de0850ed0c575621ec9", "pool_worker", 15}
        ]},
        
        % Next is your blowfish secret key. Copy it from above.
        {blowfish_secret, "Replace me!"},
        
        % And the last one, also to be likely changed, is the shares deployer
        % configuration. There are two possible formats here, one with and one
        % without using merged mining. The config ID is used as basename for
        % saving the deployment state file and for the "source" column.
        {share_deployer_configs, [
            % Non-MM Format: {<config ID string>, <pool name>, <MySQL shares table>, <MySQL write interval in seconds, 0 allowed>}
            {"ltc_test_shares", "ltc-test", "shares", 60},
            % MM Format: {<config ID string>, <main pool name>, <aux pool name>, <MySQL shares table>, <MySQL write interval in seconds, 0 allowed>}
            {"btc_nmc_test_shares", "btc-test", "nmc-test", "shares", 60}
        ]}
    ]}
].


I'm stuck with this exact same error. I think it's something related to ebitcoin, since line 34 of src/ecoinpool_test_launch.erl is an include of an ebitcoin module. I tried disabling ebitcoin, but the exception was still the same.
OgStar
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
October 06, 2012, 12:03:14 AM
 #90

ebitcoin's database was created in couchdb, but it stopped there because of that error.
betatest512
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
October 06, 2012, 07:48:08 AM
 #91

I tried once again to get ecoinpool working.
Im pretty sure everything is setup fine (couchdb, erlang) except the last part of the configuration file.

Here is the error i actually encounter:
Code:
root@j064:/opt/ecoinpool# ./test_launch.sh
==> ecoinpool (compile)
==> ebitcoin (compile)
==> rel (compile)
==> ecoinpool (compile)
Erlang R15B (erts-5.9) [source] [64-bit] [smp:4:4] [async-threads:0] [hipe] [kernel-poll:true]

Eshell V5.9  (abort with ^G)
(ecoinpool_test@j064)1> {"init terminating in do_boot",{{badmatch,{error,{shutdown,{ebitcoin_app,start,[normal,[]]}}}},[{ecoinpool_test_launch,start,0,[{file,"src/ecoinpool_test_launch.erl"},{line,34}]},{init,start_it,1,[]},{init,start_em,1,[]}]}}

Crash dump was written to: erl_crash.dump
init terminating in do_boot ()
root@j064:/opt/ecoinpool#


Anybody here who can post a sample config and a describtion on the nessecary steps from here to get this working?
What parts to be edited, removed, replaced and database settings outside of this config file.

Code:
% This is a setting that certainly has to be changed. Configure one or
        % more worker table replicators here (if you have multiple sub-pools).
        % Please only connect one sub-pool to one table or things get jammed up.
        {replicator_configs, [
            % Format: {<ecoinpool sub-pool ID>, <MySQL worker table>, <MySQL sync interval in seconds, 1 or more>}
            {"24aa68ec6c910de0850ed0c575621ec9", "pool_worker", 15}
        ]},
        
        % Next is your blowfish secret key. Copy it from above.
        {blowfish_secret, "Replace me!"},
        
        % And the last one, also to be likely changed, is the shares deployer
        % configuration. There are two possible formats here, one with and one
        % without using merged mining. The config ID is used as basename for
        % saving the deployment state file and for the "source" column.
        {share_deployer_configs, [
            % Non-MM Format: {<config ID string>, <pool name>, <MySQL shares table>, <MySQL write interval in seconds, 0 allowed>}
            {"ltc_test_shares", "ltc-test", "shares", 60},
            % MM Format: {<config ID string>, <main pool name>, <aux pool name>, <MySQL shares table>, <MySQL write interval in seconds, 0 allowed>}
            {"btc_nmc_test_shares", "btc-test", "nmc-test", "shares", 60}
        ]}
    ]}
].

i am also stuck with the same error can someone help?
OgStar
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
October 06, 2012, 02:04:43 PM
 #92

I tried once again to get ecoinpool working.
Im pretty sure everything is setup fine (couchdb, erlang) except the last part of the configuration file.

Here is the error i actually encounter:
Code:
root@j064:/opt/ecoinpool# ./test_launch.sh
==> ecoinpool (compile)
==> ebitcoin (compile)
==> rel (compile)
==> ecoinpool (compile)
Erlang R15B (erts-5.9) [source] [64-bit] [smp:4:4] [async-threads:0] [hipe] [kernel-poll:true]

Eshell V5.9  (abort with ^G)
(ecoinpool_test@j064)1> {"init terminating in do_boot",{{badmatch,{error,{shutdown,{ebitcoin_app,start,[normal,[]]}}}},[{ecoinpool_test_launch,start,0,[{file,"src/ecoinpool_test_launch.erl"},{line,34}]},{init,start_it,1,[]},{init,start_em,1,[]}]}}

Crash dump was written to: erl_crash.dump
init terminating in do_boot ()
root@j064:/opt/ecoinpool#


Anybody here who can post a sample config and a describtion on the nessecary steps from here to get this working?
What parts to be edited, removed, replaced and database settings outside of this config file.

Code:
% This is a setting that certainly has to be changed. Configure one or
        % more worker table replicators here (if you have multiple sub-pools).
        % Please only connect one sub-pool to one table or things get jammed up.
        {replicator_configs, [
            % Format: {<ecoinpool sub-pool ID>, <MySQL worker table>, <MySQL sync interval in seconds, 1 or more>}
            {"24aa68ec6c910de0850ed0c575621ec9", "pool_worker", 15}
        ]},
        
        % Next is your blowfish secret key. Copy it from above.
        {blowfish_secret, "Replace me!"},
        
        % And the last one, also to be likely changed, is the shares deployer
        % configuration. There are two possible formats here, one with and one
        % without using merged mining. The config ID is used as basename for
        % saving the deployment state file and for the "source" column.
        {share_deployer_configs, [
            % Non-MM Format: {<config ID string>, <pool name>, <MySQL shares table>, <MySQL write interval in seconds, 0 allowed>}
            {"ltc_test_shares", "ltc-test", "shares", 60},
            % MM Format: {<config ID string>, <main pool name>, <aux pool name>, <MySQL shares table>, <MySQL write interval in seconds, 0 allowed>}
            {"btc_nmc_test_shares", "btc-test", "nmc-test", "shares", 60}
        ]}
    ]}
].

i am also stuck with the same error can someone help?

I have the same issue.

Let's try to help ourselves, before someone comes to our aid. What distro and version are you using? spidermonkey version? couchdb version? Erlang version?

I'll start:

Distro and distro version:
Terminal ->
Code:
$ lsb_release -a
Prints:
Code:
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 6.0.5 (squeeze)
Release: 6.0.5
Codename: squeeze


Spidermonkey version:
Terminal ->
Code:
$ dpkg -p libmozjs-dev
(I use debian, that would be rpm for Red Hat)
Prints:
Code:
Architecture: amd64
Source: iceweasel (3.5.16-17)
Version: 1.9.1.16-17
Depends: libmozjs2d (= 1.9.1.16-17), libnspr4-dev

CouchDB version:
Terminal ->
Code:
couchdb -V
Prints:
Code:
couchdb - Apache CouchDB 1.3.0a-ac32047-git

Erlang version:
Terminal ->
Code:
erl --version
Hit Ctrl + C twice to come back to console
Prints:
Code:
Erlang R15B02 (erts-5.9.2) [source] [64-bit] [smp:11:11] [async-threads:0] [hipe] [kernel-poll:false]
sippsnapp
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
October 06, 2012, 03:34:18 PM
Last edit: October 06, 2012, 04:28:41 PM by sippsnapp
 #93

Code:
root@j064:~# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 12.04.1 LTS
Release:        12.04
Codename:       precise
root@j064:~#

Code:
root@j064:~# dpkg -p libmozjs-dev
Package `libmozjs-dev' is not available.
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
root@j064:~#

Code:
couchdb - Apache CouchDB 1.2.0
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.

root@j064:~#

Code:
root@j064:~# erl --version
Erlang R15B (erts-5.9) [source] [64-bit] [smp:4:4] [async-threads:0] [hipe] [kernel-poll:false]
root@j064:~#





Πάντα ῥεῖ
Bitcoin + Altcoin node pool setup - pm
OgStar
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
October 06, 2012, 04:21:48 PM
 #94


Code:
root@j064:~# dpkg -p libmozjs-dev
Package `libmozjs-dev' is not available.
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
root@j064:~#

Code:
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.

root@j064:~#

How did you install spidermonkey (the mozilla foundation js interpreter)?
On the couchdb version, you didn't show the version itself, only the license version.
sippsnapp
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
October 06, 2012, 04:31:14 PM
 #95

I have edited the post above, couchdb is 1.2.

Dont know how spidermonkey was installed but libmozjs185-1.0 and libmozjs185-dev seem to be installed.

Code:
root@j064:/opt/ecoinpool# apt-cache search spidermonkey
js2-mode - Emacs mode for editing Javascript programs
libmozjs185-1.0 - Spidermonkey javascript engine
libmozjs185-dev - Spidermonkey javascript library - development headers
root@j064:/opt/ecoinpool# sudo apt-get install libmozjs185-1.0
Reading package lists... Done
Building dependency tree
Reading state information... Done
libmozjs185-1.0 is already the newest version.
libmozjs185-1.0 set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
root@j064:/opt/ecoinpool# sudo apt-get install libmozjs185-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
libmozjs185-dev is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.

Πάντα ῥεῖ
Bitcoin + Altcoin node pool setup - pm
OgStar
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
October 06, 2012, 11:30:07 PM
 #96

Interesting! I thought the problem could be my spidermoney version that is different than the version in the README file, but clearly it isn't, since you have the same problem with that version.
sippsnapp
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
October 07, 2012, 11:35:53 AM
 #97

http://pastebin.com/vjHVuJxq

Found this yesterday, ironically this never got linked here, obv p2k has written it.

Would love to have something that exactly for the config file.

My idea right now is thats a database (maybe tables have to be created manually or a sql imported) or writing permission error.

Πάντα ῥεῖ
Bitcoin + Altcoin node pool setup - pm
sippsnapp
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
October 07, 2012, 05:58:31 PM
Last edit: October 07, 2012, 06:14:31 PM by sippsnapp
 #98

http://pastebin.com/ph1PJKgJ

seems its working with the solution makuu stated erlier.

Replace all dependencies with the ones linked in the /ecoinpool/deps folder - seems to work on ubuntu 12, will post once i connected a miner.

Πάντα ῥεῖ
Bitcoin + Altcoin node pool setup - pm
betatest512
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
October 08, 2012, 11:59:32 AM
 #99

i installed ecoinpool and when i activate subpool i get error :

heap_size: 4181
    stack_size: 24
    reductions: 5395
  neighbours:

=SUPERVISOR REPORT==== 8-Oct-2012::04:50:09 ===
     Supervisor: {global,
                                           ecoinpool_server_sup_057d86df9633b99cdd54246b3d000f00}
     Context:    child_terminated
     Reason:     {{badmatch,{ok,"404",
                                [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                                 {"Connection","close"},
                                 {"Content-Length","79"},
                                 {"Content-Type","application/json"},
                                 {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                                "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                  [{btc_daemon_util,get_block_number,2,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,220}]},
                   {btc_daemon_util,fetch_work,11,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,328}]},
                   {scrypt_coindaemon,fetch_work_with_state,1,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,203}]},
                   {scrypt_coindaemon,handle_cast,2,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,143}]},
                   {gen_server,handle_msg,5,
                               [{file,"gen_server.erl"},{line,597}]},
                   {proc_lib,init_p_do_apply,3,
                             [{file,"proc_lib.erl"},{line,227}]}]}
     Offender:   [{pid,<0.229.0>},
                  {name,coindaemon},
                  {mfargs,
                      {scrypt_coindaemon,start_link,
                          [<<"057d86df9633b99cdd54246b3d000f00">>,
                           [{pool_type,ltc},{host,<<"127.0.0.1">>}]]}},
                  {restart_type,permanent},
                  {shutdown,5000},
                  {child_type,worker}]

[04:50:09.621][daemon/warn] SCrypt-ltc CoinDaemon terminated.

=ERROR REPORT==== 8-Oct-2012::04:50:09 ===
** Generic server <0.241.0> terminating
** Last message in was {'$gen_cast',post_workunit}
** When Server state == {state,<<"057d86df9633b99cdd54246b3d000f00">>,ltc,
                            "http://127.0.0.1:9332/",
                            {"user","pass"},
                            <<"eco">>,
                            {default,
                                <<153,123,34,121,57,195,171,20,191,106,153,34,
                                  8,73,251,157,196,81,70,185>>},
                            undefined,106535,110632,undefined,undefined,
                            undefined,undefined}
** Reason for termination ==
** {{badmatch,{ok,"404",
                  [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                   {"Connection","close"},
                   {"Content-Length","79"},
                   {"Content-Type","application/json"},
                   {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                  "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
    [{btc_daemon_util,get_block_number,2,
                      [{file,"src/btc_daemon_util.erl"},{line,220}]},
     {btc_daemon_util,fetch_work,11,
                      [{file,"src/btc_daemon_util.erl"},{line,328}]},
     {scrypt_coindaemon,fetch_work_with_state,1,
                        [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
     {scrypt_coindaemon,handle_cast,2,
                        [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
     {gen_server,handle_msg,5,[{file,"gen_server.erl"},{line,597}]},
     {proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,227}]}]}
[04:50:09.622][daemon/warn] SCrypt-ltc CoinDaemon starting...

=CRASH REPORT==== 8-Oct-2012::04:50:09 ===
  crasher:
    initial call: scrypt_coindaemon:init/1
    pid: <0.241.0>
    registered_name: []
    exception exit: {{badmatch,
                         {ok,"404",
                             [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                              {"Connection","close"},
                              {"Content-Length","79"},
                              {"Content-Type","application/json"},
                              {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                             "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                     [{btc_daemon_util,get_block_number,2,
                          [{file,"src/btc_daemon_util.erl"},{line,220}]},
                      {btc_daemon_util,fetch_work,11,
                          [{file,"src/btc_daemon_util.erl"},{line,328}]},
                      {scrypt_coindaemon,fetch_work_with_state,1,
                          [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
                      {scrypt_coindaemon,handle_cast,2,
                          [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
                      {gen_server,handle_msg,5,
                          [{file,"gen_server.erl"},{line,597}]},
                      {proc_lib,init_p_do_apply,3,
                          [{file,"proc_lib.erl"},{line,227}]}]}
      in function  gen_server:terminate/6 (gen_server.erl, line 737)
    ancestors: [<0.188.0>,ecoinpool_sup,<0.101.0>]
    messages: []
    links: [<0.188.0>,<0.143.0>]
    dictionary: []
    trap_exit: true
    status: running
    heap_size: 4181
    stack_size: 24
    reductions: 5401
  neighbours:

=SUPERVISOR REPORT==== 8-Oct-2012::04:50:09 ===
     Supervisor: {global,
                                           ecoinpool_server_sup_057d86df9633b99cdd54246b3d000f00}
     Context:    child_terminated
     Reason:     {{badmatch,{ok,"404",
                                [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                                 {"Connection","close"},
                                 {"Content-Length","79"},
                                 {"Content-Type","application/json"},
                                 {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                                "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                  [{btc_daemon_util,get_block_number,2,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,220}]},
                   {btc_daemon_util,fetch_work,11,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,328}]},
                   {scrypt_coindaemon,fetch_work_with_state,1,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,203}]},
                   {scrypt_coindaemon,handle_cast,2,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,143}]},
                   {gen_server,handle_msg,5,
                               [{file,"gen_server.erl"},{line,597}]},
                   {proc_lib,init_p_do_apply,3,
                             [{file,"proc_lib.erl"},{line,227}]}]}
     Offender:   [{pid,<0.241.0>},
                  {name,coindaemon},
                  {mfargs,
                      {scrypt_coindaemon,start_link,
                          [<<"057d86df9633b99cdd54246b3d000f00">>,
                           [{pool_type,ltc},{host,<<"127.0.0.1">>}]]}},
                  {restart_type,permanent},
                  {shutdown,5000},
                  {child_type,worker}]

[04:50:09.647][daemon/warn] SCrypt-ltc CoinDaemon terminated.

=ERROR REPORT==== 8-Oct-2012::04:50:09 ===
** Generic server <0.253.0> terminating
** Last message in was {'$gen_cast',post_workunit}
** When Server state == {state,<<"057d86df9633b99cdd54246b3d000f00">>,ltc,
                            "http://127.0.0.1:9332/",
                            {"user","pass"},
                            <<"eco">>,
                            {default,
                                <<153,123,34,121,57,195,171,20,191,106,153,34,
                                  8,73,251,157,196,81,70,185>>},
                            undefined,114727,118824,undefined,undefined,
                            undefined,undefined}
** Reason for termination ==
** {{badmatch,{ok,"404",
                  [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                   {"Connection","close"},
                   {"Content-Length","79"},
                   {"Content-Type","application/json"},
                   {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                  "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
    [{btc_daemon_util,get_block_number,2,
                      [{file,"src/btc_daemon_util.erl"},{line,220}]},
     {btc_daemon_util,fetch_work,11,
                      [{file,"src/btc_daemon_util.erl"},{line,328}]},
     {scrypt_coindaemon,fetch_work_with_state,1,
                        [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
     {scrypt_coindaemon,handle_cast,2,
                        [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
     {gen_server,handle_msg,5,[{file,"gen_server.erl"},{line,597}]},
     {proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,227}]}]}
[04:50:09.648][daemon/warn] SCrypt-ltc CoinDaemon starting...

=CRASH REPORT==== 8-Oct-2012::04:50:09 ===
  crasher:
    initial call: scrypt_coindaemon:init/1
    pid: <0.253.0>
    registered_name: []
    exception exit: {{badmatch,
                         {ok,"404",
                             [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                              {"Connection","close"},
                              {"Content-Length","79"},
                              {"Content-Type","application/json"},
                              {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                             "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                     [{btc_daemon_util,get_block_number,2,
                          [{file,"src/btc_daemon_util.erl"},{line,220}]},
                      {btc_daemon_util,fetch_work,11,
                          [{file,"src/btc_daemon_util.erl"},{line,328}]},
                      {scrypt_coindaemon,fetch_work_with_state,1,
                          [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
                      {scrypt_coindaemon,handle_cast,2,
                          [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
                      {gen_server,handle_msg,5,
                          [{file,"gen_server.erl"},{line,597}]},
                      {proc_lib,init_p_do_apply,3,
                          [{file,"proc_lib.erl"},{line,227}]}]}
      in function  gen_server:terminate/6 (gen_server.erl, line 737)
    ancestors: [<0.188.0>,ecoinpool_sup,<0.101.0>]
    messages: []
    links: [<0.188.0>,<0.143.0>]
    dictionary: []
    trap_exit: true
    status: running
    heap_size: 4181
    stack_size: 24
    reductions: 5407
  neighbours:

=SUPERVISOR REPORT==== 8-Oct-2012::04:50:09 ===
     Supervisor: {global,
                                           ecoinpool_server_sup_057d86df9633b99cdd54246b3d000f00}
     Context:    child_terminated
     Reason:     {{badmatch,{ok,"404",
                                [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                                 {"Connection","close"},
                                 {"Content-Length","79"},
                                 {"Content-Type","application/json"},
                                 {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                                "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                  [{btc_daemon_util,get_block_number,2,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,220}]},
                   {btc_daemon_util,fetch_work,11,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,328}]},
                   {scrypt_coindaemon,fetch_work_with_state,1,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,203}]},
                   {scrypt_coindaemon,handle_cast,2,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,143}]},
                   {gen_server,handle_msg,5,
                               [{file,"gen_server.erl"},{line,597}]},
                   {proc_lib,init_p_do_apply,3,
                             [{file,"proc_lib.erl"},{line,227}]}]}
     Offender:   [{pid,<0.253.0>},
                  {name,coindaemon},
                  {mfargs,
                      {scrypt_coindaemon,start_link,
                          [<<"057d86df9633b99cdd54246b3d000f00">>,
                           [{pool_type,ltc},{host,<<"127.0.0.1">>}]]}},
                  {restart_type,permanent},
                  {shutdown,5000},
                  {child_type,worker}]

[04:50:09.681][daemon/warn] SCrypt-ltc CoinDaemon terminated.

=ERROR REPORT==== 8-Oct-2012::04:50:09 ===
** Generic server <0.265.0> terminating
** Last message in was {'$gen_cast',post_workunit}
** When Server state == {state,<<"057d86df9633b99cdd54246b3d000f00">>,ltc,
                            "http://127.0.0.1:9332/",
                            {"user","pass"},
                            <<"eco">>,
                            {default,
                                <<153,123,34,121,57,195,171,20,191,106,153,34,
                                  8,73,251,157,196,81,70,185>>},
                            undefined,122919,127016,undefined,undefined,
                            undefined,undefined}
** Reason for termination ==
** {{badmatch,{ok,"404",
                  [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                   {"Connection","close"},
                   {"Content-Length","79"},
                   {"Content-Type","application/json"},
                   {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                  "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
    [{btc_daemon_util,get_block_number,2,
                      [{file,"src/btc_daemon_util.erl"},{line,220}]},
     {btc_daemon_util,fetch_work,11,
                      [{file,"src/btc_daemon_util.erl"},{line,328}]},
     {scrypt_coindaemon,fetch_work_with_state,1,
                        [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
     {scrypt_coindaemon,handle_cast,2,
                        [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
     {gen_server,handle_msg,5,[{file,"gen_server.erl"},{line,597}]},
     {proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,227}]}]}
[04:50:09.686][daemon/warn] SCrypt-ltc CoinDaemon starting...

=CRASH REPORT==== 8-Oct-2012::04:50:09 ===
  crasher:
    initial call: scrypt_coindaemon:init/1
    pid: <0.265.0>
    registered_name: []
    exception exit: {{badmatch,
                         {ok,"404",
                             [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                              {"Connection","close"},
                              {"Content-Length","79"},
                              {"Content-Type","application/json"},
                              {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                             "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                     [{btc_daemon_util,get_block_number,2,
                          [{file,"src/btc_daemon_util.erl"},{line,220}]},
                      {btc_daemon_util,fetch_work,11,
                          [{file,"src/btc_daemon_util.erl"},{line,328}]},
                      {scrypt_coindaemon,fetch_work_with_state,1,
                          [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
                      {scrypt_coindaemon,handle_cast,2,
                          [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
                      {gen_server,handle_msg,5,
                          [{file,"gen_server.erl"},{line,597}]},
                      {proc_lib,init_p_do_apply,3,
                          [{file,"proc_lib.erl"},{line,227}]}]}
      in function  gen_server:terminate/6 (gen_server.erl, line 737)
    ancestors: [<0.188.0>,ecoinpool_sup,<0.101.0>]
    messages: []
    links: [<0.188.0>,<0.143.0>]
    dictionary: []
    trap_exit: true
    status: running
    heap_size: 2584
    stack_size: 24
    reductions: 5295
  neighbours:

=SUPERVISOR REPORT==== 8-Oct-2012::04:50:09 ===
     Supervisor: {global,
                                           ecoinpool_server_sup_057d86df9633b99cdd54246b3d000f00}
     Context:    child_terminated
     Reason:     {{badmatch,{ok,"404",
                                [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                                 {"Connection","close"},
                                 {"Content-Length","79"},
                                 {"Content-Type","application/json"},
                                 {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                                "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                  [{btc_daemon_util,get_block_number,2,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,220}]},
                   {btc_daemon_util,fetch_work,11,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,328}]},
                   {scrypt_coindaemon,fetch_work_with_state,1,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,203}]},
                   {scrypt_coindaemon,handle_cast,2,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,143}]},
                   {gen_server,handle_msg,5,
                               [{file,"gen_server.erl"},{line,597}]},
                   {proc_lib,init_p_do_apply,3,
                             [{file,"proc_lib.erl"},{line,227}]}]}
     Offender:   [{pid,<0.265.0>},
                  {name,coindaemon},
                  {mfargs,
                      {scrypt_coindaemon,start_link,
                          [<<"057d86df9633b99cdd54246b3d000f00">>,
                           [{pool_type,ltc},{host,<<"127.0.0.1">>}]]}},
                  {restart_type,permanent},
                  {shutdown,5000},
                  {child_type,worker}]

[04:50:09.708][daemon/warn] SCrypt-ltc CoinDaemon terminated.

=ERROR REPORT==== 8-Oct-2012::04:50:09 ===
** Generic server <0.276.0> terminating
** Last message in was {'$gen_cast',post_workunit}
** When Server state == {state,<<"057d86df9633b99cdd54246b3d000f00">>,ltc,
                            "http://127.0.0.1:9332/",
                            {"user","pass"},
                            <<"eco">>,
                            {default,
                                <<153,123,34,121,57,195,171,20,191,106,153,34,
                                  8,73,251,157,196,81,70,185>>},
                            undefined,131111,135208,undefined,undefined,
                            undefined,undefined}
** Reason for termination ==
** {{badmatch,{ok,"404",
                  [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                   {"Connection","close"},
                   {"Content-Length","79"},
                   {"Content-Type","application/json"},
                   {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                  "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
    [{btc_daemon_util,get_block_number,2,
                      [{file,"src/btc_daemon_util.erl"},{line,220}]},
     {btc_daemon_util,fetch_work,11,
                      [{file,"src/btc_daemon_util.erl"},{line,328}]},
     {scrypt_coindaemon,fetch_work_with_state,1,
                        [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
     {scrypt_coindaemon,handle_cast,2,
                        [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
     {gen_server,handle_msg,5,[{file,"gen_server.erl"},{line,597}]},
     {proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,227}]}]}

=CRASH REPORT==== 8-Oct-2012::04:50:09 ===
  crasher:
    initial call: scrypt_coindaemon:init/1
    pid: <0.276.0>
    registered_name: []
    exception exit: {{badmatch,
                         {ok,"404",
                             [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                              {"Connection","close"},
                              {"Content-Length","79"},
                              {"Content-Type","application/json"},
                              {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                             "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                     [{btc_daemon_util,get_block_number,2,
                          [{file,"src/btc_daemon_util.erl"},{line,220}]},
                      {btc_daemon_util,fetch_work,11,
                          [{file,"src/btc_daemon_util.erl"},{line,328}]},
                      {scrypt_coindaemon,fetch_work_with_state,1,
                          [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
                      {scrypt_coindaemon,handle_cast,2,
                          [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
                      {gen_server,handle_msg,5,
                          [{file,"gen_server.erl"},{line,597}]},
                      {proc_lib,init_p_do_apply,3,
                          [{file,"proc_lib.erl"},{line,227}]}]}
      in function  gen_server:terminate/6 (gen_server.erl, line 737)
    ancestors: [<0.188.0>,ecoinpool_sup,<0.101.0>]
    messages: []
    links: [<0.188.0>,<0.143.0>]
    dictionary: []
    trap_exit: true
    status: running
    heap_size: 2584
    stack_size: 24
    reductions: 5392
  neighbours:

=SUPERVISOR REPORT==== 8-Oct-2012::04:50:09 ===
     Supervisor: {global,
                                           ecoinpool_server_sup_057d86df9633b99cdd54246b3d000f00}
     Context:    child_terminated
     Reason:     {{badmatch,{ok,"404",
                                [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                                 {"Connection","close"},
                                 {"Content-Length","79"},
                                 {"Content-Type","application/json"},
                                 {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                                "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                  [{btc_daemon_util,get_block_number,2,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,220}]},
                   {btc_daemon_util,fetch_work,11,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,328}]},
                   {scrypt_coindaemon,fetch_work_with_state,1,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,203}]},
                   {scrypt_coindaemon,handle_cast,2,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,143}]},
                   {gen_server,handle_msg,5,
                               [{file,"gen_server.erl"},{line,597}]},
                   {proc_lib,init_p_do_apply,3,
                             [{file,"proc_lib.erl"},{line,227}]}]}
     Offender:   [{pid,<0.276.0>},
                  {name,coindaemon},
                  {mfargs,
                      {scrypt_coindaemon,start_link,
                          [<<"057d86df9633b99cdd54246b3d000f00">>,
                           [{pool_type,ltc},{host,<<"127.0.0.1">>}]]}},
                  {restart_type,permanent},
                  {shutdown,5000},
                  {child_type,worker}]


=SUPERVISOR REPORT==== 8-Oct-2012::04:50:09 ===
     Supervisor: {global,
                                           ecoinpool_server_sup_057d86df9633b99cdd54246b3d000f00}
     Context:    shutdown
     Reason:     reached_max_restart_intensity
     Offender:   [{pid,<0.276.0>},
                  {name,coindaemon},
                  {mfargs,
                      {scrypt_coindaemon,start_link,
                          [<<"057d86df9633b99cdd54246b3d000f00">>,
                           [{pool_type,ltc},{host,<<"127.0.0.1">>}]]}},
                  {restart_type,permanent},
                  {shutdown,5000},
                  {child_type,worker}]

[04:50:09.718][default/warn] ecoinpool_rpc: Stopped RPC on port 8888
[04:50:09.718][server/warn] Subpool 057d86df9633b99cdd54246b3d000f00 terminated.
dishwara
Legendary
*
Offline Offline

Activity: 1855
Merit: 1016



View Profile
October 08, 2012, 01:12:24 PM
 #100

i installed ecoinpool and when i activate subpool i get error :

Code:
heap_size: 4181
    stack_size: 24
    reductions: 5395
  neighbours:

=SUPERVISOR REPORT==== 8-Oct-2012::04:50:09 ===
     Supervisor: {global,
                                           ecoinpool_server_sup_057d86df9633b99cdd54246b3d000f00}
     Context:    child_terminated
     Reason:     {{badmatch,{ok,"404",
                                [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                                 {"Connection","close"},
                                 {"Content-Length","79"},
                                 {"Content-Type","application/json"},
                                 {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                                "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                  [{btc_daemon_util,get_block_number,2,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,220}]},
                   {btc_daemon_util,fetch_work,11,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,328}]},
                   {scrypt_coindaemon,fetch_work_with_state,1,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,203}]},
                   {scrypt_coindaemon,handle_cast,2,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,143}]},
                   {gen_server,handle_msg,5,
                               [{file,"gen_server.erl"},{line,597}]},
                   {proc_lib,init_p_do_apply,3,
                             [{file,"proc_lib.erl"},{line,227}]}]}
     Offender:   [{pid,<0.229.0>},
                  {name,coindaemon},
                  {mfargs,
                      {scrypt_coindaemon,start_link,
                          [<<"057d86df9633b99cdd54246b3d000f00">>,
                           [{pool_type,ltc},{host,<<"127.0.0.1">>}]]}},
                  {restart_type,permanent},
                  {shutdown,5000},
                  {child_type,worker}]

[04:50:09.621][daemon/warn] SCrypt-ltc CoinDaemon terminated.

=ERROR REPORT==== 8-Oct-2012::04:50:09 ===
** Generic server <0.241.0> terminating
** Last message in was {'$gen_cast',post_workunit}
** When Server state == {state,<<"057d86df9633b99cdd54246b3d000f00">>,ltc,
                            "http://127.0.0.1:9332/",
                            {"user","pass"},
                            <<"eco">>,
                            {default,
                                <<153,123,34,121,57,195,171,20,191,106,153,34,
                                  8,73,251,157,196,81,70,185>>},
                            undefined,106535,110632,undefined,undefined,
                            undefined,undefined}
** Reason for termination ==
** {{badmatch,{ok,"404",
                  [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                   {"Connection","close"},
                   {"Content-Length","79"},
                   {"Content-Type","application/json"},
                   {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                  "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
    [{btc_daemon_util,get_block_number,2,
                      [{file,"src/btc_daemon_util.erl"},{line,220}]},
     {btc_daemon_util,fetch_work,11,
                      [{file,"src/btc_daemon_util.erl"},{line,328}]},
     {scrypt_coindaemon,fetch_work_with_state,1,
                        [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
     {scrypt_coindaemon,handle_cast,2,
                        [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
     {gen_server,handle_msg,5,[{file,"gen_server.erl"},{line,597}]},
     {proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,227}]}]}
[04:50:09.622][daemon/warn] SCrypt-ltc CoinDaemon starting...

=CRASH REPORT==== 8-Oct-2012::04:50:09 ===
  crasher:
    initial call: scrypt_coindaemon:init/1
    pid: <0.241.0>
    registered_name: []
    exception exit: {{badmatch,
                         {ok,"404",
                             [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                              {"Connection","close"},
                              {"Content-Length","79"},
                              {"Content-Type","application/json"},
                              {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                             "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                     [{btc_daemon_util,get_block_number,2,
                          [{file,"src/btc_daemon_util.erl"},{line,220}]},
                      {btc_daemon_util,fetch_work,11,
                          [{file,"src/btc_daemon_util.erl"},{line,328}]},
                      {scrypt_coindaemon,fetch_work_with_state,1,
                          [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
                      {scrypt_coindaemon,handle_cast,2,
                          [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
                      {gen_server,handle_msg,5,
                          [{file,"gen_server.erl"},{line,597}]},
                      {proc_lib,init_p_do_apply,3,
                          [{file,"proc_lib.erl"},{line,227}]}]}
      in function  gen_server:terminate/6 (gen_server.erl, line 737)
    ancestors: [<0.188.0>,ecoinpool_sup,<0.101.0>]
    messages: []
    links: [<0.188.0>,<0.143.0>]
    dictionary: []
    trap_exit: true
    status: running
    heap_size: 4181
    stack_size: 24
    reductions: 5401
  neighbours:

=SUPERVISOR REPORT==== 8-Oct-2012::04:50:09 ===
     Supervisor: {global,
                                           ecoinpool_server_sup_057d86df9633b99cdd54246b3d000f00}
     Context:    child_terminated
     Reason:     {{badmatch,{ok,"404",
                                [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                                 {"Connection","close"},
                                 {"Content-Length","79"},
                                 {"Content-Type","application/json"},
                                 {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                                "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                  [{btc_daemon_util,get_block_number,2,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,220}]},
                   {btc_daemon_util,fetch_work,11,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,328}]},
                   {scrypt_coindaemon,fetch_work_with_state,1,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,203}]},
                   {scrypt_coindaemon,handle_cast,2,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,143}]},
                   {gen_server,handle_msg,5,
                               [{file,"gen_server.erl"},{line,597}]},
                   {proc_lib,init_p_do_apply,3,
                             [{file,"proc_lib.erl"},{line,227}]}]}
     Offender:   [{pid,<0.241.0>},
                  {name,coindaemon},
                  {mfargs,
                      {scrypt_coindaemon,start_link,
                          [<<"057d86df9633b99cdd54246b3d000f00">>,
                           [{pool_type,ltc},{host,<<"127.0.0.1">>}]]}},
                  {restart_type,permanent},
                  {shutdown,5000},
                  {child_type,worker}]

[04:50:09.647][daemon/warn] SCrypt-ltc CoinDaemon terminated.

=ERROR REPORT==== 8-Oct-2012::04:50:09 ===
** Generic server <0.253.0> terminating
** Last message in was {'$gen_cast',post_workunit}
** When Server state == {state,<<"057d86df9633b99cdd54246b3d000f00">>,ltc,
                            "http://127.0.0.1:9332/",
                            {"user","pass"},
                            <<"eco">>,
                            {default,
                                <<153,123,34,121,57,195,171,20,191,106,153,34,
                                  8,73,251,157,196,81,70,185>>},
                            undefined,114727,118824,undefined,undefined,
                            undefined,undefined}
** Reason for termination ==
** {{badmatch,{ok,"404",
                  [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                   {"Connection","close"},
                   {"Content-Length","79"},
                   {"Content-Type","application/json"},
                   {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                  "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
    [{btc_daemon_util,get_block_number,2,
                      [{file,"src/btc_daemon_util.erl"},{line,220}]},
     {btc_daemon_util,fetch_work,11,
                      [{file,"src/btc_daemon_util.erl"},{line,328}]},
     {scrypt_coindaemon,fetch_work_with_state,1,
                        [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
     {scrypt_coindaemon,handle_cast,2,
                        [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
     {gen_server,handle_msg,5,[{file,"gen_server.erl"},{line,597}]},
     {proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,227}]}]}
[04:50:09.648][daemon/warn] SCrypt-ltc CoinDaemon starting...

=CRASH REPORT==== 8-Oct-2012::04:50:09 ===
  crasher:
    initial call: scrypt_coindaemon:init/1
    pid: <0.253.0>
    registered_name: []
    exception exit: {{badmatch,
                         {ok,"404",
                             [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                              {"Connection","close"},
                              {"Content-Length","79"},
                              {"Content-Type","application/json"},
                              {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                             "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                     [{btc_daemon_util,get_block_number,2,
                          [{file,"src/btc_daemon_util.erl"},{line,220}]},
                      {btc_daemon_util,fetch_work,11,
                          [{file,"src/btc_daemon_util.erl"},{line,328}]},
                      {scrypt_coindaemon,fetch_work_with_state,1,
                          [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
                      {scrypt_coindaemon,handle_cast,2,
                          [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
                      {gen_server,handle_msg,5,
                          [{file,"gen_server.erl"},{line,597}]},
                      {proc_lib,init_p_do_apply,3,
                          [{file,"proc_lib.erl"},{line,227}]}]}
      in function  gen_server:terminate/6 (gen_server.erl, line 737)
    ancestors: [<0.188.0>,ecoinpool_sup,<0.101.0>]
    messages: []
    links: [<0.188.0>,<0.143.0>]
    dictionary: []
    trap_exit: true
    status: running
    heap_size: 4181
    stack_size: 24
    reductions: 5407
  neighbours:

=SUPERVISOR REPORT==== 8-Oct-2012::04:50:09 ===
     Supervisor: {global,
                                           ecoinpool_server_sup_057d86df9633b99cdd54246b3d000f00}
     Context:    child_terminated
     Reason:     {{badmatch,{ok,"404",
                                [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                                 {"Connection","close"},
                                 {"Content-Length","79"},
                                 {"Content-Type","application/json"},
                                 {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                                "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                  [{btc_daemon_util,get_block_number,2,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,220}]},
                   {btc_daemon_util,fetch_work,11,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,328}]},
                   {scrypt_coindaemon,fetch_work_with_state,1,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,203}]},
                   {scrypt_coindaemon,handle_cast,2,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,143}]},
                   {gen_server,handle_msg,5,
                               [{file,"gen_server.erl"},{line,597}]},
                   {proc_lib,init_p_do_apply,3,
                             [{file,"proc_lib.erl"},{line,227}]}]}
     Offender:   [{pid,<0.253.0>},
                  {name,coindaemon},
                  {mfargs,
                      {scrypt_coindaemon,start_link,
                          [<<"057d86df9633b99cdd54246b3d000f00">>,
                           [{pool_type,ltc},{host,<<"127.0.0.1">>}]]}},
                  {restart_type,permanent},
                  {shutdown,5000},
                  {child_type,worker}]

[04:50:09.681][daemon/warn] SCrypt-ltc CoinDaemon terminated.

=ERROR REPORT==== 8-Oct-2012::04:50:09 ===
** Generic server <0.265.0> terminating
** Last message in was {'$gen_cast',post_workunit}
** When Server state == {state,<<"057d86df9633b99cdd54246b3d000f00">>,ltc,
                            "http://127.0.0.1:9332/",
                            {"user","pass"},
                            <<"eco">>,
                            {default,
                                <<153,123,34,121,57,195,171,20,191,106,153,34,
                                  8,73,251,157,196,81,70,185>>},
                            undefined,122919,127016,undefined,undefined,
                            undefined,undefined}
** Reason for termination ==
** {{badmatch,{ok,"404",
                  [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                   {"Connection","close"},
                   {"Content-Length","79"},
                   {"Content-Type","application/json"},
                   {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                  "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
    [{btc_daemon_util,get_block_number,2,
                      [{file,"src/btc_daemon_util.erl"},{line,220}]},
     {btc_daemon_util,fetch_work,11,
                      [{file,"src/btc_daemon_util.erl"},{line,328}]},
     {scrypt_coindaemon,fetch_work_with_state,1,
                        [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
     {scrypt_coindaemon,handle_cast,2,
                        [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
     {gen_server,handle_msg,5,[{file,"gen_server.erl"},{line,597}]},
     {proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,227}]}]}
[04:50:09.686][daemon/warn] SCrypt-ltc CoinDaemon starting...

=CRASH REPORT==== 8-Oct-2012::04:50:09 ===
  crasher:
    initial call: scrypt_coindaemon:init/1
    pid: <0.265.0>
    registered_name: []
    exception exit: {{badmatch,
                         {ok,"404",
                             [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                              {"Connection","close"},
                              {"Content-Length","79"},
                              {"Content-Type","application/json"},
                              {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                             "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                     [{btc_daemon_util,get_block_number,2,
                          [{file,"src/btc_daemon_util.erl"},{line,220}]},
                      {btc_daemon_util,fetch_work,11,
                          [{file,"src/btc_daemon_util.erl"},{line,328}]},
                      {scrypt_coindaemon,fetch_work_with_state,1,
                          [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
                      {scrypt_coindaemon,handle_cast,2,
                          [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
                      {gen_server,handle_msg,5,
                          [{file,"gen_server.erl"},{line,597}]},
                      {proc_lib,init_p_do_apply,3,
                          [{file,"proc_lib.erl"},{line,227}]}]}
      in function  gen_server:terminate/6 (gen_server.erl, line 737)
    ancestors: [<0.188.0>,ecoinpool_sup,<0.101.0>]
    messages: []
    links: [<0.188.0>,<0.143.0>]
    dictionary: []
    trap_exit: true
    status: running
    heap_size: 2584
    stack_size: 24
    reductions: 5295
  neighbours:

=SUPERVISOR REPORT==== 8-Oct-2012::04:50:09 ===
     Supervisor: {global,
                                           ecoinpool_server_sup_057d86df9633b99cdd54246b3d000f00}
     Context:    child_terminated
     Reason:     {{badmatch,{ok,"404",
                                [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                                 {"Connection","close"},
                                 {"Content-Length","79"},
                                 {"Content-Type","application/json"},
                                 {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                                "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                  [{btc_daemon_util,get_block_number,2,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,220}]},
                   {btc_daemon_util,fetch_work,11,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,328}]},
                   {scrypt_coindaemon,fetch_work_with_state,1,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,203}]},
                   {scrypt_coindaemon,handle_cast,2,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,143}]},
                   {gen_server,handle_msg,5,
                               [{file,"gen_server.erl"},{line,597}]},
                   {proc_lib,init_p_do_apply,3,
                             [{file,"proc_lib.erl"},{line,227}]}]}
     Offender:   [{pid,<0.265.0>},
                  {name,coindaemon},
                  {mfargs,
                      {scrypt_coindaemon,start_link,
                          [<<"057d86df9633b99cdd54246b3d000f00">>,
                           [{pool_type,ltc},{host,<<"127.0.0.1">>}]]}},
                  {restart_type,permanent},
                  {shutdown,5000},
                  {child_type,worker}]

[04:50:09.708][daemon/warn] SCrypt-ltc CoinDaemon terminated.

=ERROR REPORT==== 8-Oct-2012::04:50:09 ===
** Generic server <0.276.0> terminating
** Last message in was {'$gen_cast',post_workunit}
** When Server state == {state,<<"057d86df9633b99cdd54246b3d000f00">>,ltc,
                            "http://127.0.0.1:9332/",
                            {"user","pass"},
                            <<"eco">>,
                            {default,
                                <<153,123,34,121,57,195,171,20,191,106,153,34,
                                  8,73,251,157,196,81,70,185>>},
                            undefined,131111,135208,undefined,undefined,
                            undefined,undefined}
** Reason for termination ==
** {{badmatch,{ok,"404",
                  [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                   {"Connection","close"},
                   {"Content-Length","79"},
                   {"Content-Type","application/json"},
                   {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                  "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
    [{btc_daemon_util,get_block_number,2,
                      [{file,"src/btc_daemon_util.erl"},{line,220}]},
     {btc_daemon_util,fetch_work,11,
                      [{file,"src/btc_daemon_util.erl"},{line,328}]},
     {scrypt_coindaemon,fetch_work_with_state,1,
                        [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
     {scrypt_coindaemon,handle_cast,2,
                        [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
     {gen_server,handle_msg,5,[{file,"gen_server.erl"},{line,597}]},
     {proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,227}]}]}

=CRASH REPORT==== 8-Oct-2012::04:50:09 ===
  crasher:
    initial call: scrypt_coindaemon:init/1
    pid: <0.276.0>
    registered_name: []
    exception exit: {{badmatch,
                         {ok,"404",
                             [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                              {"Connection","close"},
                              {"Content-Length","79"},
                              {"Content-Type","application/json"},
                              {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                             "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                     [{btc_daemon_util,get_block_number,2,
                          [{file,"src/btc_daemon_util.erl"},{line,220}]},
                      {btc_daemon_util,fetch_work,11,
                          [{file,"src/btc_daemon_util.erl"},{line,328}]},
                      {scrypt_coindaemon,fetch_work_with_state,1,
                          [{file,"src/scrypt_coindaemon.erl"},{line,203}]},
                      {scrypt_coindaemon,handle_cast,2,
                          [{file,"src/scrypt_coindaemon.erl"},{line,143}]},
                      {gen_server,handle_msg,5,
                          [{file,"gen_server.erl"},{line,597}]},
                      {proc_lib,init_p_do_apply,3,
                          [{file,"proc_lib.erl"},{line,227}]}]}
      in function  gen_server:terminate/6 (gen_server.erl, line 737)
    ancestors: [<0.188.0>,ecoinpool_sup,<0.101.0>]
    messages: []
    links: [<0.188.0>,<0.143.0>]
    dictionary: []
    trap_exit: true
    status: running
    heap_size: 2584
    stack_size: 24
    reductions: 5392
  neighbours:

=SUPERVISOR REPORT==== 8-Oct-2012::04:50:09 ===
     Supervisor: {global,
                                           ecoinpool_server_sup_057d86df9633b99cdd54246b3d000f00}
     Context:    child_terminated
     Reason:     {{badmatch,{ok,"404",
                                [{"Date","Mon, 08 Oct 2012 11:50:09 +0000"},
                                 {"Connection","close"},
                                 {"Content-Length","79"},
                                 {"Content-Type","application/json"},
                                 {"Server","litecoin-json-rpc/v0.6.3c-beta"}],
                                "{\"result\":null,\"error\":{\"code\":-32601,\"message\":\"Method not found\"},\"id\":null}\n"}},
                  [{btc_daemon_util,get_block_number,2,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,220}]},
                   {btc_daemon_util,fetch_work,11,
                                    [{file,"src/btc_daemon_util.erl"},
                                     {line,328}]},
                   {scrypt_coindaemon,fetch_work_with_state,1,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,203}]},
                   {scrypt_coindaemon,handle_cast,2,
                                      [{file,"src/scrypt_coindaemon.erl"},
                                       {line,143}]},
                   {gen_server,handle_msg,5,
                               [{file,"gen_server.erl"},{line,597}]},
                   {proc_lib,init_p_do_apply,3,
                             [{file,"proc_lib.erl"},{line,227}]}]}
     Offender:   [{pid,<0.276.0>},
                  {name,coindaemon},
                  {mfargs,
                      {scrypt_coindaemon,start_link,
                          [<<"057d86df9633b99cdd54246b3d000f00">>,
                           [{pool_type,ltc},{host,<<"127.0.0.1">>}]]}},
                  {restart_type,permanent},
                  {shutdown,5000},
                  {child_type,worker}]


=SUPERVISOR REPORT==== 8-Oct-2012::04:50:09 ===
     Supervisor: {global,
                                           ecoinpool_server_sup_057d86df9633b99cdd54246b3d000f00}
     Context:    shutdown
     Reason:     reached_max_restart_intensity
     Offender:   [{pid,<0.276.0>},
                  {name,coindaemon},
                  {mfargs,
                      {scrypt_coindaemon,start_link,
                          [<<"057d86df9633b99cdd54246b3d000f00">>,
                           [{pool_type,ltc},{host,<<"127.0.0.1">>}]]}},
                  {restart_type,permanent},
                  {shutdown,5000},
                  {child_type,worker}]

[04:50:09.718][default/warn] ecoinpool_rpc: Stopped RPC on port 8888
[04:50:09.718][server/warn] Subpool 057d86df9633b99cdd54246b3d000f00 terminated.

Next time use code & /code
Pages: « 1 2 3 4 [5] 6 7 »  All
  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!