Bitcoin Forum
May 26, 2024, 12:04:25 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 [25] 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 »
481  Bitcoin / Development & Technical Discussion / Re: PUSHPOOL help on: July 01, 2011, 06:04:48 AM
Okay so I tried to install XAMPP but I found out that the installation only appears to come in 32bit.

Beside the point..

I did a complete install of PostgreSql and created the appropriate tables and inserted some test user data. I still get the message when running ./pushpoold -E:

Code:
[2011-07-01 05:42:24.263811] invalid database.engine

Am I missing something? I even updated my server.json file with the proper settings.

What I am confused about is how pushpoold can be built/compiled and yet require a database engine in place to do that process, but when I try to run pushpoold I get a message saying "invalid database.engine".

Can someone please help me?

It seems like I am hitting every possible problem when it comes to pushpoold setup.

How did you compile it?
482  Bitcoin / Mining support / Re: Miners just not performing on: June 30, 2011, 09:35:49 PM
If you're at 1030 core getting 250 M/hash then that's a problem. Be sure you're running Phoenix and have the following tag: -k phatk VECTORS BFI_INT WORKSIZE=256 AGGRESSION=11 FASTLOOP=false.

For tips if it worked: 1C2BPFsmK8DiNSWzAjchcoWg7LgCfN7tVt

225 at 1000/300 using that commandline

Ok something is wrong then, what are you using to overclock?
483  Other / Beginners & Help / Re: GUIMiner on: June 30, 2011, 01:54:33 PM
did you install the amd/ati sdk ?
...The graphix card is ATI Radeon HD 3400 Series.
Can you post a link to this amd/ati sdk ?...

Does the HD3400 support OpenCL? I don't think it does. Someone correct me if I'm wrong.

lol, don't even try mining with that card.
484  Other / Beginners & Help / Re: GUIMiner on: June 30, 2011, 01:09:46 PM
did you install the amd/ati sdk ?

I think so. When I google that amd/ati sdk I get stuff that says they changed the name so I went to AMD site and downloaded the lateset driver pack [ 11-6_vista32_win7_32_dd_ccc_ocl.exe ] . I think this has something to do with it because when I first ran the gui miner it said it could not find an Open CL device. After the install it found a device: [0-0] Intel(R) Core(TM)2 Duo CP ; which I'm pretty sure that is the CPU. The graphix card is ATI Radeon HD 3400 Series.
Can you post a link to this amd/ati sdk ?

I want to add that I am not being lazy. I have read (scanned) damn near every post in this forum. I am still getting the, "having problems connecting with Bitcoin RPC" today as well. Any help is appreciated. Thanks.

AMD APP SDK
485  Bitcoin / Mining support / Re: Miners just not performing on: June 30, 2011, 10:58:44 AM
Ok, So I kinda solved my first issue. Still cant get decent speeds with my working 1x to 16x adaptor for the life of me. Bu Also, I cannot get a full 300 out of my saphires. I am running diablo with -v 2 and -w 256 as that seems to work best for me, but for two cards, I get around 500 instead of 600. Any ideas?

I have to assume you are talking about 5830's.

If you are, just OC them to around 950/300 and you should pull just about 300. 975/300 is even better. 1000/300 crashes the card for me.

I get 316mh/s at 1015/300 @ stock voltage. It shouldn't crash your card, do you do it in increments?
486  Bitcoin / Development & Technical Discussion / Re: PUSHPOOL help on: June 30, 2011, 09:08:44 AM
Now that i think about it, you wouldn't have been able to compile pushpool if there was no engine installed. Honestly, i just installed XAMPP and everything works for me.



how did you compile pushpool on windows...
487  Bitcoin / Development & Technical Discussion / Re: PUSHPOOL help on: June 30, 2011, 06:58:39 AM
I think that I have the mysql development package installed. When I runsudo apt-get install libmysqld-dev I get the following:

Code:
Reading package lists... Done
Building dependency tree
Reading state information... Done
libmysqld-dev is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 25 not upgraded.


I also ran sudo apt-get install mysql-server after initially running the bold set of commands above.

Any input?

Try
Code:
sudo apt-get install libmysqlclient-dev
488  Bitcoin / Development & Technical Discussion / Re: PUSHPOOL help on: June 30, 2011, 06:16:22 AM
FYI I've installed mysql database on to Ubuntu 11.04.

Show us your server.json

Here is my server.json file:

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

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

      # HTTP JSON-RPC protocol, port 8344,
      #proxy is most likely your external ip address if your running a public pool | Public pools WON'T have the following ip addresses: (10.0.0.1, 127.0.0.1, 192.168.1.100, or 192.168.254.254,etc,etc)
      # requests to us | "proxy" should be set to your ip address that people will connect through
      { "port" : 8344, "protocol" : "http-json",
        "proxy" : "208.111.40.205" },

      # binary protocol, localhost-only port 8338
      # host is most likely your localhost address
      { "host" : "127.0.0.1", "port" : 8338, "protocol" : "binary" }
   ],

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

      "host" : "localhost",

      "port" : 3306,

      #database name
      "name" : "pushpool",
      #database username
      "username" : "root",
      #database password
      "password" : "xxxxxxxx",
      #enable sharelog | to insert share data or sometimes known as "work"
      "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 (?, ?, ?, ?, ?, ?)"

   },

   #uncoment this when you want to use memcached (Recommended for servers over 1.5gb of ram)
   # 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
   #Bitcoind Protocal settings
   #Host were bitcoind can be found on the network
   "rpc.url" : "http://127.0.0.1:8332/",
   #Username & password to connect to bitcoind
   "rpc.user" : "user",
   "rpc.pass" : "pass",

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

do you have the mysql development package installed?
489  Bitcoin / Development & Technical Discussion / Re: PUSHPOOL help on: June 30, 2011, 06:04:56 AM
FYI I've installed mysql database on to Ubuntu 11.04.

Show us your server.json
490  Bitcoin / Mining support / Re: Miners just not performing on: June 30, 2011, 01:12:50 AM
Ok, So I kinda solved my first issue. Still cant get decent speeds with my working 1x to 16x adaptor for the life of me. Bu Also, I cannot get a full 300 out of my saphires. I am running diablo with -v 2 and -w 256 as that seems to work best for me, but for two cards, I get around 500 instead of 600. Any ideas?

Would help if we know what cards you had.
491  Other / Beginners & Help / Re: Giving away Demonoid invites for Bitcoins on: June 29, 2011, 03:38:08 PM
See topic title for explanation. Post if interested  Grin

So I have a few invites left, and know that some people want an invite very bad.

You can't sell them. Locked
492  Other / Obsolete (selling) / Re: Offer 20 EUR UKASH on: June 29, 2011, 01:55:08 PM
*bump*


In the meantime i got an offer through PM, but apart from a location to meet for the exchange, i got no bid for my UKASH-Paper: So this offer is still up-to-date at least until i manage to meet that guy :-)

Move to the new subforums.
493  Bitcoin / Bitcoin Technical Support / Re: Taking hours to get my client connected on: June 29, 2011, 01:46:07 PM

haha, cheers Smiley
494  Economy / Goods / Re: [WTB] Arma II (2) on STEAM. on: June 29, 2011, 01:02:22 PM
It's free without it, and then you can probably upgrade...

it's not free.
495  Bitcoin / Bitcoin Discussion / Re: Is a passworded WINRAR file an effective encryption method? on: June 29, 2011, 11:44:58 AM
Go with TrueCrypt.

I know this shouldn't matter, but I think it would be weird to protect something so valuable with a program everyone has on their desktop.   I am not sure why I feel like it matters to me, but it does, I can't find the logic in it yet.

Only annoying part is that you have to create a volume that is big enough, because re-sizing isn't really possible (I've saw somewhere about someone having a 150MB+ wallet.dat file)

Just create a 1gb volume and have the entire bitcoin datadir in that.
496  Bitcoin / Bitcoin Technical Support / Re: Taking hours to get my client connected on: June 29, 2011, 11:41:19 AM

Don't thank, tip Wink
497  Economy / Goods / Re: [WTB] Arma II (2) on STEAM. on: June 29, 2011, 11:07:23 AM
with or without operation arrowhead?

with
498  Bitcoin / Bitcoin Discussion / Re: Is a passworded WINRAR file an effective encryption method? on: June 29, 2011, 11:02:30 AM
WinRAR uses an ineffective encryption standard (afaik).

128bit AES... yeah, sure - very ineffective. NOT!

Ok goshh, they didn't use aes last time I used it.
499  Bitcoin / Bitcoin Discussion / Re: Is a passworded WINRAR file an effective encryption method? on: June 29, 2011, 10:57:02 AM
WinRAR uses an ineffective encryption standard (afaik). Tell him to use truecrypt.
500  Bitcoin / Bitcoin Technical Support / Re: Taking hours to get my client connected on: June 29, 2011, 10:52:57 AM
Add some fallback nodes.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 [25] 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!