Profile.d script logs out

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Profile.d script logs out
# 1  
Old 09-08-2016
Profile.d script logs out

Hi,

I included a command set -o vi & sudo -l user -c script in profile.d and /etc/profile. unfortunately the script has some command that logs me out every time I try to login from all users including root user. this is happening from GUI. can I login to prompt directly? or is there an alternate way out?


Many Thanks,
# 2  
Old 09-09-2016
Can you boot the system in single user mode? The prompt on the console is root user.
I would guess not, but I do not know for sure.

If not you will have to find a way to boot using other media like a DVD or maybe a USB stick. Then mount the system drive as something else.

Either way: edit whatever you changed.

Consider creating alternate boot environments just for this kind of thing.
# 3  
Old 09-09-2016
If you haven't rebooted the system, your login shell for root is bash, and someone is still logged in, commandeer their terminal and try:
Code:
su - root login --noprofile

This will leave you with a bash running as root without the benefit of the actions normally run by /etc/profile, ~/.bash_profile, ~/.bash_login, and ~/.profile. With any luck, that would enable you to remove the disastrous changes you made to /etc/profile.

If root's login shell is not bash, check the man page for the shell root uses on your system and see if it provides a similar way to disable using /etc/profile when you login.

Good luck...
This User Gave Thanks to Don Cragun For This Post:
# 4  
Old 09-09-2016
Thanks for the replies, unfortunately I couldn't find a way out so I had to blow it out(forutnately new machine). However, I have to define the same script to run at the startup. Its an executable(db2start). What do you recommend?
# 5  
Old 09-09-2016
Experiment with putting it in a user's private profile first, before you try putting it in the system one.

I don't suppose putting it in a subshell stops it from quitting, i.e. ( sudo -l user command ) ; true

Or perhaps you have a shell option enabled which causes the user shell to exit on any error.
# 6  
Old 09-09-2016
Quote:
Originally Posted by ahmedwaseem2000
Thanks for the replies, unfortunately I couldn't find a way out so I had to blow it out(forutnately new machine). However, I have to define the same script to run at the startup. Its an executable(db2start). What do you recommend?
I recommend that you seriously reconsider what you're trying to do. Why in the world would you want every user who logs in to a system to be required to assume the duties of database administrator for that system???

If you want to do something when the system reboots, add an init script that runs when the system starts running in multi-user mode (after the necessary filesystems have been mounted, network interfaces initialized, ...).
# 7  
Old 09-12-2016
Can you share the script you are thinking of putting in place? There could be something simple that is missing, such as you source a file that doesn't exist, or an error that is not handled in some way. A description of what you are trying to achieve would be useful to so we can understand why you feel the need to do this.

Hopefully we can then suggest ways to protect yourself.




Robin
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

If I ran perl script again,old logs should move with today date and new logs should generate.

Appreciate help for the below issue. Im using below code.....I dont want to attach the logs when I ran the perl twice...I just want to take backup with today date and generate new logs...What I need to do for the below scirpt.............. 1)if logs exist it should move the logs with extention... (1 Reply)
Discussion started by: Sanjeev G
1 Replies

2. UNIX for Dummies Questions & Answers

.profile script problem

I am using MacOSX, and I decided to change the way my terminal looks. So, I created a ~/.profile file that has only the line export PS1="\\u\ @ \\W \($0) \\$ \" ( '\u' displays the current user '\W' displays the Working dir and the weird numbers are colors) It works fine when I log in... (3 Replies)
Discussion started by: TX0
3 Replies

3. Shell Programming and Scripting

Call .profile in perl script

Hello Gurus Can anyone please let me know how to call .profle file in perl script When I am calling the .profile file its giving error Shall I create unix script which has .profile command and call perl script internally (2 Replies)
Discussion started by: Pratik4891
2 Replies

4. Shell Programming and Scripting

script for reading logs of a script running on other UNIX server

Hi, I have a script, running on some outside firwall server and it's log of success or failure is maintained in a file. I want to write a script which ftp that server and reads that file and checks the logs and if failure , I will send mail notification. Please let meknow if I am not... (1 Reply)
Discussion started by: vandana.parwani
1 Replies

5. UNIX for Dummies Questions & Answers

Question on .profile login script

Hey everyone, I'am a little new here and experincing Unix for the first time. I was wondering if somone could help me with this question i'am a bit stuck on Looking at the content of .profile login script The .profile file is in your login directory. It is a startup script file... (1 Reply)
Discussion started by: worldsoutro
1 Replies

6. Shell Programming and Scripting

script fro profile

Hi I need to restrict one user to see only his directory and one more directory how i can do this in his profile. The OS is Red hat linux I create a user -- tec and group calle --tec the user need to see /opt/tec and he is able to change directory to all subdiretories under tec... (1 Reply)
Discussion started by: aboorkuma
1 Replies

7. Shell Programming and Scripting

Updating Profile from script

I am trying to figure a way to update an environmental variable in my .profile from script. I have a variable name CON_DIR in my .profile. I want to be able to update this variable directly via another unix script. Any ideas? Thanks. (5 Replies)
Discussion started by: artfuldodger
5 Replies

8. Shell Programming and Scripting

profile script

case $LOGNAME in insp) sl=20 sa=`who | grep $LOGNAME | wc -l` if then echo "you will be disconected.allready 2 sessions opened!" sleep 4 exit fi ;; *) sl=1 sa=`who | grep $LOGNAME | wc -l` if then echo "you will be disconected.allready one session opened!" sleep 4 exit fi (2 Replies)
Discussion started by: vascobrito
2 Replies

9. UNIX for Dummies Questions & Answers

changed .profile but didnt ./.profile, yet reflected changes

hi , i added ls -F to .profile. and i need to do ./.profile for the effect to take effect BUT i didnt and YET the next day when i came to work and log in, the changes took effect. i am on aix. please explain.. thanks (4 Replies)
Discussion started by: yls177
4 Replies

10. Shell Programming and Scripting

profile script command syntax

Following is my /etc/profile script. Everything above the asterisks executes as expected. Nothing below the asterisks executes as I would like it to. Any guidance on what I'm doing wrong would be greatly appreciated :-) #ident "@(#)profile 1.18 98/10/03 SMI" /* SVr4.0 1.3 */ # The... (3 Replies)
Discussion started by: Mufasa
3 Replies
Login or Register to Ask a Question