running script as different user


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting running script as different user
# 1  
Old 01-30-2009
running script as different user

I have script1 and script2
i have to make a third script say script3 where i have to run script1 as user1 and script2 as user2
i tried using su but is not working ...i have to give the password.
i have an option of using "expect" but if i use "expect" i have to keep password in plane text inside script is there any way to do this....
# 2  
Old 01-30-2009
you can automate it through ssh, but you'd either have to provide some means of cat-ing the password into a heredoc or otherwise set-up the shared key pair w a blank passphrase.

search the forums for both options...
# 3  
Old 01-30-2009
oh, alternately, you can get root to bless the specific call you're looking to make and alias it using the su string you'd need...
# 4  
Old 01-30-2009
If you have root permissions....

( which I don't... )

You can set the permissions on a binary executable to 4755:

chmod 4755 exec_nm

Then that exec is always run as the owner. Similar to the way mail and sccs work.

however, if it's a script... i don't think that works.

No matter.

Create a little C program:

int main()
{

system( "/fullpath/of/my/command" );

}

and chmod 4755 that guy.
then it'll run the script as the owner of the C exec which should give you what you want.
# 5  
Old 01-30-2009
How about trying to use Sudo?
# 6  
Old 01-30-2009
well, there you go, just grabbed from another thread:

Code:
su - user_nm -c script_file

# 7  
Old 01-30-2009
Normally, I would use setuid for this. See for example:

setuid - Wikipedia, the free encyclopedia
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Running shell script using different user

Hi, I do SSH to host using credential 'user1/password1' and execute 'wrapper.sh'. I want to execute another script 'another_script.sh' from 'wrapper.sh' script using different credentials say 'user2/password2' and want to make sure that the credential 'user2/password2' is always used to run... (7 Replies)
Discussion started by: Mahesh Desai
7 Replies

2. Shell Programming and Scripting

Bash Question: HowTo Exit Script with User Input While Process is Running Mid-Loop?

Hi, I have written a script that allows me to repetitively play a music file $N times, which is specified through user input. However, if I want to exit the script before it has finished looping $N times, if I use CTRL+c, I have to CTRL+c however many times are left in order to complete the loop.... (9 Replies)
Discussion started by: hilltop_yodeler
9 Replies

3. Shell Programming and Scripting

Capturing name of the user who is running a shell script

Hello All, I am writing a shell script which will run on build server where multiple users can login.These users can run this script at the same time. I want to capture the name of the user who ran the script for every instance.How can I do that ? Regards,... (1 Reply)
Discussion started by: anand.shah
1 Replies

4. Shell Programming and Scripting

Does running a cron job of a user require the user to be logged in?

Suppose user 'asdf' is not logged into server 'bbbb', but the server is up. User 'asdf' has cron job. Will it be executed? (1 Reply)
Discussion started by: thulasidharan2k
1 Replies

5. Shell Programming and Scripting

Running script from other user rather than login user

Hi, My requirement is that i am login from ROOT in a script but when any command is coming which is logging to sqlplus then i have to run it with normal user as only normal user have permission to connect to sqlplus . i tried making a script like this : #! /bin/ksh su -... (3 Replies)
Discussion started by: rawatds
3 Replies

6. Shell Programming and Scripting

As root , running script as different user with su - problem

Dear All I am running into a situation where I am running a script as another user lets say oracle using su command as below, and the script fails because the .profile of oracle is not executed so the environment variables are not set. cat /etc/passwd | grep oracle... (4 Replies)
Discussion started by: dbsupp
4 Replies

7. Shell Programming and Scripting

Find username of user running the script

Hello All, If I have a simple cgi script and want to find the name of the person accessing the page, is it possible? How do I get the name of this user? Please help. I was trying a vague method but it doesn't seem to work with all browsers and versions ... $val=$ENV{'HTTP_COOKIE'}; $name... (1 Reply)
Discussion started by: garric
1 Replies

8. UNIX for Dummies Questions & Answers

check user id before running script

I am looking for the syntax to check which ID is executing script.sh. If the the ID, is not user1 then I want the script to exit and return to command prompt, if it is user1, then I want the script to continue. Any help would be greatly appreciate. Thank you. Chris (3 Replies)
Discussion started by: cpolikowsky
3 Replies

9. Shell Programming and Scripting

running a script under different user

Hello again, I have a script, basically simple scp to copy files to a local machine for processing. The scp and ssh facilities use a specific user account requiring no password entry , simply /usr/bin/su - radacct however, I need to run this script from cron under a different user account. I... (4 Replies)
Discussion started by: Gary Dunn
4 Replies
Login or Register to Ask a Question