<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Why cannot user OS authentication in Oracle 8.1.7 ? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224414#M893516</link>
    <description>os_authent_prefix = "" is already defined in the init.ora.&lt;BR /&gt;&lt;BR /&gt;As per the Oracle documentation:&lt;BR /&gt;OS_AUTHENT_PREFIX specifies a prefix that Oracle uses to authenticate users attempting to connect to the server. Oracle concatenates the value of this parameter to the beginning of the user's operating system account name and password. When a connection request is attempted, Oracle compares the prefixed username with Oracle usernames in the database. &lt;BR /&gt;&lt;BR /&gt;The default value of this parameter is OPS$ for backward compatibility with previous versions. However, you might prefer to set the prefix value to "" (a null string), thereby eliminating the addition of any prefix to operating system account names. &lt;BR /&gt;&lt;BR /&gt;sks</description>
    <pubDate>Mon, 22 Mar 2004 04:19:57 GMT</pubDate>
    <dc:creator>Sanjay Kumar Suri</dc:creator>
    <dc:date>2004-03-22T04:19:57Z</dc:date>
    <item>
      <title>Why cannot user OS authentication in Oracle 8.1.7 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224409#M893511</link>
      <description>Hi there,&lt;BR /&gt;&lt;BR /&gt;I created a Unix account called dbaudit and then create a corresponding Oracle account which identified externally.&lt;BR /&gt;&lt;BR /&gt;However, I could not login with "sqlplus /".  What's going wrong with my DB setting ??&lt;BR /&gt;&lt;BR /&gt;Attached please find my init.ora file for your reference.&lt;BR /&gt;&lt;BR /&gt;Appreciated for your advice.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Sat, 20 Mar 2004 04:26:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224409#M893511</guid>
      <dc:creator>Chris Fung</dc:creator>
      <dc:date>2004-03-20T04:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Why cannot user OS authentication in Oracle 8.1.7 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224410#M893512</link>
      <description>Have you given?&lt;BR /&gt;&lt;BR /&gt;GRANT connect TO user_name;&lt;BR /&gt;&lt;BR /&gt;sks</description>
      <pubDate>Sat, 20 Mar 2004 05:40:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224410#M893512</guid>
      <dc:creator>Sanjay Kumar Suri</dc:creator>
      <dc:date>2004-03-20T05:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Why cannot user OS authentication in Oracle 8.1.7 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224411#M893513</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;were you meant to say sqlplus "/ as sysdba"?&lt;BR /&gt;If not post the error message.&lt;BR /&gt;Is the user part of the dba group?&lt;BR /&gt;&lt;BR /&gt;greetings,&lt;BR /&gt;&lt;BR /&gt;Michael&lt;BR /&gt;</description>
      <pubDate>Sat, 20 Mar 2004 07:24:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224411#M893513</guid>
      <dc:creator>Michael Schulte zur Sur</dc:creator>
      <dc:date>2004-03-20T07:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: Why cannot user OS authentication in Oracle 8.1.7 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224412#M893514</link>
      <description>The Oracle user account must be defined as follows:&lt;BR /&gt;&lt;BR /&gt;From Metalink Note# 18088.1&lt;BR /&gt;&lt;A href="http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_id=18088.1&amp;amp;p_database_id=NOT" target="_blank"&gt;http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_id=18088.1&amp;amp;p_database_id=NOT&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;3.3) Identified Externally: --------------------------- In order for a database account to accept connections without a password the database logon must be created with an 'IDENTIFIED EXTERNALLY' clause. &lt;BR /&gt;&lt;BR /&gt;    Eg: CREATE USER OSUSER_SCOTT IDENTIFIED EXTERNALLY;         &lt;BR /&gt;&lt;BR /&gt;This will allow SCOTT to 'CONNECT /'.        This will NOT allow SCOTT to connect as OSUSER_SCOTT in any other manner&lt;BR /&gt;&lt;BR /&gt;    CREATE USER OSUSER_SCOTT IDENTIFIED BY XYZ;        &lt;BR /&gt;&lt;BR /&gt; The user must supply the username AND password to connect as the account has actually been created as requiring database authentication.         &lt;BR /&gt;&lt;BR /&gt;Ie: 'CONNECT /'     &lt;BR /&gt;            will *NOT* work&lt;BR /&gt;    'CONNECT OSUSER_SCOTT/XYZ'  &lt;BR /&gt;&lt;BR /&gt;will connect. If the OS_AUTHENT_PREFIX is set to OPS$ a user can connect in either manner if created with a password. This is more of a security risk as there are 2 ways to access the database account.&lt;BR /&gt;&lt;BR /&gt;      Eg: CREATE USER OPS$SCOTT IDENTIFIED BY XYZ;&lt;BR /&gt;         Allows the user to 'CONNECT /' or 'CONNECT OPS$SCOTT/XYZ'.</description>
      <pubDate>Sat, 20 Mar 2004 14:18:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224412#M893514</guid>
      <dc:creator>James A. Donovan</dc:creator>
      <dc:date>2004-03-20T14:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Why cannot user OS authentication in Oracle 8.1.7 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224413#M893515</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;i believe the missing parameter is in your init.ora.&lt;BR /&gt;&lt;BR /&gt;Modify it to:&lt;BR /&gt;&lt;BR /&gt;os_authent_prefix = "ops$"&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Mar 2004 01:17:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224413#M893515</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2004-03-22T01:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: Why cannot user OS authentication in Oracle 8.1.7 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224414#M893516</link>
      <description>os_authent_prefix = "" is already defined in the init.ora.&lt;BR /&gt;&lt;BR /&gt;As per the Oracle documentation:&lt;BR /&gt;OS_AUTHENT_PREFIX specifies a prefix that Oracle uses to authenticate users attempting to connect to the server. Oracle concatenates the value of this parameter to the beginning of the user's operating system account name and password. When a connection request is attempted, Oracle compares the prefixed username with Oracle usernames in the database. &lt;BR /&gt;&lt;BR /&gt;The default value of this parameter is OPS$ for backward compatibility with previous versions. However, you might prefer to set the prefix value to "" (a null string), thereby eliminating the addition of any prefix to operating system account names. &lt;BR /&gt;&lt;BR /&gt;sks</description>
      <pubDate>Mon, 22 Mar 2004 04:19:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224414#M893516</guid>
      <dc:creator>Sanjay Kumar Suri</dc:creator>
      <dc:date>2004-03-22T04:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: Why cannot user OS authentication in Oracle 8.1.7 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224415#M893517</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Add to init.ora the following strings:&lt;BR /&gt;&lt;BR /&gt;os_authent_prefix = ""&lt;BR /&gt;remote_os_authent = TRUE&lt;BR /&gt;&lt;BR /&gt;and restart the instance.&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Mar 2004 06:50:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224415#M893517</guid>
      <dc:creator>Victor Fridyev</dc:creator>
      <dc:date>2004-03-22T06:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: Why cannot user OS authentication in Oracle 8.1.7 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224416#M893518</link>
      <description>Be careful with setting REMOTE_OS_AUTHENT=TRUE...This causes the oracle server to allow anyone on the network to connect to the oracle account, not just users authenticated on the host OS...</description>
      <pubDate>Mon, 22 Mar 2004 17:05:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-cannot-user-os-authentication-in-oracle-8-1-7/m-p/3224416#M893518</guid>
      <dc:creator>Ken_109</dc:creator>
      <dc:date>2004-03-22T17:05:29Z</dc:date>
    </item>
  </channel>
</rss>

