My portal configuration hangs at 13% !!!

Hi folks!
I installed the oracle 8i database and an oracle 9iAS
(1.0.2.2.0) on windows nt 4.0. Unfortunately the portal
configuration hangs at 13% and that's what the install.log says:
Silent Mode : false
Portal Schema : portal30
Portal DAD : portal30
SSO Schema : portal30_sso
SSO DAD : portal30_sso
Listener Hostname : SERVER03
Listener Port set from Command Line :80
Connect String : server03:1521:server03
SYS Password : ********
Default TableSpace : USERS
Temporary TableSpace : TEMP
Document TableSpace : USERS
Logging TableSpace : USERS
Demo Install Option : TRUE
Log Verbose Mode : FALSE
Install Reports Integration : FALSE
Install OWA : TRUE
INSTALL : Database Version : 8.1.6
INSTALL_DEBUG : Tablespace size: 189176
STEP 1 : Installing Obfruscation Toolkit
INSTALL_ACTION : installCatPkgs() :..\..\bin\sqlplus
SYS/<sys_password>@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=
(PROTOCOL=TCP)(HOST=server03)(PORT=1521)))(CONNECT_DATA=
(SID=server03))) @..\..\portal30\admin\plsql\cat\catload.sql
STEP 2 :Installing PL/SQL Web Toolkit (OWA) packages
INSTALL_ACTION :installOWA() :..\..\bin\sqlplus
SYS/<sys_password>@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=
(PROTOCOL=TCP)(HOST=server03)(PORT=1521)))(CONNECT_DATA=
(SID=server03))) @..\..\portal30\admin\plsql\owa\owaload.sql
owaload.log
STEP 3Installing Portal VPD Context packages
INSTALL_ACTION: installVpdPkgs() :..\..\bin\sqlplus
SYS/<sys_password>@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=
(PROTOCOL=TCP)(HOST=server03)(PORT=1521)))(CONNECT_DATA=
(SID=server03))) @..\..\portal30\admin\plsql\wwhost\vpdctx.sql
INSTALL_ACTION: installVpdPkgs() :..\..\bin\sqlplus
SYS/<sys_password>@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=
(PROTOCOL=TCP)(HOST=server03)(PORT=1521)))(CONNECT_DATA=
(SID=server03))) @..\..\portal30\admin\plsql\wwhost\logintrg.sql
STEP 4 : Creating Portal Schema...
INSTALL_ACTION:installGlobalComponents() : ..\..\bin\sqlplus
SYS/<sys_password>@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=
(PROTOCOL=TCP)(HOST=server03)(PORT=1521)))(CONNECT_DATA=
(SID=server03))) @..\..\portal30\admin\plsql\wwv\wdbisys.sql
neu_portal USERS TEMP wvinssys.log
INSTALL_ACTION:installGlobalComponents() : ..\..\bin\sqlplus
SYS/<sys_password>@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=
(PROTOCOL=TCP)(HOST=server03)(PORT=1521)))(CONNECT_DATA=
(SID=server03))) @..\..\portal30\admin\plsql\wws\cruser.sql
neu_portal neu_portal USERS TEMP us USERS
ORA-00439: Funktion nicht aktiviert: N-Tier
authentication/authorization
Errors encountered in the Install process. Installation Aborted.
Maybe some of you experienced the same error?! Just in case you
know what do do please let me know. Thanks!

Try this link:
http://technet.oracle.com/products/iportal/htdocs/portal_troubles
hooting.htm#_General_Troubleshooting_Techniques
you shuld find an answer there...
Best of luck
p.s.
Try configuring your database SGA as portal requires...

Similar Messages

  • Portal Configuration Assistant Installation

    I tried installing IAS 9i in another machine where there is no Oracle database. I was successful until the Portal Configuration Tool. It seems to hung at about 22%. I checked the install.log. On the first part, it was able to obtain connection to another machine where my database is. But along the script where it is installing sequences, it lost its connection. Any ideas.

    I have the same problem in a diffrent environment. My database (8.1.7) is on the same machine (NT4 SP5) as the 9iAS, which was installed correctly. The Portal Configuration Assistant hangs at 50%, 67%, ... with the "not connected to oracle" error in the log. And the database OracleServicePORTAL (my database) is terminated without any error message. Does your DB stay alive?
    I got two hints, but they didn't solve the problem. Maybe they help you.
    1) db_block_size must be >=8k
    2) The Default Tablespace must be at least 150MB, not 100MB as told in the manual.
    null

  • Portal install hangs at 61%

    I have install ias9 on several machines using different Linux distributions and they all seem to hang at 61% of the portal configuration assistant install. I am now trying it on a P-III 1Ghz with 512MB ram and it has been sittingat 61% for about 6 hours. CPU usage still at 100%.
    null

    I too downloaded the 9iAS installation for Linux from OTN. I am also experiencing the same problem you are...here's an excerpt from the $ORACLE_HOME/assistants/opca/install.log:
    ...Importing component: ID = 1076115684 Name = RPT_PDETAILS Owner = PEOPLE_APP Type = AREPORT
    ...Importing component: ID = 1065830443 Name = RPT_SEARCH Owner = PEOPLE_APP Type = AREPORT
    ... Installing SCOTT Data
    ...Building demonstration tables. Please wait.
    ...attempting to create user scott/tiger
    It appears that SCOTT has already been created, data installed, and then tries to create the user again...SCOTT already exists and the install hangs.
    What I did to get around this is open a separate xterm and executed:
    tail -f $ORACLE_HOME/assistants/opca/install.log
    Then when it got to the point shown above where it was trying to create SCOTT I opened up another xterm and executed:
    ps -ef
    It showed me (excerpt):
    oracle 31208 31197 0 00:38 pts/2 00:00:02 /u02/app/oracle/jre/1.1.8/bin/li
    oracle 31209 31197 0 00:38 pts/2 00:00:16 /u02/app/oracle/jre/1.1.8/bin/li
    oracle 31211 31197 0 00:38 pts/2 00:00:00 /u02/app/oracle/jre/1.1.8/bin/li
    oracle 31286 31211 0 01:27 pts/2 00:00:01 ../../bin/sqlplus
    oracle 31303 1 1 01:52 ? 00:00:00 xterm -fg white -bg black -sl 20
    oracle 31305 31303 0 01:52 pts/1 00:00:00 bash
    oracle 31315 31305 0 01:53 pts/1 00:00:00 ps -ef
    I assumed that process 31286 was the one trying to recreate SCOTT. I double checked that the user did exist by querying DBA_USERS from another box and the user did in fact exist. So I killed process 31286 with a gracefull exit request:
    kill 31286
    ...and the install continued until 100% completion. Note that after the install was completed, the processor on my database box was pegged at 100%. I had to kill the process on the database side that was trying to recreate SCOTT. Looks like the Portal install script isn't quite right for the 9iAS for Linux install I pulled down from OTN.
    I have yet to attempt to connect to the Portal installtion as it was late and I needed to get some sleep. I will try to connect to the Portal installation this evening to determine if it was a success.
    I hope this information helps.
    My question to Mr. Lincks is: Have you perform this installation on the Linux platform? If so, was the installation performed from media supplied by Oracle? I too have performed the installation several times on Solaris and on NT with downloads from OTN, however, I did not have a problem like this one from the Linux download.
    Thanks,
    Mike

  • ISE 1.2 AUP Multi-Portal Configuration

    Currently we have ISE 1.2 configured using a multi-portal configuration.  We use a guest portal for both Guest Access and for devices we consider non-compliant employee.  Guest users are authenticated against an inernal user database in ISE, and the company owned devices auth against AD.  If we login with a guest account that was created using the sponsor portal, we do not get the acceptable usage policy to check before getting access. If we login using the AD account, we do get the Acceptable Usage Policy to check before getting access.  It appears this is the same portal, so why do we not get it for both?

    for guest AUP configuration
    AUP for posture assesment config

  • 9iAS 1.0.2.2/Portal 3.0.9 - Installation Error at "Portal Configuration Assistant"

    I was installing the iAS1.0.2.2 and at the Portal Configuration Assistant, at the 23% I received the following error:
    "An unexpected error ocurred during the Install Process. Check the install.log ....."
    (FYI this is the second time I try to install it and in both cases I received the same error at the same point, so I decided to ask for help)
    At the end of the Install.log is the following:
    =====================
    STEP 7 : Installing WWC layer Components
    INSTALL_ACTION : installWWC(): ..\..\bin\sqlplus portal30/portal30@<DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)HOST=administrator)(PORT=1521)))(CONNECT_DATA=(SID=virtual))) @..\..\portal30\admin\plsql\wwc\wwcinst.sql portal30 USERS TEMP wvinswwc.log USERS USERS portal30_NULL portal30_sso portal30_DEMO
    ORA-00439: feature not enabled: Function-based indexes
    Errors encountered in the Install process. Installation Aborted
    =========================
    I noticed during the installation, before the Configuration Assistant (aprox at 97%), the installation opened a DOS session and I could see some errors with some Indexes but I don't know in which Log are registered. maybe it can help to troubleshoot my above problem?
    Operating System: NT4 SP6
    Database: 8.1.7.0 standard edition
    iAS 1.0.2.2 standard edition
    both under the same machine
    Let me know if there is any other info I can provide.
    Tks in advance!

    There has been some confusion around certification on SE over the past week. I want to clarify the situation.
    We discovered an issue with the Portal on SE last week. We inadvertently used function based and bitmapped indexes (EE only features). This issue has been masked to date because the install proceeded normally after the errors were raised. In 3.0.9 we made the install more strict in that it will stop by default if it hits an unexpected error.
    On further research, we have determined that these errors have little or no impact on the general functioning of the product and as such are maintaining the position that Portal 3.x is indeed certified on 8.1.7
    Standard Edition.
    There is unfortunately a necessary work around to the install issue (which we will rectify as soon as possible). In order to install on SE, you must execute the Oracle Portal Configuration Assistant (OPCA) from
    the command line and specify the "verbose" mode (see next post). In this mode, the errors are ignored and the install proceeds appropriately.
    Regards,
    The Oracle9iAS Portal Development Team

  • Error in portal configuration assistant

    Hi,
    While trying to install Oracle instant portal, I am getting an error during portal configuration assistant step.
    ORA-12154 : tns cannot resolve conn ...
    What do I need to do in order to fix this error? I see a tnsnames.ora in 2 locations:
    {oracle_home}/infra/network/admin
    {oracle_home}/portal/network/admin
    What is the reason for this error and what needs to be done to fix it.
    thanks,
    Samit

    The services of infrastructure instance must be up before installing Portal or other Middle Tier instances.

  • ITS Host Name in portal configuration

    I am in need of ITS Host Name in portal configuration,but i dont know what exactly i have to give for that.pls suggest me.
    Thanks
    Ramesh

    ITS host name is :your portal name:8001

  • Business Intelligence middle tier portal configuration failed

    Hello,
    10g iAS Infrastructure Metadata repository was installed into existing 10g database at Machine A (Linux). Identity Management middle tier was installed at Machine B (Linux) without any problem. BI MT Software copied and linked at Machine B successfully. opca failed in configuration phase of installation with this error:
    ---8<---
    Syndication and UDDI Configuration
    ERROR :Unhandled exception. Configuration aborted. Main reason: Version table could not be found.
    oracle.syndicate.install.InstallException
    at oracle.syndicate.install.OSSCA.checkSchemaCompatability(OSSCA.java:1149)
    at oracle.syndicate.install.OSSCA.getInstanceID(OSSCA.java:1058)
    at oracle.syndicate.install.OSSCA.configSyndAppEntity(OSSCA.java:919)
    at oracle.syndicate.install.OSSCA.installDefaultOIDData(OSSCA.java:622)
    at oracle.webdb.config.SyndicationWiring.doSyndicationConfiguration(Unknown Source)
    at oracle.webdb.config.PortalConfigAction.installAction(Unknown Source)
    at oracle.webdb.config.PortalConfigAssistant$1.runTask(Unknown Source)
    at oracle.ewt.thread.TaskScheduler.runTask(Unknown Source)
    at oracle.ewt.thread.TaskScheduler.processTask(Unknown Source)
    at oracle.ewt.thread.TaskScheduler$TaskQueue.run(Unknown Source)
    at oracle.ewt.timer.Timer.doRun(Unknown Source)
    at oracle.ewt.timer.Timer.run(Unknown Source)
    at java.lang.Thread.run(Thread.java:534)
    ERROR :Unhandled exception. Configuration aborted. Main reason: Version table could not be found.
    OPCA_ERROR : Syndication Server Configuration Assistant Failed.
    Portal configuration aborted....
    ---8<---
    I think something wrong in portal metadata installed by RepCA. What is the name of "Version table"? Can I use original (imported from "new database repository") part of portal schema?
    Thanks in advance,
    Wit.

    btw,
    google:// and metalink:// brings no hits for solution or even mention of problem (forums:// too as always :c/), so I've try to:
    1. Install MT BI software on Machine B (ignoring opca errors done OK).
    2. Install Infrastructure metadata repository at Machine C (db v90150 done OK).
    3. Implement the metalink://note.276688.1 (in process, report follows).
    btw2,
    JAVA$CLASS$MD5$TABLE is only table absent in RepCA's portal schema (in comparing with usual way installation). Treated it as a "version table" by opca?

  • SAP HANA Cloud Portal : Configuration of HCP with Cloud For Customer

    Hi Experts,
    In our organization we have C4C system we have requirement to configuration with SAP HANA cloud Portal.
    1) What are the steps require in Cloud For Customer?
    2) What are the steps require to access the HANA Cloud Portal and Configure it?
    3) How to integrate Cloud For Customer with HCP?
    4) How to create Websites and Add the Widget for Tickets and Service request created from cloud for customer?
    Any Documentation for this Cloud For Customer and HANA Cloud Portal Configuration please share with me.
    Many Thanks,
    Mithun

    hi,
    Please find below the avilable public information about Support site edition -
    Support Site Overview : http://scn.sap.com/docs/DOC-50078
    Support Site (blog post)http://scn.sap.com/community/hana-cloud-portal/blog/2013/12/12/deliver-exceptional-customer-service-with-cloud-based-support-portal
    CAC Admin guide -  (search for configuring portal) - http://help.sap.com/saphelp_sapcloudforcustomer/en/PDF/EN-2.pdf
    Cloud Portal configuration guide - SAP Mobile Documents
    Soon we will put all public guides in a central location.
    Thanks,
    Inbal

  • Portal Configuration Assistant failedon 10g OAS

    Hi,
    I'm getting "Portal Configuration Assistant" failed error when trying to install OracleAS 10g (9.0.4.0.0)Applcation Server.
    I did all the pre-install stuff. I was able to install Infrastructure without any problem under /ias/oraDB using 'ias:dba'
    But when I tried to install Applcation Server/BI & Forms using 'ias:dba" under /ias/oraAS, I got following errors:
    "Configuration Assistants" "Portal Configuration Assistant" failed.
    Can anyone please Help me?
    Thanks in advance.
    Sakivs

    ummm...not exactly sure what you mena when you say "using 'ias:dba'"

  • Compare Portal configuration...Please guide

    Hello All,
    I need to compare Portal configuration between portal dev and qas servers.
    Have extracted the following configs:
    1. KM
    2. PCD
    3. J2EE
    Questions:
    -> KM - Following blogs KM transports: Part II & KM transports: Part III, the KM export file is generated with ConfigCM extension. I did try changing the extension from ConfigCM to ConfigfArchieve but I an unable to open the file either way.
    Any guidance on this please.
    -> PCD - Have exported entire PCD contents into this .epa file. How do I open this file?
    Awaiting Reply.
    Thanks,
    Ritu

    The EPA file is a WinRAR/ZIP file.
    Comparing configurations is non-trivial, and you will have some challenges! There are often SIDs and instance numbers scattered through the config..

  • Oracle portal configuration assistant

    cannot get past step 2 of the oracle portal configuration assistant setup.
    I enter my sys password and connect string but a screen pops up saying either my password is incorrect or my connect string is incorrect.
    The connect string should be in format hostname:port:SID
    my hostname = pluto
    port = 1521
    sid = voyager
    I am running a 9i database on XP

    I've also a problem with portal ,
    It begins the creation and at 20% :
    "An error has occured during processing install , see the install.log in the <ORACLE_HOME>/assistants/opca"
    Installation process stops at this point , why?

  • Oracle Portal Configuration Assistant will not connect

    I am attempting to install an Oracle Portal 9iAS with the software provided in the book "Application Server Portal Handbook" by Seve Vandivier and Kelly Cox.
    Ok, all goes well until I get to the Portal Configuration Assistant. I want to connect to the database (on a different box over the network) and install the repository.
    No go. I cannot login. I know the password for SYS. but the connect descriptor it is looking for should be noodle:1521:fastdb (noodle is the host, 1521 the port, fastdb the SID).
    I cannot figure out why this does not connect. If I open a SQLplus window on this computer, I can connect successfully, although this would use a TNS connection, which is not the same.
    So, where am I going wrong?????
    One more clue, the book talks about connecting to an Oracle 8i database, and I am trying to connect to an Oracle 9i database. Does this matter???
    Any help would be appreciated!
    Thanks,
    Edward
    [email protected]
    http://www.1st-R8.com

    Assuming you are installing 9ias Rel1 with portal 309.
    Apply the RDBMS 8.1.7.4 patch to the 9ias Oracle Home and re-run the configuration assistant. It's been awhile since I've had to install Rel1, but that was the fix when we last asked oracle about it.

  • Export SAP Netweaver Portal configuration and setting

    Currenlly, I am developing a web dynpro application which will be deploy into sap netweaver portal using Iview.
    Anyone has an idea of how to export all NEWLY ADDED sap netweaver portal configurations and settings such as portal content information (Iview), ume info such as role, groups and users, portal theme, modified login page and masthead, knwoledge management, collaboration .... from the sap netweaver portal in my development environment into my client's UAT and Production SAP Netweaver Portal server.

    Hi
    For transporting iVIEWs
    goto system admin -- transports -- transport package - export --
    now create a folder under portal content and right click ur folder - new -- transport package -- give name and id and open object and add ur iviews to that package and click on  export- and click on start export
    now download the file and save to ur desktop
    and login to ur QA system and goto system admin -- tranport -- transport package -- import -Source for Package Files - select client -- browse ur file and click import
    for theme transport goto system admin -- portal display -- theme transport -- under export theme click on ur theme and and save that file to ur desktop
    now login to QA and goto system admin - portal display -- theme transport -- import -- brose ur theme and upload
    for modified logon page u need to deploy ur par file into ur QA system
    For KM transport check this bogs
    KM transports: Part I
    KM transports: Part II
    KM transports: Part III
    KM Transports: part VI
    KM Transports: Part  V
    Regards
    Krishna.

  • Portal Configuration - Functional side activity

    Hi All,
    Can anyone send me the link for portal configuration like iview, workset, pages, roles customization.
    Rewards point will be given.
    Thanks,
    Kumar
    Edited by: r kumar on Jul 21, 2008 11:49 AM

    Hi Kumar.
    Please check this:
    http://help.sap.com/saphelp_nw04s/helpdata/en/2a/edece171d547449ab0e1d295f3b0bc/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/86/197142801a3654e10000000a155106/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/fa/45df3df2ad685ae10000000a11405a/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/46/a660054ad945158e5021155bca3495/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/5a/0338f80c0b11d7b84800047582c9f7/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/5a/09c0756c2d4ba5a8b5c6d4ef120304/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/59/bf2287b3cb5e48af94f99929ad15b9/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/5a/0339000c0b11d7b84800047582c9f7/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/ca/707268dedb4501a4f2f36f4f05d5f7/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/82/2391420e9ea970e10000000a155106/content.htm
    Regards!
    Marcello
    Edited by: Marcello Lanzoni on Jul 21, 2008 7:54 PM

Maybe you are looking for