I managed to compile litecoind on my centos6.2 box. after installing openssl-1.0e from source, and compiling miniupnc1.6, I successfully got an excutable litecoind, and I run it successful as a daemon. However, it seems that there's no connections, and can not link to the network.(the output of "litecoind getblockcount" and "litecoind getconnectioncount" are all 0). my litecoin.conf file in ~/.litecoin:
server=1
rpcuser=test
rpcpassword=xxx
rpcallowip=*
gen=0
rpcport=9332
daemon=1
block_nTime=1317972665
block_nNonce=2084524493
the output of "litecoind getinfo":
{
"version" : 50100,
"balance" : 0.00000000,
"blocks" : 0,
"connections" : 0,
"proxy" : "",
"generate" : false,
"genproclimit" : -1,
"difficulty" : 0.00024414,
"hashespersec" : 0,
"networkhashps" : -2147483648,
"testnet" : false,
"keypoololdest" : 1325574428,
"keypoolsize" : 101,
"paytxfee" : 0.00000000,
"mininput" : 0.00010000,
"errors" : ""
}
I can connect to 9332 port(telnet localhost 9332, there's a response says".....Escape char is..."), but when I start a miner point to localhost:9332, it says "HTTP request failed: The requested URL returned error: 500"
any ideas about the problem? thanks!