In this video, I talk about installing and configuring a Ravencoin private solo stratum proxy on Ubuntu 22.04. This will allow you to mine to your own pool.
Before you can do this, you must be running a Ravencoin Full Node. I have done an existing video on how to set this up.
• How-to: Ravencoin Full Node 4.3.2.1 o...
== Enable RPC
sudo vi /home/rvn/.raven/raven.conf
rpcuser=rvn_admin
rpcpassword=xxxx_make_a_random_password
rpcallowip=127.0.0.1
= Reload config
sudo systemctl restart ravend.service
= Create an account to run Ravencoin stratum proxy in isolation from the rest of the system
sudo useradd -g rvn -m -s /bin/bash rvn-proxy
sudo su - rvn-proxy
== Clone the GIT repository and install requirements
git clone https://github.com/kralverde/ravencoi...
cd ravencoin-stratum-proxy/
python3 -m pip install -r requirements.txt
= Ignore warnings
WARNING: The script normalizer is installed in '/home/rvn-proxy/.local/bin' which is not on PATH.
WARNING: The script base58 is installed in '/home/rvn-proxy/.local/bin' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
== Test
cd ravencoin-stratum-proxy
python3 stratum-converter.py 54325 localhost rvn_admin xxxx_make_a_random_password 8766 true
CTRL-C when done
== Setup to run as a system daemon
exit
sudo vi /etc/systemd/system/rvn-proxy.service
[Unit]
Description=Ravencoin Stratum Proxy
After=multi-user.target
Requires=ravend.service
[Service]
User=rvn-proxy
Group=rvn
Type=simple
Restart=always
WorkingDirectory=/home/rvn-proxy/
ExecStart=/usr/bin/python3 -u /home/rvn-proxy/ravencoin-stratum-proxy/stratum-converter.py 54325 localhost rvn_admin xxxx_make_a_random_password 8766 true
[Install]
WantedBy=multi-user.target
== Enable and start service
sudo systemctl daemon-reload
sudo systemctl enable rvn-proxy.service
sudo systemctl start rvn-proxy.service
sudo systemctl status rvn-proxy.service
journalctl -xeu rvn-proxy.service
== To watch the stratum proxy running:
journalctl -fu rvn-proxy.service
#ravencoin #ubuntu #howto
Video Content
00:00 Intro
00:11 Why create a private solo Ravencoin pool
00:48 Enable RPC
01:29 Create a new user account
01:59 Get code from Github
03:32 Setup as a system daemon
06:04 Setup crypto miner
06:37 Watching the stratum proxy run
Watch video How-to: Ravencoin Private Solo Pool on Ubuntu 22.04 online without registration, duration hours minute second in high quality. This video was added by user Philip D'Ath 19 August 2022, don't forget to share it with your friends and acquaintances, it has been viewed on our site 2,462 once and liked it 43 people.