problem with .profile


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting problem with .profile
# 1  
Old 04-19-2007
problem with .profile

I am trying to execute my .profile which has the path to oracle home. But when I execute it with the below command it says nothing and when I try to echo the ORACLE_HOME I am still in my home directory itself which means it didn't get executed.

Please help how to make sure that .profile is executed perfectly.

I am running the .profile by command

./.profile

I am having the below statement in my .profile

ORACLE_HOME=/apt/opp/oracle/9.2.0
export ORACLE_HOME
echo $ORACLE_HOME

Please suggest.
# 2  
Old 04-19-2007
work on solaris in ksh

tstora3:tmp :./.test
/apt/opp/oracle/9.2.0
tstora3:tmp :more .test
ORACLE_HOME=/apt/opp/oracle/9.2.0
echo $ORACLE_HOME
# 3  
Old 04-19-2007
You need to source .profile. You are currently running .profile, it forks and then returns to the current environment, but losing all the settings it just made. Sourcing .profile will instead bring all those settings back into your current environment.

Do:

Quote:
. ./.profile
That's <dot><space><dot><slash><dot>profile
# 4  
Old 04-19-2007
Nope. Still the same problem.
# 5  
Old 04-19-2007
make sure you have set the execute permission to the file, and also, try this.
~/.profile
# 6  
Old 04-23-2007
Try:
..profile
# 7  
Old 04-24-2007
. .profile

Hi,
execute . .profile chk there is no execute permission on .profile
we want to set these environment values
u can manually set those values like
export ENV_VAR=ORACLE_HOME
but i think whn u will execute . .profile it will work
Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Problem with profile

i have a bash_profile in this profile there are my variable but when i do csh there aren't my variables .set how can i do ? regards Franc (1 Reply)
Discussion started by: Francesco_IT
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=&quot;\\u\ @ \\W \($0) \\$ \&quot; ( '\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. UNIX for Dummies Questions & Answers

Problem with TNS_ADMIN in .profile

Hi! In my .profile I have a line that says export TNS_ADMIN=$HOME I received the .profile file from a colleague who uses it to access SQL*Plus from a UNIX server. When I try the same method he uses I get ORA-12154: TNS:could not resolve the connect identifier specifiedwhich makes me think... (8 Replies)
Discussion started by: Mike Welch
8 Replies

4. Shell Programming and Scripting

problem with profile-autosys

Hi All, I have trying to schedule an autosys job and it is failing. The shutdown script runs fine by itself from the UNIX box but fails when i try to schedule it through autosys. I have compared user.env with auto.env (variables obtained through an autosys script) and updated my profile... (1 Reply)
Discussion started by: userscript
1 Replies

5. Solaris

profile problem

for some reason my profile doesnt seem to be loading. here is some info $SHELL /sbin/sh $HOME / (yup, im running at root, its a VM and im using it to learn) created /.profile added something simple to test, PS1="test" logout and back in, open a terminal... prompt is still # ... (2 Replies)
Discussion started by: jrich523
2 Replies

6. OS X (Apple)

Problem using a top command alias in my profile

Hi- I am newish to the mac osx unix interface. I want to set up top so that it always displays the username. I can use this command to do this: top -ocpu -P ' PID COMMAND %CPU TIME #TH #PRTS #MREGS RPRVT RSHRD RSIZE VSIZE USER' -p '$aaaa ^bbbbbbbbb $cccc $wwwwwww $ee... (1 Reply)
Discussion started by: mikey11415
1 Replies

7. UNIX for Advanced & Expert Users

Problem in updating .profile file in HP-UX B.11.00 machine

Hello All, I am using a HP-UX machine and I want to update the .profile file so that after login to my userID that will be applicable to my ID also. What I am trying to do is : In .profile file I am trying to write in /home/userID folder: export PATH=$PATH:$HOME:. so that whenever I will... (3 Replies)
Discussion started by: abhishek0071
3 Replies

8. UNIX for Dummies Questions & Answers

.profile problem using set -o vi

The “set -o vi” command won't run in the .profile. WHY? This has me puzzled as the problem seems to be too simple, but can't figure it out. Here's the info... Running... Generic sun4u sparc SUNW,Ultra-5_10 K shell Here's the .profile # Copyright (c) 2001 by Sun Microsystems, Inc. # All... (12 Replies)
Discussion started by: jimmyc
12 Replies

9. UNIX for Dummies Questions & Answers

problem with .profile

Hi, i am changing something in .profile file and then esc :wq!. when i do the cat i can see the changes. but to bring the .profile in memory i have to do . .profile.but it says error while doing that is . .profile ksh: .profile: not found. can any body help thanks in advance sam71 (7 Replies)
Discussion started by: sam71
7 Replies

10. UNIX for Dummies Questions & Answers

Problem with .profile

I wanted to add /home/oracle/sql to my path so that from which ever directory i connect to sqlplus i should be able to source the .sql files sitting in /home/oracle/sql. Also, this is what i tried but it doenst work # Set up the search paths: export ... (2 Replies)
Discussion started by: jigarlakhani
2 Replies
Login or Register to Ask a Question