Bitcoin Forum
January 24, 2026, 09:21:56 PM *
News: Latest Bitcoin Core release: 30.2 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2
1  Bitcoin / Mining support / How to start Stratum Proxy? on: November 08, 2012, 12:35:18 PM
How can I start Stratum proxy?

I tried to start Stratum mining proxy on my windows machine with the same flags I use to start CGminer and Stratum did not recognize those flags.

what are the flags I should use to start Stratum Proxy?

for example how can I set my worker username and password

and how can I define the host?
2  Bitcoin / Mining support / Which is the best mining proxy available? on: November 06, 2012, 07:06:35 PM
Which is the best mining proxy available?

I think it will be better if a find a mining proxy that is written in Python
3  Bitcoin / Mining software (miners) / Which is the best mining proxy available? on: November 06, 2012, 01:36:15 PM
Which is the best mining proxy available?

I am looking for a good mining proxy that is written in Python

4  Bitcoin / Pools / How can i find the amout of GH/s my server can handle? on: October 25, 2012, 04:11:58 PM
How can i find the amout of GH/s my server can handle?

I am using Ubuntu 12.04 X64 Server with Pushpool
5  Bitcoin / Bitcoin Technical Support / can pushpool handle high server load? on: October 14, 2012, 04:04:44 PM
i heard that Inaba Owner of Eclipse mining pool switched from pushpool to eloipool because pushpool cannot handle high server load..

is there a fix for this?
6  Bitcoin / Bitcoin Technical Support / no confirmations it has been 2 hours on: October 11, 2012, 05:25:10 PM
i got some bitcoin's from Eclipse mining pool and still i don't have any confirmation's it stay's on zero

it has been almost more than 2 hours

i should have got 12 confirmation's by now but i don't have even 1

still 0-confirmation's
7  Bitcoin / Bitcoin Technical Support / is there a way to send 0 confirmed Transection's? on: October 11, 2012, 04:12:42 PM
i received some coin's from Eclipse mining pool

and it has zero confirmation's and i want to send it without waiting for a confirmation as Eclipse pool will not try a double spend attack

and is there a way to send it after it received 1-confirmation if it is not possible with 0 confirmation
8  Bitcoin / Bitcoin Technical Support / where can i download the blockchain? on: October 10, 2012, 06:01:06 AM
on http://eu1.bitcoincharts.com/blockchain/ the blockchain's .dat file's are there but the blkindex.dat file is not there

and i want one for windows

is there a place from where i can download the blockchain through the browser
9  Bitcoin / Bitcoin Technical Support / can i make bitcoin-qt to make more than 8 connection? on: October 09, 2012, 02:29:40 PM
can i make bitcoin-qt to make more than 8 connection?

can i make it to make 20 connection's

because download of the block chain is very slow
10  Bitcoin / Bitcoin Technical Support / Ecoinpool - Tech Support on: October 06, 2012, 07:22:52 AM
Support Thread For Ecoinpool please ask your Question's here...
11  Bitcoin / Pools / What pool software is 50BTC and Deepbit running? on: October 06, 2012, 02:51:09 AM
right now 50BTC and Deepbit are the biggest pool's around without long downtime's

i would like to know what pool software 50BTC and Deepbit are using?
12  Bitcoin / Bitcoin Technical Support / can someone share their ecoinpool test_launch.config file with me on: October 04, 2012, 03:03:12 PM
can someone share their ecoinpool test_launch.config file with me..
13  Bitcoin / Pools / ecoinpool??? on: October 04, 2012, 01:19:32 AM
is there a support thread for ecoinpool as in the official thread there is no activity..
14  Bitcoin / Bitcoin Technical Support / Ecoinpool test_launch.config on: October 02, 2012, 09:54:25 PM
my ecoinpool test_launch.config :


% 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, {"admin", "admin"}}]},
        {couchdb_database, "ecoinpool"},
        
        {mysql_host, "localhost"},
        {mysql_port, 3306},
        {mysql_prefix, ""},
        {mysql_options, [{auth, {"admin", "admin"}}]},
        {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, "1a2a3a4a5a"},
        
        % 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 use ubuntu 11.10
when i run Ecoinpool i get error

{"could not start kernel pid",application_controller,"error in config file \"./test_launch.config\" (88): syntax error before: Format"}

Crash dump was written to: erl_crash.dump
could not start kernel pid (application_controller) (error in config file "./test_launch.config" (88): syntax error before: Format)
15  Bitcoin / Pools / pushpool help! on: October 02, 2012, 03:47:21 PM
i installed pushpool and my server config is :

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

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

      # HTTP JSON-RPC protocol, port 8344,
      # with trusted proxy appserver.example.com forwarding
      # requests to us
      { "port" : 8332, "protocol" : "http-json",
        "proxy" : "192.168.100.7" },

      # binary protocol, localhost-only port 8338
      { "host" : "192.168.100.7", "port" : 8338, "protocol" : "binary" }
   ],

   # database settings
   "database" : {
      "engine" : "mysql",
      "host" : "localhost",
      "port" : 3306,
      "name" : "mysql_database_name",
      "username" : "mysql_username",
      "password" : "mysql_password",
      "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 }
      ]
   },

   "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 | Notice how this ISN'T port number 8332 this is becuase the same port number should not becuase inconjunction with the JSON RPC port other wise you'll get 500 errors
   "rpc.url" : "us1.ozco.in:8332",
   "rpc.user" : "pool_worker_user",
   "rpc.pass" : "pool_worker_password",

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

when i connect my miner to pushpool it say's "Problem communicating with Bitcoin RPC"

can anyone tell me what is wrong in my "server.json"

and i want to point my pool's power to Ozcoin
16  Bitcoin / Bitcoin Technical Support / Running ecoinpool without CouchDB on: October 02, 2012, 12:51:31 AM
i installed ubuntu 12.04 and tried to install ecoinpool then when i tried to install couchdb from the step's here http://pastebin.com/vjHVuJxq  couchdb did not install

is there anyway to run ecoinpool without couchdb if yes please can someone post how?
17  Bitcoin / Mining software (miners) / Poclbm Source Code HELP!!! on: September 29, 2012, 11:28:06 PM
can someone show me the line of code in the poclbm source code where the nonce is set

and the line of code where is nonce is incremented please show me the exact line and not only the function it is it and please provide as much detail as you can.

and can anyone tell me what does poclbm do after it has gone through all the nonce from 1 billion to 4 billion. what does it increment next. (and can you point out the line in code where it is incremented)
18  Bitcoin / Pools / HELP!!! on: September 29, 2012, 07:48:41 PM
i plan on setting up a pool on windows.

is there any good pool software for windows?

and info on how to set it up..
19  Alternate cryptocurrencies / Altcoin Discussion / HELP!!! on: September 29, 2012, 04:49:35 PM
i am planning to use Windows server 2008 R2

what is the best pool software i should install for creating a litecoin pool?

and is there a instruction's on how to set it up on windows.
20  Bitcoin / Pools / What is better Ozcoin or Eclipse on: September 29, 2012, 12:24:31 PM
i recently joined Ozcoin and left because of the 3% forced fee and joined eclipse because the fee is 0%

and they both use the same payout (DGM)

so can anyone tell me should i mine at Eclipse or go back to Ozcoin
Pages: [1] 2
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!