Can I ask what might seem a really novice question? What is the litecoin.conf files purpose created in the app directory for litecoin mining? Does it allow access to that port or something totally different?
Thanks,
To the best of my knowledge, the .conf file for any altcoin should be in the data directory for the client, not in the app directory with the daemon/minerd/wallet. I personally run the data directory as a sub-directory of the app directory and then manually point the wallet/miner/whatever at the data directory with the argument below (via a shortcut).
-datadir=
That way I can run every altcoin from a subdirectory of a single directory on my drive, encrypt that drive, put EVERYTHING on a flash drive if I want, etc.
As far as the purpose of what goes into the .conf file, the most common configurations you will see are as follows:
# Sets the username for your miner when mining solo
rpcuser=username
# Sets the password for your miner when mining solo
rpcpassword=password
# Tells your client what IP addresses to allow connections from
rpcallowip=127.0.0.1,*
# Tells your client, when running in Server mode (see below) what port to listen on if not the default
rpcport=9999
# Tells the client to launch in server mode
server=1
# Tells the client to launch as a Daemon (don't know if this works in Windows or not...It does in Linux).
# The difference between a Daemon and Service is beyond scope.
daemon=1
# Instructs your client, when in server mode, not to generate coins. The reason for this is that virtually
# EVERY miner out there runs something MUCH more efficient that bitcoind!
gen=0
# Adds specific nodes to for your wallet/client to attempt to connect to at startup. This can be helpful
# if you are having trouble finishing download of your blockchain or if a client update has taken place
# recently and your client is saying that your peers need to update. If you can find a list of known good
# updated peers, you can get the most recently updated blockchain from them and keep on keeping on.
addnode=x.x.x.x
The official page of the bitcoin (and ultimately all the other altcoin) configuration file is at
https://en.bitcoin.it/wiki/Running_Bitcoin, but I had to look up a couple of things to figure out what they meant. For example, why wouldn't I want my client to generate coins?
HTH
--DL