1

I tried stopping bitcoind using bitcoin-cli stop and got the following error.

bitcoin-cli stop
error: Could not locate RPC credentials. No authentication cookie could be found, and RPC password is not set.  See -rpcpassword and -stdinrpcpass.  Configuration file: (/home/user/.bitcoin/bitcoin.conf)

I confirmed that bitcoind is running (using ps -A).

ps -A | grep bitcoind
643 pts/0    00:17:23 bitcoind

bitcoind was started in a datadir on the usb storage. I can kill the process but i want to shut it down in a correct way.

noi.m
  • 167
  • 1
  • 5

1 Answers1

1

As @Raghav Sood mentioned, you can stop bitcoin for a different datadir (the location of .bitcoin folder) using:

$ bitcoin-cli -datadir=<dir> stop

JBaczuk
  • 7,278
  • 1
  • 11
  • 32