Bitcoin Forum

Bitcoin => Development & Technical Discussion => Topic started by: Banthex on November 15, 2013, 12:03:50 AM



Title: Problems running bitcoind -daemon
Post by: Banthex on November 15, 2013, 12:03:50 AM
Hello,

i don't get a connection to bitcoind. I want to setup something on a website on xampp. Can't get the connection from my websitescript to bitcoind daemon. Googled a lot bit couldn't find anything.
Could my windows server edition from my vps be a problem?

My bitcoind.conf
 
server=1
rpcuser=
rpcpassword=
rpctimeout=90
rpcport=8332
rpcssl=1


Does someone of you have such as problems?

Thanks in advance.


Title: Re: Problems running bitcoind -daemon
Post by: Shahrukh on January 15, 2014, 03:33:01 AM
If this is still not solved try this in your bitcoin.conf file

server=1
daemon=1
rpcuser=any_username
rpcpassword=any_password

if connecting through remote host ad these lines

rpcallowip=<remote_ip>
rpctimeout=30

save bitcoin.conf and exit

stop bitcoind by bitcoind stop and start it again by bitcoind start


Title: Re: Problems running bitcoind -daemon
Post by: deepceleron on January 16, 2014, 08:12:53 PM
You do not need a command-line option "-daemon", that's what the "d" in bitcoind stands for.

By default, Bitcoin doesn't allow connections outside of the local network.

http://we.lovebitco.in/bitcoin-qt/configuration-file/


Title: Re: Problems running bitcoind -daemon
Post by: Banthex on January 17, 2014, 12:44:40 AM
Thanks i solved the problem. It was in the php file. Thanks anyways!