Post
Topic
Board Mining support
Re: Antminer S9's Hijacked-Need Help-Will Pay $$ To Reset-ASAP
by
Elphamyto
on 29/11/2017, 14:34:17 UTC
If you want to try and manually force the miner configuration (pool / worker / password) here are the steps. If something on the controller is corrupt then this may not work. This is only a last resort. I'm assuming you aren't familiar with nix shells from what you said in your first post.

You'll need to ssh into the miner. If you aren't working from a linux or mac, you'll need Cygwin or some other way of running a bash-like shell.
The username is root and the password is admin (unless you have changed the password)
Code:
ssh root@192.168.1.55
*enter password*

Change to the config directory
Code:
cd /config

Stop bmminer
Code:
/etc/init.d/bmminer.sh stop > /dev/null 2>&1

Change permissions on bmminer.conf so we can edit it manually
Code:
chmod 600 bmminer.conf

Edit the file using vi
Code:
vi bmminer.conf

Use arrow buttons to go to where you edit text, press "i" and edit the text. If you get stuck using vi just google it—unfortunately there isn't any other editor installed. When you are done editing the pool and worker info, press escape, then colon and type "wq" (which mean write changes and quit vi) and enter.

Change permissions back to original state on bmminer.conf
Code:
chmod 400 bmminer.conf

Start bmminer
Code:
/etc/init.d/bmminer.sh start > /dev/null 2>&1


See if this gets your pools and workers back