Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

chown illegal group name (mac os x) [closed]

I'm trying to run the following command in Terminal:

chown -R couchdb:couchdb /usr/local/var/log/couchdb 

However, I keep getting this message:

chown: couchdb: illegal group name 

I am using mac osx (mountain lion) and I have command line tools installed. I really don't know very much about unix, but I've been googling the illegal group name error and haven't turned up anything that would help. What am I overlooking? Any additional resources you think might be helpful also appreciated.

like image 808
egon Avatar asked Apr 12 '13 20:04

egon


1 Answers

Try using just the owner if no group.

sudo chown -R user: /usr/local/var/log/couchdb 
like image 131
jackotonye Avatar answered Sep 23 '22 00:09

jackotonye