The blockchain has now been fully downloaded and I still get the issue.
There seems to be a problem with Litecoin Daemon
My Litecoin RPC port is setup on Port 19334
When I look at Netstat I am seeing a lot of TIME_WAITS for this port. Im talking 20 or 30.
tcp6 0 0 127.0.0.1:19334 127.0.0.1:53045 TIME_WAIT
tcp6 0 0 127.0.0.1:19334 127.0.0.1:54750 TIME_WAIT
tcp6 0 0 127.0.0.1:19334 127.0.0.1:54732 TIME_WAIT
tcp6 0 0 127.0.0.1:19334 127.0.0.1:53841 TIME_WAIT
tcp6 0 0 127.0.0.1:19334 127.0.0.1:55356 TIME_WAIT
tcp6 0 0 127.0.0.1:19334 127.0.0.1:55517 TIME_WAIT
When I look at stratum log I see stratum is telling me its waiting for Litecoin RPC. This is the last entry in the log
2013-06-13 19:25:34,352 DEBUG coinbaser logger.get_logger # Logging initialized
2013-06-13 19:25:34,352 DEBUG mining logger.get_logger # Logging initialized
2013-06-13 19:25:34,352 INFO mining __init__.setup # Waiting for litecoind RPC..
Very strange. Ports are also the same in all config files
more config/server.json|grep rpc
"rpc.url" : "
http://127.0.0.1:19334/",
"rpc.user" : "username",
"rpc.pass" : "password",
"rpc.target.bits" : 21,
more /var/www/mmcfe-ng/public/include/config/global.inc.php|grep 19334
'host' => 'localhost:19334',
more /stratum-mining/conf/config.py |grep LITECOIN
LITECOIN_TRUSTED_HOST = 'localhost'
LITECOIN_TRUSTED_PORT = 19334
LITECOIN_TRUSTED_USER = 'username'
LITECOIN_TRUSTED_PASSWORD = 'password'
more litecoin.conf|grep rpc
# You must set rpcuser and rpcpassword to secure the JSON-RPC api
rpcuser=username
rpcpassword=password
#rpctimeout=30
# as many rpcallowip= settings as you like to allow connections from
#rpcallowip=10.1.1.34
rpcallowip=*.*.*.*
rpcport=19334
Any pointers would be very helpful