The installation is pretty easy, but there are some depenencies for stratum-mining. Below we refer to the coin daemon as litecoind, but more coins will work. Please see the README.md for a list of tested coins.
sudo apt-get install git mysql-server python python-twisted python-mysqldb
-
Setup and configure the litecoind instance, noting the rpcuser and rpcpass for use later. NOTE: Make sure to use a strong username and password for the coin daemon. Make sure to backup the wallet
-
Clone the newest copy of stratum-mining-litecoin
git clone https://github.com/moopless/stratum-mining-litecoin.git
-
Update submodules This should pull new changes for stratum and litecoin_scrypt
./update_submodules
-
Install stratum core. The can be acomplished by using easy_install or installing from git. a. Install from with easy_install
sudo easy_install stratum
b. Install from git
git pull https://github.com/slush0/stratum.git sudo python stratum/setup.py install
-
Install Litecoin_scrypt from git
git pull https://github.com/Tydus/litecoin_scrypt.git sudo python litecoin_scrypt/setup.py install
-
Configuration of stratum-mining-litecoin First copy the sample configuration.
cp conf/config_sample.py conf/config.py
Now edit config/config.py and make the changes for your environment. NOTE: Future updates to stratum-mining-litecoin may introduce new configuration options, so check the git log on updates.
-
Set up the database stratum-mining-litecoin requires MySQL. First make sure the database has been created and you have a user with the correct permissions. Next, either install the databse from mmcfe, mmcfe-ng, or stratum-mining-litecoin. See the sql/README for more information about the stratum-mining-litecoin database
mysql -u user -p database < sql/stratum_default_layout.sql
-
Start stratum-mining-litecoin
twistd -ny launcher.tac -l log/debug.log
You can now set the URL on your stratum miner:
stratum+tcp://YOURHOSTNAME:3333
- Additional Steps Increase the ulimit:
For the session ulimit -n 10240
Persitantly sysctl -w fs.file-max=10240