Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.4
by
papampi
on 11/12/2017, 16:06:02 UTC
I have 19-2 running on my test rig that is also running plusCPU.

On a clean reboot, plusCPU starts up right away as usual, but as soon as the main GPU miner comes online, something (wdog?) kills plusCPU.

Is the pool address correct ?
No need to add stratum+tcp:// to pool address any more


Looks like the issue is that the port is not being passed to the miner, so it defaults to 80:



And this is what I have in 1bash:

Code:
# XMR : if plusCPU is "YES" replace with your XMR info  ##
XMR_WORKER=$WORKERNAME
XMR_ADDRESS="crazydane"
XMR_POOL="us-east.cryptonight-hub.miningpoolhub.com"
XMR_PORT="20580"

I fixed it for now by reverting back to:

XMR_POOL="us-east.cryptonight-hub.miningpoolhub.com:20580"


So sorry for my mistake


Either open 3main and edit the 2 lines and add :$XMR_PORT in this section :

Code:
if [ $plusCPU == "YES" ] && [ $AUTO_START_MINER == "YES" ]


Code:
      guake -n $HCD -r plusCPU -e "$HCD -a cryptonight -o stratum+tcp://$XMR_POOL:$XMR_PORT -u $XMRADDR -p x -t $threadCOUNT"
    else
      screen -dmS plusCPU $HCD -a cryptonight -o stratum+tcp://$XMR_POOL:$XMR_PORT -u $XMRADDR -p x -t $threadCOUNT

Or run the update script again to fix it for you