Profile.d script logs out

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Profile.d script logs out
# 8  
Old 09-12-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?
If you need an init script to start a DB2 instance at system boot you can use this minimalistic script:
Code:
#   chkconfig: - 91 09
DB2BASE=/opt/ibm/db2/V9.7.5
DB2INST=db2inst1
case "$1" in
    start) $DB2BASE/bin/db2gcf -u -i $DB2INST;;
    stop) $DB2BASE/bin/db2gcf -d -i $DB2INST;;
esac

Install this script in /etc/init.d and name it after the DB2 instance (db2inst1, for example) Then you can start DB2 with
Code:
service db2inst1 start

To activate the service at boot time use
Code:
chkconfig db2inst1 on

If you have RHEL 7.x and want to use a systemd service, you can use this service description:
Code:
[Unit]
Description=DB2 Instance db2inst1
[Service]
Type=forking
ExecStart=/opt/ibm/db2/V10.5/bin/db2gcf -u -i db2inst1
ExecStop=/opt/ibm/db2/V10.5/bin/db2gcf -d -i db2inst1
[Install]
WantedBy=multi-user.target

Copy this file to /usr/lib/systemd/system/db2inst1.service, then run
Code:
systemctl daemon-reload
systemctl enable db2inst1
systemctl start db2inst1

You will have to adjust the instance name and the directory where DB2 is installed according to your needs.
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