- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Connection problem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 06:06 AM
07-23-2003 06:06 AM
Connection problem
I have an Oracle RAC 9.2.0.3 and, after a client and server reboot, when I try to logon with user pluto trought sqlplus / I see this message:
ORA-01017: invalid username/password; logon denied
But before of the reboot this command function correctly.
Please help me
Filo
PS I don't Know Oracle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 06:16 AM
07-23-2003 06:16 AM
Re: Connection problem
# ps -ef | grep pmon
You should see a process for the DB. If the DB isn't started, then you, or someone, needs to start it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 06:17 AM
07-23-2003 06:17 AM
Re: Connection problem
ps -ef | grep -i lsn
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 06:22 AM
07-23-2003 06:22 AM
Re: Connection problem
log on as the oracle application owner(check the binaries for ownership)
database
check /etc/oratab for instance name
echo $ORACLE_SID
change as needed
sqlplus internal
select * from v$instance;
# make sure ORACLE_SID is set right
startup
quit or exit
lsnrctrl startup
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 06:23 AM
07-23-2003 06:23 AM
Re: Connection problem
This is (IMHO) clearly an operational/usage question in your production environment.
We can all poke here at the problem with various more or less clever OS and Oracle questions and suggestions but in the end the solution will have to come from your own production environment. So just got there now?!
Please contact you own operational folks (hopefully that is not you!).
Oracle RAC has the potential and intend to handle individual server reboots completely transparently. Please question ypur local staff why this is not happening. Maybe some consultancy is in order, maybe it was a bad-luck glitch.
Regards,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 06:26 AM
07-23-2003 06:26 AM
Re: Connection problem
I see the DataBase situation and I see that is Up an running like listener...infect if I try to execute sqlplus system/manager I log to DB.
Is possible that oracle user not exist?
What can I do to verify if the oracleuser exist?
Thanks
Filo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 06:30 AM
07-23-2003 06:30 AM
Re: Connection problem
there are some points:
- in oracle 9 the user "internal" no more exists
- to check if a particular user exists, use
sqlplus system/manager
select username from dba_users;
pay attention that using "/" you are using external authentication, so you must search for an entry like ops$
- in case, it's better to specify the oracle sid you are attempting to login into
sqlplus /@
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 06:32 AM
07-23-2003 06:32 AM
Re: Connection problem
"This member has assigned points to 42 of 267 responses to his/her questions"
Since you like ITRC forum and its help, it would be a good thing to attain to its etiquette and assign some points. Not to me, but in general :)
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 06:47 AM
07-23-2003 06:47 AM
Re: Connection problem
select username from dba_users;
SQL> select username from dba_users;
USERNAME
------------------------------
SYS
SYSTEM
OUTLN
DBSNMP
WMSYS
SQL>
I think that tha user not exist....
What can I do to create?
Massimo, is true that you said about the points assigned....but when I write on the forum, I am in a " sea of disagreeableness " and I think to solve my problem quickly....But from Now I TRY to assigned point for the helps...
Excuse me for my INCORRECT conduct.
Thanks
Filosofo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 06:49 AM
07-23-2003 06:49 AM
Re: Connection problem
i need to know the exact O.S. user you are using, and the owner of the oracle executable.
The "/" login without password is only allowed for the oracle of the $ORACLE_HOME/bin/oracle executable.
From the output of your query i do not see any external user.
Are you connected with that user ?
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 06:51 AM
07-23-2003 06:51 AM
Re: Connection problem
Thanks
Filo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 06:56 AM
07-23-2003 06:56 AM
Re: Connection problem
sqlplus /@SID
?
try from both server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 07:03 AM
07-23-2003 07:03 AM
Re: Connection problem
if you want to create that user, i will give you the instructions, but it's more a dba work.
sqlplus system/manager
create user ops$
grant connect, resource to ops$
commit;
But, it's a dba-question....Once this is resolved, there may be other issues.
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 07:03 AM
07-23-2003 07:03 AM
Re: Connection problem
I try to connect like oracle user on server db and I execute sqlplus /@ORACLESID...but I see the some message
ORA-01017.....
Thanks
Filo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 07:06 AM
07-23-2003 07:06 AM
Re: Connection problem
are you sure that the instance is opened read/write ? check with
sqlplus system/manager
select * from v$instance;
select * from v$database;
and from the alert_SID.log .
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 07:24 AM
07-23-2003 07:24 AM
Re: Connection problem
select * from v$istance;
select * from v$istance
*
ERROR at line 1:
ORA-00942: table or view does not exist
and
-------------------- -------- ----------- ---------------- ------------------
SWITCHOVER_STATUS DATAGUAR GUARD_S SUP SUP SUP FOR
------------------ -------- ------- --- --- --- ---
23-JUL-03 NOT ALLOWED 18-JUL-03 READ WRITE MAXIMUM PERFORMANCE
DBID NAME CREATED RESETLOGS_CHANGE# RESETLOGS
---------- --------- --------- ----------------- ---------
PRIOR_RESETLOGS_CHANGE# PRIOR_RES LOG_MODE CHECKPOINT_CHANGE
Thanks
Filo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 07:28 AM
07-23-2003 07:28 AM
Re: Connection problem
the instance is open properly.
I did a misstype:
select * from v$instance;
(with the _n_ )
You said Oracle RAC. It's on one or two nodes ?
if two nodes, do one works well or both fail ?
You said client/server reboot. What is the client application that will use oracle ?
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 07:33 AM
07-23-2003 07:33 AM
Re: Connection problem
The output is :
SQL> select * from v$instance;
INSTANCE_NUMBER INSTANCE_NAME
--------------- ----------------
HOST_NAME
----------------------------------------------------------------
VERSION STARTUP_T STATUS PAR THREAD# ARCHIVE LOG_SWITCH_
----------------- --------- ------------ --- ---------- ------- -----------
LOGINS SHU DATABASE_STATUS INSTANCE_ROLE ACTIVE_ST
---------- --- ----------------- ------------------ ---------
1 GBCREG1
h3rmh129
9.2.0.3.0 23-JUL-03 OPEN YES 1 STOPPED
ALLOWED NO ACTIVE PRIMARY_INSTANCE NORMAL
SQL>
and on tha client there is oracle 9.2
Thanks
Filo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 09:21 AM
07-23-2003 09:21 AM
Re: Connection problem
is the problem solved now?
To add to the excellent replies by Massimo,
note that on the client, you must ensure that the tnsname entries are correct.
can you also post the output of:
show parameter os
(you may connect as / as sysdba to get that)
cheers
Yogeeraj