提升xmrig性能
本地安全策略 - 安全设置 - 用户权限分配 - 锁定内存页 - 属性 -添加用户或组 - 添加当前用户 - 重启
1、下载xmrig客户端
https://github.com/xmrig/xmrig
windows 下载xmrig-*-gcc-win64.zip
2、配置xmrig客户端
"pools": [
{
"algo": null,
"coin": null, //要挖的货币比如monero
"url": "xmr.1.xyz:8443", //矿池地址比如www.supportxmr.com
"user": "pc", //钱包地址
"pass": "win10", //矿机别名
"rig-id": null,
"nicehash": false,
"keepalive": true,
"enabled": true,
"tls": true, //是否启用ssl
}
],
3、配置完后启动即可。
点击start.cmd
以下是高阶操作、部署xmrig-proxy代理聚合矿机
4、部署xrmig
官方教程地址https://xmrig.com/docs/proxy
#安装依赖项
sudo yum install -y epel-release git make cmake gcc gcc-c++ libstdc++-static libuv-static openssl-devel libuuid-devel
#拉取项目
git clone https://github.com/xmrig/xmrig-proxy.git
#编译安装
mkdir xmrig-proxy/build
cd xmrig-proxy/build
cmake .. -DUUID_LIBRARY=uuid
make -j$(nproc)
5、配置文件
复制配置文件
cp ~/xmrig-proxy/src/ .
编辑该文件主要分为三部分
#1、bind部分,也就是监听端口
"bind": [
{
"host": "0.0.0.0",
"port": 3333,
"tls": false //x修改tls为true
}
],
#2、pool部分
"pools": [
{
"algo": null,
"coin": null, //要挖的货币比如monero
"url": "xmr.1.xyz:8443", //矿池地址比如www.supportxmr.com
"user": "pc", //钱包地址
"pass": "win10", //矿机别名
"rig-id": null,
"nicehash": false,
"keepalive": true,
"enabled": true,
"tls": true, //是否启用ssl
}
],
#3、SSl部分(证书需要使用acme.sh申请)
"tls": {
"enabled": true,
"protocols": null,
"cert": null, //证书文件地址
"cert_key": null, //证书key文件地址
"ciphers": null,
"ciphersuites": null,
"dhparam": null
},