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
0
votes
1 answer

Openshift pip uninstall old packages versions

There are some bugs in django-registration0.8, that's why it installed 0.9 version manually throw ssh and also places newer version of registration directly near my scripts (under registration folder). However, django still users an old version. I'm…
Ben Usman
  • 7,969
  • 6
  • 46
  • 66
0
votes
1 answer

Mysqldump through SSH on remote windows server using bash script

I'm trying to write a bash script to migrate database from remote server to local. One of our servers is unfortunately windows server. I installed freesshd so I can use ssh. When I run this from my ubuntu shell: sshpass -p 'my_password' ssh…
Joe
  • 2,551
  • 6
  • 38
  • 60
0
votes
2 answers

Block system commands in a C program

I am compiling and executing a C program that uses a PHP System Command on Windows XP Server. If the C program contains a System command like System("shutdown -a") or any system command, then it turns my system down. I want these kinds of…
Himesh
  • 87
  • 1
  • 9
0
votes
3 answers

on deploying php project on another system shows an error as permission denied

when i have tried to deploy a php project in another system i got a error like this Warning: imagejpeg() [function.imagejpeg]: Unable to open 'image.jpg' for writing: Permission denied in /Applications/XAMPP/xamppfiles/htdocs/WISMAN/pmhome.php on…
Sree
  • 41
  • 1
  • 1
  • 8
0
votes
1 answer

Cannot clone a git repository and have to create a repository locally first and to configure its local remote setting

My ~/.ssh contains two keypairs: id_rsa_foo&id_rsa_foo.pub for user foousername on GitHub (github.com) id_rsa_bar&id_rsa_bar.pub for user barusername on GitHub (github.com) for user barusername on my server (indefero.myserver.com) The…
automatix
  • 14,018
  • 26
  • 105
  • 230
0
votes
1 answer

permission denied on www folder

I have created a directory in my www folder using terminal and root user. Then, create some text files in that folder. (with terminal and root user) Now, when I want to access these files and directory via browser, Apache said: 403 Forbidden. You…
mrdaliri
  • 7,148
  • 22
  • 73
  • 107
0
votes
1 answer

svn permission issue - txn-current-lock: Permission denied

I setup svn on my local system /svn/repos/myproject by following this tutorial. I'm able to view the repo in browser. But when it try to import new project I couldn't through svn client ( rapid svn ) it shows following error: Execute:…
vkGunasekaran
  • 6,668
  • 7
  • 50
  • 59
0
votes
2 answers

with ./mange.py syncdb getting permission denied in django project

root@domU-xx-xx-39-04-x5-36:/opt/sana# ./manage.py syncdb -bash: ./manage.py: Permission denied I tried both django.db.backends.mysql and mysql for 'ENGINE' I am able to connect to root using mysql -u root -p My settings.py file is correct My…
madhu131313
  • 7,003
  • 7
  • 40
  • 53
0
votes
1 answer

Having permission denied exception when executing terminal command using Java Runtime.getRuntime().exec on Mac

I am trying to start the terminal and run a command automatically by using Runtime.getRuntime().exec(), but it gives me following exceptions: java.io.IOException: Cannot run program "/Applications/Utilities": error=13, Permission denied I found…
0
votes
1 answer

IIS - Acess denied when browsing a file

I have 2 folders under my application in IIS. When I right click on a file in folder 1 and click browse, I can see the file just fine (its a css file). When I do the same thing on a fie under folder 2 (also a css file). I get a "ACCESS DENIED. …
Vijay V
  • 389
  • 5
  • 11
  • 23
0
votes
1 answer

Eclipse in Linux: running a Junit coverage test gives an error "permission denied"

I am getting a java.io.IOException: Permission Denied error when I try to run a Coverage test over my Java project. I can run individual JUnit tests, and they work fine. Running the tests all together (via Coverage as JUnit tests), I get the…
LConrad
  • 816
  • 1
  • 11
  • 20
0
votes
2 answers

PHP no permission to write to file in MAC

I am using XAMPP(PHP APACHE MYSQL) to develop a program in MAC. When I try to use JPGRAPH to write to file, code: $fileName = "/img/bar.png"; $graph->img->Stream($fileName); I got this warning: Cant write to file, check that the process running PHP…
Li'
  • 3,133
  • 10
  • 34
  • 51
0
votes
1 answer

ADB error=13, Permission denied from ADB, exists=true - Android SDK Setup

This is a recurrent question, and it seems it has several reasons. I cannot discover mine, even after googling. Several people had answered this question, though. The problem is that when I try to run an android project with Eclipse and ADB, I…
Luis A. Florit
  • 2,169
  • 1
  • 33
  • 58
0
votes
1 answer

smtp proxy in python requires root authentication to run

I have the following simple python code on Linux import smtpd proxy = smtpd.PureProxy(('0.0.0.0',25), None) which runs fine when run as sudo, but gives an socket.error: [Errno 13] Permission denied error when running as standard user. My question:…
Alex
  • 41,580
  • 88
  • 260
  • 469
0
votes
2 answers

How Delete A Windows 7 dll File (In System32 Folder) By C# Language

Sometimes I need to delete or replace a dll file in system32 folder of windows 7. The code below always has Permission Denied Error : if (File.Exists(@"C:\Windows\system32\mydll.dll")) { fileInfo.IsReadOnly…
SilverLight
  • 19,668
  • 65
  • 192
  • 300