Questions tagged [permission-denied]

This tag refers to a situation in which you are refused access to a particular system, file, database, etc. that is protected. The most common cause of this is improper credentials (i.e. usernames, passwords, etc.)

Use this tag for questions related to being unable to access a particular system, file, database, etc. that is protected because of permission issues.

1520 questions
8
votes
2 answers

python setup.py install without sudo

I have a project with some structure, it is console script. The project has setup.py file. All I want is to install my package any way without using sudo. I spent like 10 hours browsing the internet and can't find a working solution. I keep getting…
N7D
  • 192
  • 3
  • 12
8
votes
3 answers

Hive is throwing permission error while creating table/database

I am getting permission error in hive. I am using IBM cloud - my.imdemocloud.com hive> create table a(key INT); FAILED: Error in metadata: MetaException(message:Got exception: org.apache.hadoop.security.AccessControlException…
orNehPraka
  • 413
  • 2
  • 6
  • 14
8
votes
3 answers

django file upload: [Errno 13] Permission denied: '/static'

I am trying to upload several files in django. On my local maching where I use the djangos build in server everything works fine but on my productivity server I get this error: [Errno 13] Permission denied: '/static' There are many questions about…
michij83
  • 81
  • 1
  • 1
  • 3
8
votes
5 answers

Permission denied when writing into sdCard

I'm trying write a file into SDCard, but I am getting error in logcat: 01-24 09:03:33.647: W/System.err(3353): java.io.FileNotFoundException: /mnt/sdcard/fun/itisfun.txt: open failed: EACCES (Permission denied) 01-24 08:24:28.007:…
zaamm
  • 178
  • 2
  • 2
  • 8
8
votes
9 answers

Permission denied running my own program on Linux?

I have Ubuntu 9.4. I've built the program, some basic OpenGL. The program just makes a rotating square. Then run it and: sh: /blabla permission denied. And an empty main doesn't work: int main() { return 0; } How can I make that disappear?
csiz
  • 4,742
  • 9
  • 33
  • 46
7
votes
7 answers

ERROR: Permission to user1/repo.git denied to user2

Someone I know is trying to clone my github repo and make changes directly to it. It's a public repo. He's cloned it with my read-write access link and he can pull from the repo. The problem is when he tries to push anything he gets the…
gsgx
  • 12,020
  • 25
  • 98
  • 149
7
votes
1 answer

SSH to EC2 but get Permission denied (publickey)

I generated the key-pair by EC2-Console, and then store it in ~/.ssh/iForests_ABetADay.pem. After that, chmod 400 iForests_ABetADay.pem, and ssh -i iForests_ABetADay.pem ubuntu@46.51.244.48 -v. I did login yesterday, but now the error message I got…
iForests
  • 6,757
  • 10
  • 42
  • 75
7
votes
1 answer

Unable to change the dbpath in mongodb through mongodb.conf

I am getting the following message exception in initAndListen std::exception: boost::filesystem::exists: Permission denied: "/vol/mongodb", terminating in /var/log/mongodb/mongodb.log ls -al /vol/mongodb gives - drwxrwxrwx 2 mongodb mongodb…
zubinmehta
  • 4,368
  • 7
  • 33
  • 51
7
votes
1 answer

Flutter Permission Handler not re-asking for permission if already denied

I am trying to access the microphone of the users device, I have managed to integrate the permissions_handler package somewhat successfully. When I clicked the mic icon the request permission message popped up as expected but I pressed deny to deal…
TJMitch95
  • 421
  • 3
  • 7
  • 23
7
votes
2 answers

permission denied on Gemfile.lock

I have got a problem deploying my app on Passenger through Capistrano. I can't seem to shake off a Permission denied - /path/to/app/Gemfile.lock from bundler/definition.rb. Has anyone had this before? I have tried chmoding and chowning the file but…
Edward Ford
  • 1,631
  • 3
  • 13
  • 25
7
votes
3 answers

On Android Studio 2.2.3 Gradle sync failed: Cause: error=13, Permission denied on Linux Mint 18

On Android Studio 2.2.3 when I am creating a new project or opening previous projects then the following pop ups: Gradle sync started 7:55:26 AM Gradle sync failed: Cause: error=13, Permission denied Consult IDE log for more details…
7
votes
1 answer

Running nginx as non-root in Docker container gives permission denied error

I have the following Dockerfile FROM ubuntu:14.04 EXPOSE 8000 # Install nginx RUN apt-get update -q \ && apt-get install --no-install-recommends --no-install-suggests -y -q \ nginx \ && rm -rf…
Aides
  • 467
  • 2
  • 5
  • 16
7
votes
4 answers

java.lang.SecurityException: Permission Denial: opening provider

I start image picker intent using: final Intent pickIntent = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI); pickIntent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true); startActivityForResult(intent, PICK_IMAGE); and in…
7
votes
2 answers

Signed JAR being blocked by Java Security

I'm racking my brains as to why when I'm signing my JAR using a code signing certificate which has been used before, I still get a Java Security Application Blocked dialog which stipulates that my application is self-signed: However, when I run the…
lilalfyalien
  • 203
  • 1
  • 3
  • 9
7
votes
1 answer

How do I resolve Django AllAuth - 'Connection aborted.', error(13, 'Permission denied') Error?

I'm trying to resolve a connection error thrown by AllAuth/Django 1.7 running on Google App Engine: I believe the error may be in the Sessions configuration but I've not been able to identify the problem. Local signup is functioning correctly, but…