1

I have two users on my Linux system, daemonuser, which runs bitcoind and abeuser, which runs Abe.

Whenever I start Abe, I am told:

Skipping datadir /home/daemonuser/.bitcoin/blocks: [Errno 13] Permission denied: '/home/daemonuser/.bitcoin/blocks/blk0001.dat'

Even after adding abeuser as a readable user on the /home/daemonuser/.bitcoin/blocks/ directory.

Would it be easier to keep bitcoin's blockdata in a public folder and read it from there for Abe's purposes?

Vojtěch Strnad
  • 8,292
  • 2
  • 12
  • 40
user3145
  • 877
  • 1
  • 8
  • 17

1 Answers1

1

Did you make the files in the .bitcoin/blocks/ directory readable for Abe? You can test this by logging in as Abe (sudo su abeuser should suffice) and typing strings ~daemonuser/.bitcoin/blocks/any.file.

Bram Geron
  • 111
  • 3