Giter Club home page Giter Club logo

pool's Introduction

Lbry Mining Pool based on Yiimp

Home Codebase of LBRYPool

TODO: Rewrite this README, Rewrite Install Script to be more logical, Do it all again to document the hax. Be sure to rewrite things to use TMUX and document as such.

Prerequisites:

  1. Ubuntu 18.04
  2. Install Script (Provided in this repo)

WARNINGS

  • Use at your own risks.

The install Script will install the pool and all dependencies needed.

TO INSTALL:

  1. Log in to your server
  2. Create new user - sudo adduser (username)
  3. Add user to sudo group - sudo adduser (username) sudo
  4. Log in to new user - sudo su (username)
  5. cd ~/
  6. wget https://raw.githubusercontent.com/lbryio/pool/next/install.sh && chmod +x install.sh && ./install.sh
  7. Follow the instructions on the screen.
  8. sudo bash pool-start.sh

This will setup the pool ready for coin daemons to be added.

You can find sample config files in web/serverconfig.sample.php and web/keys.sample.php

You need at least three backend shells (in tmux) running these scripts:

web/main.sh
web/loop2.sh
web/block.sh

This is done running the pool-start.sh script in the home folder.

Now you will need to edit the coin in the admin panel, this will be http://IP/site/ADMIN_ADDRESS_USED_WHILE_INSTALLING then go to Coins on the headers, Find LBRY Credits and click LBC.

Here you need to do the following:

  1. Edit algo to lbry
  2. Edit image to /images/coin-LBRY.png
  3. Edit Daemon information to the following:
  4. process name - lbrycrdd
  5. Conf.folder - .lbrycrd
  6. RPC Host - 127.0.0.1
  7. RPC User - This is the Username at the end of the install script.
  8. RPC Password - This is the Password at the end of the install script.
  9. RPC Type - POW
  10. Edit Settings and tick the following boxes:
  11. Enable
  12. Auto Ready
  13. Visable
  14. Installed
  15. Click Save

Once you have clicked save, you need to restart the lbry daemon in the VPS:

  1. lbrycrd-cli stop
  2. lbrycrdd -daemon

At the moment you will find other wallets active, you can click the install tick box on all of the ones that you are not using. I will update this at some point to remove them when installing.

On the website, go to http://server.com/site/adminRights to login as admin. You have to change it to something different in the code (web/yaamp/modules/site/SiteController.php). A real admin login may be added later, but you can setup a password authentification with your web server, sample for lighttpd:

htpasswd -c /etc/yiimp/admin.htpasswd <adminuser>

and in the lighttpd config file:

# Admin access
$HTTP["url"] =~ "^/site/adminRights" {
        auth.backend = "htpasswd"
        auth.backend.htpasswd.userfile = "/etc/yiimp/admin.htpasswd"
        auth.require = (
                "/" => (
                        "method" => "basic",
                        "realm" => "Yiimp Administration",
                        "require" => "valid-user"
                )
        )
}

And finally remove the IP filter check in SiteController.php

There are logs generated in the /var/stratum folder and /var/log/stratum/debug.log for the php log.

More instructions coming as needed.

Credits:

Thanks to globalzon to have released the initial Yaamp source code. Thanks to tpruvot for updating the source code to yiimp. Thanks to oakey22 for customising this for Lbry. Thanks to Coolguy3289 for picking this project back up and getting the software compatible with lbrycrd again.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.