0

I have set up hadoop environment using a Linux VMWare image. I am able to create file and folder using Linux terminal

creating dir2 using hadoop command

But when I use the web interface to do the same, I get error:

Permission denied: user=dr.who, access=WRITE, inode="/":osboxes:supergroup:drwxr-xr-x

error when using web interface

FLICKER
  • 6,439
  • 4
  • 45
  • 75

1 Answers1

0

it says permission denied give you hadoop folder permission of your user

suppose your hadoop folder is in

/usr/local/hadoop

goto /usr/local than use chown commond :

sudo chown -R yourusername yourfoldername

for more link

try this , see if it works...

itsvinayak
  • 140
  • 1
  • 16
  • the folder that I have created are available only in hadoop. so running the sugested command fails as Linux does not see teh "dir1" and "dir2". BTW, the osboxes already has write permission on those folders, – FLICKER Jun 24 '19 at 21:57