Setup Ultra Search - CTXSYS schema in 9.2.0.6

Hello
I need help to setup UltraSearch Text,
I've look everywhere and I still can't find how setup the CTXSYS schema that allows ultra Search.
Any help is welcome
Rgds

Hi,
See if the following can help you in any way:
Oracle Ultra Search User's Guide Release 9.0.3
http://download.oracle.com/docs/cd/B10191_01/ultra.903/b10043/migrate.htm
Oracle® Application Server Portal Configuration Guide 10g (9.0.4)
http://www.deakin.edu.au/its/dba/oracle-doco/9.0.4.1/9.0.4_doc_library/portal.904/b13675/cg_srch.htm
Oracle Text Setup
http://www.informit.com/articles/article.aspx?p=408893&seqNum=3
Regards,
Naveed.

Similar Messages

  • How to install Ultra Search schemas WKSYS and WKPROXY

    I have oracle database 10gr2. I used custom installation. Now I want to add Ultra Search schemas WKSYS and WKPROXY. What should I do?
    help urgent

    If you want to use the hosted peopkebooks see follow doc.
    http://docs.oracle.com/cd/E17566_01/epm91pbr0/eng/psbooks/EnablingtheHelpLinkfromApplicationPages.pdf
    If you want to run peoplebooks locally, install it as described in the installation manual.

  • ULTRA SEARCH 10G 서버 콤포넌트를 수동으로 설치, 설치 해제하는 방법

    제품 : ORACLE SERVER
    작성날짜 : 2005-11-29
    ULTRA SEARCH 10G 서버 콤포넌트를 수동으로 설치, 설치 해제하는 방법
    =============================================
    PURPOSE
    이 문서는, Ultra Search 10G를 수동으로 설치하거나 설치 해제하는 방법을
    기술하고 있다.
    Explanation
    1. 수동 설치 절차
    1) Oracle Text와 JVM이 정상적으로 설치되어 있는지 확인한다. 관련된
    정보는 다음 문서에 기술 되어 있다
    Bulletin No: 22844 Oracle Text 10gR1의 수동 설치와, 설치 해제 방법
    2) OS 프롬프트에서 다음 디렉토리로 이동한다
    At the OS prompt, change to the following directory:
    Unix: $ORACLE_HOME/ultrasearch/admin
    Windows: $ORACLE_HOME\ultrasearch\admin
    3) JVM이 정상적으로 설치 되어 있는지 확인한다. Oracle JVM 설치 절차와 관련
    해더는 다음 문서를 참조한다 :
    Note 276554.1 <How to Reload the JVM in 10.1.0.X>
    4) SQLPlus를 사용하여, SYSDBA 권한을 가지고 SYS 계정으로 데이터베이스 연결한다.
    5) wk0install.sql SQL script를 실행시킨다.
    파라미터 요약:
    -- SYS = "&1" <== sys 유저 명: SYS
    -- SYSPW = "&2" <== sys 유저의 패스워드: (예 change_on_install)
    -- WKSYSPW = "&3" <== WKSYS 유저의 패스워드: (예 wksys)
    -- WK_TABLESPACE = "&4" <== WKSYS의 default tablespace: (예 SYSAUX)
    -- WK_TEMPTABLESPACE = "&5" <== WKSYS의 temporary tablespace: (예 TEMP)
    -- CONN_STRING = "&6" <== non-RAC instance 환경에서 Ultra Search를 설치할 경우
    null string을 지정 : (예 "")
    RAC 환경에서 설치할 경우 TNS descriptor: (예 <host name>:<port number>:<SID>
    - 또는 -
    (DESCRIPTION=(LOAD_BALANCE=yes)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)
    (HOST=cls02a)(PORT=3999)) (ADDRESS=(PROTOCOL=TCP)(HOST=cls02b)(PORT=3999)))
    (CONNECT_DATA=(SERVICE_NAME=acme.us.com)))" )
    -- PORTAL_USER = "&7" <== Portal 유저. Portal을 사용하지 않는다면 null string 입력: (예 "")
    -- LAUNCH_ANYWHERE = "&8" <== TRUE 또는 FALSE; Clustered File System (CFS)을 사용하는
    RAC일 경우에만 TRUE 지정한다. 그외의 경우 FALSE: (예 FALSE)
    다음과 같은 명령 실행을 통해 Ultra Search 데이터베이스 패케지를 설치한다:
    SQLPLUS> set echo on
    SQLPLUS> spool ultrasearch_inst.log
    SQLPLUS> @$ORACLE_HOME/ultrasearch/admin/wk0install.sql SYS change_on_install wksys SYSAUX TEMP "" "" FALSE
    SQLPLUS> spool off
    SQLPLUS> exit
    6) wk0install.sql 스크립트를 실행하는데 에러가 발생하지 않았다면 수동
    설치는 성공한 것이다.
    7) wk0install.sql 스크립트를 실행하여 설치 후에는 객체의 갯수를 확인한다
    SQL> SELECT COUNT(*) FROM DBA_OBJECTS
    WHERE OWNER = 'WKSYS';
    COUNT(*)
    351
    참고: 대략 351개의 객체가 생성되어야 한다.
    SQL> SELECT COUNT(*) FROM DBA_OBJECTS
    WHERE OWNER = 'WKSYS' AND STATUS = 'INVALID';
    COUNT(*)
    0
    참고: invalid 상태의 객체가 없아야 한다.
    2. 수동 설치 해제 절차
    1) Ultra Search Schema (WKSYS) 설치 해제와 관련된 절차는 9.2.x 매뉴얼에 기술된
    내용과 동일하다. (Bulletin No: 21563 ULTRA SEARCH 수동 설치 및 제거 (9.2.0.1)
    의 내용을 참고한다. )
    2) OS 프롬프트에서 다음 디렉토리로 이동한다.
    Unix: $ORACLE_HOME/ultrasearch/admin
    Windows: $ORACLE_HOME\ultrasearch\admin
    3) SQLPlus를 사용하여, SYSDBA 권한을 가지고 SYS 계정으로 데이터베이스 연결한다.
    4) WKSYS 유저가 데이터베이스에 연결 된 상태가 아닌지 확인한다. 만약 WKSYS 사용자가
    연결된 상태라면, 해당 세션을 죽이거나, 세션이 종료 될 때 까지 기다린다:
    SELECT SID, SERIAL#, OSUSER FROM V$SESSION
    WHERE USERNAME = 'WKSYS';
    5) wk0deinst.sql SQL 스크립트를 실행시킨다.
    파라미터 요약:
    -- SYS = "&1" <== sys 유저 명: SYS
    -- SYSPW = "&2" <== sys 유저의 패스워드: (예 change_on_install)
    -- CONN_STRING = "&3" <== non-RAC instance 환경에서 Ultra Search를 설치할 경우
    null string을 지정 : (예 "")
    RAC 환경에서 설치할 경우 TNS descriptor: (예 <host name>:<port number>:<SID>
    - 또는 -
    (DESCRIPTION=(LOAD_BALANCE=yes)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)
    (HOST=cls02a)(PORT=3999)) (ADDRESS=(PROTOCOL=TCP)(HOST=cls02b)(PORT=3999)))
    (CONNECT_DATA=(SERVICE_NAME=acme.us.com)))" )
    Ultra Search 데이터베이스 패키지를 다음 명령을 이용하여 설치 해제한다:
    SQLPLUS> set echo on
    SQLPLUS> spool ultrasearch_deinst.log
    SQLPLUS> @$ORACLE_HOME/ultrasearch/admin/wk0deinst.sql SYS
    change_on_install ""
    SQLPLUS> spool off
    SQLPLUS> exit
    6) 만약 wk0deinst.sql 스크립트를 실행하는 과정에서 에러가 발생하지 않았다면, WKSYS에
    대한 수동 설치 해제는 성공적으로 종료된 것이다.
    Example
    Reference Documents
    Note 283292.1 How to Manually Install and Uninstall Ultra Search 10G Server Components

  • Ultra Search Configuraiton Assistant Failed

    Hello:
    This is the error that occurs when I install the 9.0.4 AS into a 10g database. I run the repository CA first to populate the db and then procced to install the infrastructure. It installs and links but when the configuration assistant goes through the list it always fails at the Ultra Search: Here is the error found in the cfgtoollogs/isearchca.log file. The "User null" is very interesting as I user the sys user to connect to the OID on port 3060 and that is working fine.
    Failed to setup the OID connnection info.
    java.sql.SQLException: ORA-20000: Oracle Ultra Search error WKG-11609: Failed to verify Ultra Search instance entries in OID.
    User-Defined Exception
    WKG-11601: Failed to connect to the OID. Host: oracle-as.techlink.com Port: 3060 User: null
    ORA-06512: at "WKSYS.WK_ERR", line 179
    ORA-06512: at line 1 at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:189) at
    oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:242) at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:554) at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1478) at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:888) at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2076) at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1986) at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2697) at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:457) at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:387) at oracle.ultrasearch.config.OIDConfig.configureInstances(OIDConfig.java:796) at oracle.ultrasearch.config.OIDConfig.createBackendEntries(OIDConfig.java:910) at oracle.ultrasearch.config.OIDConfig.main(OIDConfig.java:1521)
    java.sql.SQLException: ORA-20000: Oracle Ultra Search error WKG-11609: Failed to verify Ultra Search instance entries in OID. User-Defined Exception
    Any ideas?
    [email protected]

    This problem sounds specific to Oracle Ultra Search. It would be worth posting your question on to the dedicated Ultra Search Forum
    Forums Home » Oracle Technology Network (OTN) » Products » Database » Ultra Search

  • Oracle Ultra Search Install Error

    Hi:
    I tried to install Oracle Ultra Search in 10g, but received an error below. I did enter all 19 required params
    Thanks for your help!
    ============== argument list
    OH=$ORACLE_HOME
    CONN_STRING=@ordoct1
    SYS=sys
    SYSPW=XXXXXXX
    SYSROLE=as sysdba
    WKSYSPW=XXXXXXX
    WK_TABLESPACE=
    WK_TEMPTABLESPACE=
    PORTAL_USER=
    LAUNCH_ANYWHERE=
    INSTALL_TYPE=
    PSEP=
    JDBCDRIVER_PATH=
    JDBCNLS_PATH=
    JAVA_EXE_PATH=
    CTXHX=
    JDBC_CONNSTR=
    JDBC_CONNSTR_NODE=
    LOH=
    ==================
    Connected.
    ====== User is SYS
    SP2-0310: unable to open file "/ultrasearch/admin/wk0csys.sql"
    BEGIN dbms_registry.loading( 'WK', 'Oracle Ultra Search', 'VALIDATE_WK', 'WKSYS', dbms_registry.schema_list_t('WKPROXY','WK_TEST')); END;
    ERROR at line 1:
    ORA-39706: schema 'WKSYS' not found
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_REGISTRY", line 71
    ORA-06512: at "SYS.DBMS_REGISTRY", line 450
    ORA-06512: at line 1
    SP2-0306: Invalid option.
    Usage: CONN[ECT] [logon] [AS {SYSDBA|SYSOPER}]
    where <logon> ::= <username>[<password>][@<connect_identifier>] | /
    ====== User is SYS
    SP2-0310: unable to open file "/ultrasearch/admin/wk0loadjava.sql"
    ... load wksys
    SP2-0310: unable to open file "/ultrasearch/admin/wk0inst.sql"
    ... set crawler classpath
    SP2-0310: unable to open file "/ultrasearch/admin/wk0cpath.sql"
    begin
    ERROR at line 1:
    ORA-39705: component 'WK' not found in registry
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_REGISTRY", line 614
    ORA-06512: at line 2
    Connected.
    ====== User is SYS
    ... create the default instance
    SP2-0310: unable to open file "/ultrasearch/admin/wk0definst.sql"
    ... checking for invalid objects... see list below
    ================== list start
    ================== list end
    ==================== End of Installation ====================
    ===============================================================

    Hi,
    You have to use in this way:
    sqlplus /nolog @$ORACLE_HOME/ultrasearch/admin/wk0setup.sql $ORACLE_HOME "@<SID>" "sys" <sys-password> "as sysdba" wksys wksysts wksyststmp "portal" false "oui" ':' $ORACLE_HOME/jdbc/lib/classes12.zip $ORACLE_HOME/jdbc/lib/nls_charset12.zip $ORACLE_HOME/jdk/bin/java $ORACLE_HOME/ctx/bin/ctxhx '<host>:<port>:<SID>' '<host>:<port>:<SID>' $ORACLE_HOME

  • Can't apply Ultra Search to an upgraded Oracle Home. Do I have any options?

    Hi
    I've made a mistake!!
    I created an Oracle Home, upgraded it to 10.2.0.4 and then created a new DB. This now contains SOA Suite and Content Management users which is working great.
    I now need to add Ultra Search to this DB, but the install for this won't work as the installer expects a 10.2.0.1 home. Anyway, it probably wouldn't be a good idea anyway I would have thought as it would apply 10.2.0.1 software to a more recent version.
    So, not being a DBA, do I have any options?
    For example, I thought about creating a new home, adding all the extra software and then upgrading the home to 10.2.0.4. Then, could I clone the DB to this new home?
    Any advice would be most appreciated.....
    Many thanks
    Chris

    I can confirm that Ultra search cannot be installed by dbca in 10.2.0.4 database. It complains about invalid objects during installation in the created schema. Investigation showed up its some wrapped plsql package implementations that cannot be compiled.
    When installing first 10.2.0.1 db, then patching to 10.2.0.3, then installing companion 10.2.0.1 and patching companion again to 10.2.0.3, Ultra search installation works in dbca.
    Ultra search is needed for example by metadata creation assistant 10.1.4 (for Oracle internet directory 10.1.4). So Oracle internet directory cannot be installed on 10.2.0.4. Oracle probably didn't test this possibility

  • Registering Portal in Oracle Ultra Search

    Hi,
    I am in the process of setting up Oracle Ultra Search. I have followed the documentation down as far as Configuring Ultra Search to Index Portal Pages and I get to the point where I am adding the OracleAS Portal registration details.
    I am not sure what my URL base should be, I have tried several combinations of
    http://<hostname>:<port>/pls/portal/PORTAL
    http://<hostname>:<port>/pls/portal/portal
    but I get the same error every time when I go to register the portal.
    Oracle Ultra Search Error
    Could not retrieve data from Oracle Portal. Make sure that the URL base is correct and that the portal is operational.
    My Portal is up and running at (http://<hostname>/portal/page/portal/ultrasearch)
    What should my URL base be ?
    Thanks,

    Reference: http://download-west.oracle.com/docs/cd/B14099_19/portal.1014/b19305/cg_monit.htm#CHDFEIED
    In SES10.1.8, it says URL base format is <protocol>://<host>:<port>/pls/<portal DAD>/<portal schema>, however it is confusing.
    The following is applicable to Portal 10.1.4:
    You may get some clue by going Administer tab -> Portal -> Portal Service Monitoring -> Portal DAD Setting -> Database Connection
    In my setting, I see,
    DAD Name of Location = <font color=green>/pls/portal</font>
    Database username = <font color=pink>portal</font>
    The correct combination that works is:
    http://portal.machine.com:7778/portal<font color=green>/pls/portal</font>/<font color=pink>portal</font>

  • Error while installing Oracle Ultra Search on DB for IDM

    Dear All,
    I need to install IDM-101401 on HPUX B.11.31 Itanium machine. i installed database (10201) and applied Patchset_10204. as a pre-requisite now i am trying to install Oracle Ultra Search (on the same oracle_home) from companion directory of DB10201 Disk1. i amended oraparam.ini to support B.11.31 before running installer.
    After 83% of installation progress, below error is thrown.
    installActions2011-11-15_07-54-45AM.log
    INFO: 11/15/11 7:58:04 AM GMT04:00: Starting install Install Phase 1 of component Oracle Ultra Search Server Rdbms+
    INFO: Calling Action fileActions10.2.0.3.0  copyFile
    +     selectedNodes = null+
    +     source = /u01/app/oracle/product/OID/UAT2OIDDB/ultrasearch/webapp/ultrasearch_admin.ear+
    +     destination = /u01/app/oracle/product/OID/UAT2OIDDB/oc4j/j2ee/oc4j_applications/applications/ultrasearch_admin.ear+
    +     permissions = null+
    +     owner = null+
    +     group = null+
    SEVERE: Abnormal program termination. An internal error has occured. Please provide the following files to Oracle Support :
    +"/u01/app/oracle/oraInventory/logs/installActions2011-11-15_07-54-45AM.log"+
    +"/u01/app/oracle/oraInventory/logs/oraInstall2011-11-15_07-54-45AM.err"+
    +"/u01/app/oracle/oraInventory/logs/oraInstall2011-11-15_07-54-45AM.out"+
    INFO: User Selected: Yes/OK
    by seeing above error, i tried copying ultrasearch_admin.ear file manually and tried but no luck.
    LOGS_
    oraInstall2011-11-15_07-54-45AM.err
    Exception java.lang.NoSuchMethodError: oracle.sysman.oii.oiix.OiixFileOps.getExplicitLibPerms()Ljava/lang/String; occurred..
    java.lang.NoSuchMethodError: oracle.sysman.oii.oiix.OiixFileOps.getExplicitLibPerms()Ljava/lang/String;
    +     at copyActionHelper.copyFile(copyActionHelper.java:1664)+
    +     at copyActionHelper.copyFileFromStream(copyActionHelper.java:722)+
    +     at copyActionHelperux.commonCopyFileAction(copyActionHelperux.java:502)+
    +     at copyActionHelperux.installCopyFileAction(copyActionHelperux.java:186)+
    +     at sscopyFileux.installAction(sscopyFileux.java:84)+
    +     at oracle.sysman.oii.oiis.OiisCompActions.doActionWithException(OiisCompActions.java:2063)+
    +     at oracle.sysman.oii.oiis.OiisCompActions.doActionImpl(OiisCompActions.java:1720)+
    +     at oracle.sysman.oii.oiis.OiisCompActions.doAction(OiisCompActions.java:927)+
    +     at Components.oracle.isearch.rdbms.v10_2_0_1_0.CompActions.doAction(Unknown Source)+
    +     at Components.oracle.isearch.rdbms.v10_2_0_1_0.CompInstallPhase1.doActionP1copyFile6(Unknown Source)+
    +     at Components.oracle.isearch.rdbms.v10_2_0_1_0.CompInstallPhase1.stateChangeActions(Unknown Source)+
    +     at Components.oracle.isearch.rdbms.v10_2_0_1_0.CompActions.stateChangeActions(Unknown Source)+
    +     at oracle.sysman.oii.oiif.oiifw.OiifwInstallPhaseWCCE$OiifwComponentIP1WCCE.performStateChangeActions(OiifwInstallPhaseWCCE.java:1611)+
    +     at oracle.sysman.oii.oiif.oiifw.OiifwInstallPhaseWCCE$OiifwComponentInstallPhaseWCCE.doOperation(OiifwInstallPhaseWCCE.java:1056)+
    +     at oracle.sysman.oii.oiif.oiifw.OiifwInstallPhaseWCCE$OiifwComponentIP1WCCE.doOperation(OiifwInstallPhaseWCCE.java:1580)+
    +     at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:171)+
    +     at oracle.sysman.oii.oiif.oiifw.OiifwInstallPhaseWCCE.doOperation(OiifwInstallPhaseWCCE.java:588)+
    +     at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:171)+
    +     at oracle.sysman.oii.oiif.oiifw.OiifwActionsPhaseWCDE.doOperation(OiifwActionsPhaseWCDE.java:606)+
    +     at oracle.sysman.oii.oiif.oiifb.OiifbLinearIterator.iterate(OiifbLinearIterator.java:147)+
    +     at oracle.sysman.oii.oiic.OiicInstallSession$OiicSelCompsInstall.doOperation(OiicInstallSession.java:3772)+
    +     at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:171)+
    +     at oracle.sysman.oii.oiic.OiicPullSession.doOperation(OiicPullSession.java:1273)+
    +     at oracle.sysman.oii.oiic.OiicSessionWrapper.doOperation(OiicSessionWrapper.java:289)+
    +     at oracle.sysman.oii.oiic.OiicInstaller.run(OiicInstaller.java:546)+
    +     at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:929)+
    +     at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:866)+
    Please help me in this.
    few doubts
    Is it possible to go ahead for IDM installation without having ultra search enabled in database?
    any other way around that i can have ultra search?
    after applying patchset on basic version(10201) i am installing ultra search from basic version (as patchset doesnt have companion dir) on upgraded version(10204) causing this issue?
    Thanks,

    my guess was correct. the issue was last point.
    After applying patchset on basic version(10201) i am installing ultra search from basic version (as patchset doesnt have companion dir) on upgraded version(10204) causing this issue?
    it was resolved by uninstalling DB, and again installing from basic version (10201) then went to companion CD, installed ultrasearch on same oracle_home. it got installed without any issue.
    then upgraded to 10204. then created DB, and enabled ultrasearch by DBCA.
    let me know in case of more details required.

  • Errors in Ultra Search crawler's log file

    Hi all,
    I'm trying to configure Ultra Search to do advanced search on a set of attributes of my Portal items.
    After executed Synchronization Schedule in the Ultra Search Administration Tool, I found these in the Crawler Progress Summary:
    Documents to Fetch 0
    Documents Fetched 284
    Document Fetch Failures 0
    Documents Rejected 0
    Documents Discovered 284
    Documents Indexed 59
    Documents non-indexable 225
    Document Conversion Failures 0
    The number of non-indexable documents are 225 while the indexed documents are only 59. Then I looked into the Crawler's log file and found that all the almost processes tried to index Portal items got errors. The errors look like:
    http://winas10g.tinhvan.com/pls/portal/PORTAL.wwsbr_srchxml.execute?p_action=generate_item&p_thingid=276935&p_siteid=753&p_result_lang=en: Portal server returned an error message.
    Documents to process = 0
    Error message returned from Portal server is: User-Defined Exception.
    The successful processed documents look like:
    Documents to process = 186
    Processing http://winas10g.tinhvan.com/pls/portal/PORTAL.wwsbr_srchxml.execute?p_action=generate_item&p_thingid=276386&p_siteid=753
    Total documents successfully processed = 86
    Documents to process = 185
    Then when I performed search, I just can find the text that appear directly on Portal pages with URL address format: http://host:port/pls/portal/url/PAGE/pagegroup_name/page_name.
    Is there any error with my Utra Search configuration here? How can I index all the Portal items along with their attributes?
    Thanks,
    Vietdt

    Liya
    The log file for the crawler schedule should be explicitly listed in the information for the schedule. Please check the information for that schedule.
    This log file will be located in the log directory that you've specified in the "crawler" tab.
    Please locate the log file and let us know what you see in that.
    thanks
    edward

  • Ultra Search query

    Question on what the syntax should be to perform a search query via Ultra Search revolving around 3 terms ("solaris","access control","buffer overflow").
    The search result should return documents which contain the words ("solaris" and "access control") OR the words ("solaris" and "buffer overflow").
    Currently can't even do ("solaris" and "access control"). When trying I get documents matching "solaris" | "access" | "control".
    Any advice appreciated.

    PS:
    you'll get documents only contains "solaris" too, but those should have very low score compare to the others,
    assuming you have documents containing the other terms.
    if you want to do (solaris and "access control") do
    solaris "access control"

  • Problem in installing Ultra Search

    Hi all,
    We are facing problem while installing Ultra Search for Oracle 9i in Sun Solaris server. The Ultra Search documentation says that the middle tier component includes the following :
    1. Ultra Search admininstration tool
    2. Ultra Search Java query API
    3. Ultra Search Java server page sample query qpplication
    But we are unable to see it either in the Oracle Universal Installer's list of installed components or in the database server's file system. The documentation says that for deploying the Ultra Search Administration Tool on a Third Party Middle Tier, the ear file :
    $ORACLE_HOME/ultrasearch/webapp/ultrasearch_admin.ear
    should be present. But we cannot find the directory "webapp" at that location.
    Does the ear file already get extracted during installation ?
    Are the three components listed above shown in the Oracle Universal Installer's list ?
    Where can we get the ear file for installation on a Third Party Application Server (iPlanet Server) ?
    Can anyone outline the Installation process for Ultra Search ?
    Thanks in advance.

    Hi,
    I assume you are installing Oracle 9iR2.
    It seems OUI did not install most of the Ultra Search files. Can you check in your
    oraInventory/Components directory for oracle.isearch.*?
    You should see
    oracle.isearch.client
    oracle.isearch.is_common
    oracle.isearch.server
    If not, these components have not been installed. Please check your installation procedure
    to make sure the following are checked:
    Oracle Ultra Search Middle-Tier
    Oracle Ultra Search Common Files
    Oracle Ultra Search Server
    follow up with me if you still have problems.
    David

  • Ultra Search Portlet Configuration Problem

    Guten Tag,
    we are using OracleAS 10g Rel. 2 Portal. I've registered the Provider for Ultra Search.
    Now I understand that I have to add a data source in the OC4J_Portal configuration file "data-sources.xml"
    I want to make Ultra Search crawl and search our Portal.
    So I need to create a news Instance with the following entries (also for the data-sources.xml):
    - username and password are the Oracle Ultra Search instance owner's database user name and password.
    where do I find these info? It all has been done automatically by the RepCa when installing the IASPortal... ?- database_host is the host name of the back end database computer.
    is this the URL of our portal server (with or without /pls/portal/)?- oracle_port is the port to the user's Oracle Database.
    the standard Port of the Oracle Listener (1521)?- oracle_sid is the SID of the user's Oracle Database.
    Where do I get the SID of Portal DB after Installation?Thx,
    Gerhard

    Hi echee!
    I don't know what happened in the weekend, but now the Ultra Search portlet doesn't throws any exception.
    It seems works correctly.
    Maybe the servers was restarted or the sheduled crawler recovered something in the indexed data.
    I'm totally surprised.
    I checked the log files, but I didn't find any failure message.
    Now I must build a new Search Portlet for our portal, and I will contact you, if the problem returns.
    Csaba.

  • Ultra Search - Filtering failed

    Hi!,
    I'm using Oracle 9i and Ultra Search on Windows 2000, the
    crawler is able to crawl the files using file:// protocl, but
    the log says that filerting failed for PDF and MS - Word
    documents, also the search for these documents is not working.
    It is urgent as we have to soon implement this..
    Can some body help
    Arun
    [email protected]

    Try to verify the Inso filter ctxhx is working in your
    environment; manually do the filtering from the
    command line. for example:
    ctxhx <input file> <output file> ascii iso8859-1 H Meta
    where ctxhx is located under $ORACLE_HOME/ctx/bin/ directory

  • Schedule failed launching in Ultra Search

    I am trying to launch a crawler immediately from the Schedule screen after created Ultra Search instance and file data source. The status is showing "Launching". After a while, I click Refresh status, the status is showing "Failed". Anyone knows why schedule failed launching? Is there any error log file that I can check to find out why it failed?
    Thanks in advance.

    Liya
    The log file for the crawler schedule should be explicitly listed in the information for the schedule. Please check the information for that schedule.
    This log file will be located in the log directory that you've specified in the "crawler" tab.
    Please locate the log file and let us know what you see in that.
    thanks
    edward

  • Error in Ultra Search in portal. listener refused the connection

    hi
    I implement a portal.I wanted to use ultra search(portlet) in my pages. so I defined an user and graned access to him. I created a provider for ultra saerch and schedule too. then add ultrasearch in page. it worked currectly but now give an errr such this :
    oracle.ultrasearch.query.SearchException: WKG17005: connection failure: Listener refused the connection with the following error: ORA-12514, TNS:listener does not currently know of service requested in connect descriptor The Connection descriptor used by the client was: //IP Server:1521/ORCL
    How can I solve this problem?
    please help me

    Went to the control panel administrative tool and services
    After I did that I got this error Failure Io exception The Network Adapter could not establish the connection
    Also, I got this in the command prompt
    lsnrctl service
    LSNRCTL for 32-bit Windows: Version 11.1.0.6.0 - Production on 07-JUL-2012 15:35
    :19
    Copyright (c) 1991, 2007, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 2: No such file or directory
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=co-67349b991dc4)(PORT=15
    21)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 61: Unknown error
    lsnrctl start
    LSNRCTL for 32-bit Windows: Version 11.1.0.6.0 - Production on 07-JUL-2012 15:37
    :41
    Copyright (c) 1991, 2007, Oracle. All rights reserved.
    Starting tnslsnr: please wait...
    Failed to start service, error 1053.
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    lsnrctl status
    LSNRCTL for 32-bit Windows: Version 11.1.0.6.0 - Production on 07-JUL-2012 15:40
    :27
    Copyright (c) 1991, 2007, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 2: No such file or directory
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=co-67349b991dc4)(PORT=15
    21)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 61: Unknown error

Maybe you are looking for