У нас вы можете посмотреть бесплатно Mining with Your Bitaxe on Your Own Bitcoin Node: A Complete Guide! или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Prerequisites: 1 • Installing Bitcoin Core: Download Bitcoin Core from the official website Install it on your PC Create the bitcoin.conf file in C:\Users\YourName\AppData\Roaming\Bitcoin • Content of the Bitcoin.conf file: server=1 rpcuser=youruser rpcpassword=yourpassword rpcallowip=127.0.0.1 rpcport=8332 zmqpubrawblock=tcp://127.0.0.1:28332 zmqpubrawtx=tcp://127.0.0.1:28333 Save and close. 2 • Installing Node.js 3 • Installing Docker Desktop Go to nodejs.org and Docker and install them following the default instructions. • Installing the Pool: Installation: Clone the repository Open PowerShell as administrator Type these commands: cd C: git clone https://github.com/golden-guy/docker-... cd docker-ckpool Configuration Create a "conf" folder in C:\docker-ckpool In this folder, create a file ckpool.conf with this content: { "btcd" : [ { "url" : "127.0.0.1:8332", "auth" : "youruser", "pass" : "yourpassword", "notify" : true } ], "btcsig" : "MyPool", "donation" : 0.1 } Modify the docker-compose.yml file and replace it with this: services: ckpool: build: . ports: "3333:3333" network_mode: "host" volumes: ./conf/ckpool.conf:/etc/ckpool/ckpool.conf restart: unless-stopped Building the Docker image: docker build -t docker-ckpool . Launch with Docker Compose: docker-compose up -d Verification To verify that everything is working: docker ps You should see docker-ckpool in the list of running containers. Bitaxe Configuration Address: Your local IP Port: 3333 User: your_bitcoin_address Save and restart, it's done Happy mining! #bitcoin #bitaxe #nodejs #ckpool #decentralized #mining #miningcrypto