Bitcoin Forum

Bitcoin => Bitcoin Technical Support => Topic started by: cnbtcnews on December 27, 2012, 01:34:35 AM



Title: Why I run bitcoind 0.7.2 64 bit on ubuntu,the version show 32400?
Post by: cnbtcnews on December 27, 2012, 01:34:35 AM
http://bbs.btcman.com/data/attachment/forum/201212/27/093419wyyqy28f1u1jp1je.png


Title: Re: Why I run bitcoind 0.7.2 64 bit on ubuntu,the version show 32400?
Post by: K1773R on December 27, 2012, 01:42:15 AM
since u started bitcoind with "bitcoind" and not the one you did built.

if you use bitcoind with parameters it changes to a simple JSON request/response tool. for example u could use
Code:
namecoind -rcpport=8332 -rpcuser=rpcuser -rpcpassword=rpcpassword getinfo
to query bitcoind with the namecoind binary.

therefore stop bitcoind, uninstall the package u installed (or the old binary if u compiled/copied it on ur own) and copy bitcoind to /usr/local/bin, afterwards restart bitcoind with
Code:
bitcoind -upgradewallet


Title: Re: Why I run bitcoind 0.7.2 64 bit on ubuntu,the version show 32400?
Post by: cnbtcnews on December 27, 2012, 02:37:07 AM
since u started bitcoind with "bitcoind" and not the one you did built.

if you use bitcoind with parameters it changes to a simple JSON request/response tool. for example u could use
Code:
namecoind -rcpport=8332 -rpcuser=rpcuser -rpcpassword=rpcpassword getinfo
to query bitcoind with the namecoind binary.

therefore stop bitcoind, uninstall the package u installed (or the old binary if u compiled/copied it on ur own) and copy bitcoind to /usr/local/bin, afterwards restart bitcoind with
Code:
bitcoind -upgradewallet

Thank you!