- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- 10.2.0.2 sys passwd no longer works
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
Discussions
Discussions
Discussions
Forums
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
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
тАО11-05-2007 05:10 AM
тАО11-05-2007 05:10 AM
10.2.0.2 sys passwd no longer works
We have two identical databases, one we can log in with sys, the other we cant.
Both have the same parameter:
remote_login_passwordfile =SHARED
How do fix this???
We get an error when trying to change the passwd:
ORA-28046: Password change for SYS disallowed
So some how the passwd got changed, and now we can not set it back.
If we set the remote_login_passwordfile=exclusive
Make the passwd change, then set it back to shared, will this break anything?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-05-2007 06:29 PM
тАО11-05-2007 06:29 PM
Re: 10.2.0.2 sys passwd no longer works
Text: Password change for SYS disallowed
---------------------------------------------------------------------------
Cause: REMOTE_LOGIN_PASSWORDFILE is set to SHARED, prohibiting SYS
password changes.
Action: Change setting of REMOTE_LOGIN_PASSWORDFILE to EXCLUSIVE or NONE.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-05-2007 10:24 PM
тАО11-05-2007 10:24 PM
Re: 10.2.0.2 sys passwd no longer works
making these changes should not "break anything"!
Unless you have a script hardcoded with the new SYS password (very much discouraged!!)which you are changing back to the old value...
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-06-2007 03:05 AM
тАО11-06-2007 03:05 AM
Re: 10.2.0.2 sys passwd no longer works
restarted database
Was able to change the passwd for SYS
But we still can not log in to the database with SYS.
Either thru sqlplus or thru Enterprise Manager Console!!!
We also, tried changing the passwd, then starting it back up using the spfile.
Both did not work
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-06-2007 03:39 AM
тАО11-06-2007 03:39 AM
Re: 10.2.0.2 sys passwd no longer works
shutdown immediate
startup
alter user sys identified by
quit
mv
#orapwd file=orapwSID password=new_password
alter system set REMOTE_LOGIN_PASSWORDFILE =shared scope=spfile
shutdown immediate
startup
Done!