2
I'm having issues starting dogecoind after compiling in ubuntu 12.04 x64 running in VirtualBox on win 7 ultimate x64
here's what i've tried from inside dogecoin/src after make -f makefile.unix:
sudo su
./dogecoind -server -listen -daemon -rpcuser=dogerpc -rpcpassword=dogerpcpw -rpctimeout=30 -rpcport=8334 -rpcallowip=192.168.1.* -rpcallowip=127.0.0.1 -testnet
and i get:
Error: To use the "-server" option, you must set a secure rpcpassword in the configuration file:
/root/.dogecoin/dogecoin.conf
so i do:
cd ~/.dogecoin
emacs dogecoin.conf
i save the following parameters:
rpcuser=dogerpc
rpcpassword=dogerpcpw
rpcport=8334
rpcallowip=192.168.1.*
rpcallowip=127.0.0.1
server=1
daemon=1
listen=1
testnet=1
i even chmod 777 dogecoin.conf to be sure everyone on God's green earth could access it so that wouldn't be a problem, but still the same error when trying to start up dogecoind
would much appreciate any help/tips!
This is not Bitcoin related, and you shouldn't be running random daemons as root. It's likely a capitalization error, with this sort of crap it usually is case related. – user13413 – 2014-02-19T22:08:40.927
1although SUPER helpful, i'm running a secure dev env so i can run as whatever user i seem fit. furthermore, the daemon is a derivative of the bitcoin daemon so the question is still relevant. not to mention that according to SO meta, bitcoin.se is for all cryptocurrency related qa. thanks for playing tho – Jon B – 2014-02-19T22:11:29.190
"Secure dev environment" and "running every process as root" are incompatible statements, you have have one or the other. My comment is actually quite relevant, a lot of scamcoins have has issues with some systems being case sensitive and others not being. – user13413 – 2014-02-19T22:14:06.613
@goatse: According to community discussion questions about altcoins are on topic.
– Murch – 2014-02-23T09:11:39.017