From e157477b6d931faeba6bdc7af7d192c75dcc8e0c Mon Sep 17 00:00:00 2001 From: SChernykh Date: Tue, 30 Aug 2022 23:20:53 +0200 Subject: [PATCH] Create COMMAND_LINE.MD --- docs/COMMAND_LINE.MD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 docs/COMMAND_LINE.MD diff --git a/docs/COMMAND_LINE.MD b/docs/COMMAND_LINE.MD new file mode 100644 index 0000000..5d5f315 --- /dev/null +++ b/docs/COMMAND_LINE.MD @@ -0,0 +1,30 @@ +### P2Pool command line options + +``` +--wallet Wallet address to mine to. Subaddresses and integrated addresses are not supported! +--host IP address of your Monero node, default is 127.0.0.1 +--rpc-port monerod RPC API port number, default is 18081 +--zmq-port monerod ZMQ pub port number, default is 18083 (same port as in monerod's "--zmq-pub" command line parameter) +--stratum Comma-separated list of IP:port for stratum server to listen on +--p2p Comma-separated list of IP:port for p2p server to listen on +--addpeers Comma-separated list of IP:port of other p2pool nodes to connect to +--light-mode Don't allocate RandomX dataset, saves 2GB of RAM +--loglevel Verbosity of the log, integer number between 0 and 6 +--config Name of the p2pool config file +--data-api Path to the p2pool JSON data (use it in tandem with an external web-server) +--local-api Enable /local/ path in api path for Stratum Server and built-in miner statistics +--stratum-api An alias for --local-api +--no-cache Disable p2pool.cache +--no-color Disable colors in console output +--no-randomx Disable internal RandomX hasher: p2pool will use RPC calls to monerod to check PoW hashes +--out-peers N Maximum number of outgoing connections for p2p server (any value between 10 and 1000) +--in-peers N Maximum number of incoming connections for p2p server (any value between 10 and 1000) +--start-mining N Start built-in miner using N threads (any value between 1 and 64) +--mini Connect to p2pool-mini sidechain. Note that it will also change default p2p port from 37889 to 37888 +--no-autodiff Disable automatic difficulty adjustment for miners connected to stratum +--rpc-login Specify username[:password] required for Monero RPC server +``` + +### Example command line + +p2pool.exe --host 127.0.0.1 --rpc-port 18081 --zmq-port 18083 --wallet YOUR_WALLET_ADDRESS --stratum 0.0.0.0:3333 --p2p 0.0.0.0:37889