Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
75 views

Environment Variables when Using SUDO

When I use any command with sudo the Enviroment Variables were not there for example when I set HTTP_PROXY it works fine with wget without sudo but when I type sudo wget it said It cant bypass the ...
1
vote
2answers
59 views

Permission granted in etc/sudoers only lasts for 10 minutes

I have a PHP script which contains a shell_execute() and the command it executes normally requires sudo. I've edited the sudoers with visudo to contain the following: www-data ALL = NOPASSWD: ...
1
vote
3answers
103 views

Segmentation fault after sudo commands

I've modified (in some wrong way) the file etc/sudoers in my Mac OS X 10.6.8. For this reason I've erased the wrong line and replaced the original file. But now whenever I type sudo commands the ...
1
vote
1answer
69 views

how to run mercurial commands as another user with sudoers

All our developers are able to log in to our staging server via ssh. When they run any hg command on the staging servers it makes them the owner of the updated/new files. I need these files to be ...
1
vote
2answers
520 views

how to run script as another user without password

I have script.sh that must be run as user2. However, this script can only be run under user1 in my application. I would like the following command to run: su user2 -C script.sh but be able to run ...
1
vote
2answers
154 views

What's the easiest way or method to automate the adding of a user to a fresh sudoers file?

so, I've adduser'ed micronxd. I've passwd'd micronxd. now I wanna make micronxd a sudo user. I'm trying to pack as much of this process into a shell script as possible. If possible, could the ...
1
vote
2answers
723 views

Fastest Way to Determine User Permissions in /etc/sudoer

Users will be remotely accessing ***nix based machines via SSH and I need to determine the fastest way to check if the username that they are currently using has NOPASSWD access in the /etc/sudoers ...
0
votes
0answers
9 views

Run shell command as other user calling PHP script by browser using lighttpd

I have a PHP script which is called by HTTP and not as command line script. This script should call a shell command as an other user than the webserver user www-data. Example-script: (tested with ...
0
votes
0answers
18 views

Linux set time from net at login [migrated]

On my Ubuntu 10.04 box I (a user, not root) can issue sudo net time set and it works great. I'd prefer that the box get the net time on a more regular basis, or at least each time it gets logged ...
0
votes
1answer
76 views

Is this the right entry for the sudoers file to give php access to reload nginx?

I need to give php access to reload nginx. The command is nginx -s reload so is the entry in the sudoers file below correct? www-data ALL=NOPASSWD: nginx -s reload Then would <?php exec('sudo ...
0
votes
1answer
24 views

Typed - “Init 1” - In Terminal Now Connection Refused [closed]

I was ssh'd into my server then typed init 1 because I googled this stupid thing without reading further and now I cannot ssh into my server at all. giving me an error: EP:~ chris$ ssh ...
0
votes
1answer
104 views

visudo nopasswd not working

I am trying to allow all users in the admin group to run a jar file as SUDO without a password, I have edited the sudoers file (using visudo) and tried a number of commands but it still prompts me for ...
0
votes
2answers
54 views

PHP command not executed system(), exec() or passthru()

I am trying to run a command line file conversion using open office. openoffice pdf filename.doc 2>&1 when i execute in command line as root it works fine and the file is converted. However ...
0
votes
0answers
30 views

sudoers configuration [closed]

I have two scripts: getPwd.pl owned by secure:users - returns a DB password. connectDB.pl owned by alice:users - calls getPwd and uses the password returned to connect to a DB I want to set up ...
0
votes
1answer
231 views

could not open session as Root

I came across this error that is apparently pretty common among Linux Systems. "Too many files Open" In my code I tried to set the Python open file limit to unlimited and it threw an error saying ...
0
votes
1answer
631 views

adding permissions with visudo to a linux user for using wireshark [closed]

Im trying to set permissions for a user named 'invitado', jus for some binaries: wireshark, tcpdump and traceroute. Iv done according to the sudoers syntax which i think is the following: # ...
0
votes
1answer
537 views

Run sudo command on startup, OSX

I am trying to fix some of the laptops at my uni. I have been given the admin account to change the settings. What I am trying to do is make it so that no matter what state the previous person who ...
0
votes
2answers
448 views

Visudo not working anymore, what can I do?

So... I accidentally opened up visudo by typing vi visudo and at the same time I also prefer nano so I just naturally pressed ctrl+x to exit, then didn't realize right away that I was in vi (yes ...
0
votes
4answers
2k views

Using Net SSH to execute commands with sudo

I've been trying to write a small library using Thor to help assist me in quick creating new projects and sites. I wrote this small method: def ssh(cmd) Net::SSH.start( server_ip, user, :port ...
0
votes
4answers
220 views

Calling ejabberdctl from PHP

I am working on a php social network that requires us to create XMPP accounts for all new members. I have a working Ejabberd server running with mod_admin_extra all working fine. I am trying to call ...