Jdeveloper 10.1.3.1 how to add Oracle App server 10g 10.1.3

In our company we have installed IAS 10.1.3 on server which ip si: 10.1.5.230..
the home path is: /oracle/ias10g/...
I would like to add application server in Jdeveloper but I allways get the error:
Error getting OC4J Process for: opmn-home+oc4j-10.1.5.230-6003-default:
Error connecting to OPMN (is it running?): Connection refused: connect
How I setup the connection:
Step 1:
Connection name: produkcija
Connection type: Oracle Application Server 10g 10.1.3
Step 2:
Username: xxxxxx
Password: xxxxxxx
delploy password: yes
Step 3: (here the problems come because I don't know if i select the right choice)
Connect to: Single instance
Host name: 10.1.5.230
OPMN port: 6003
OC4J instance name: home (is this ok? or I must insert the ORA home?)
Step 4:
Test connection:
Error getting OC4J Process for: opmn-home+oc4j-10.1.5.230-6003-default:
Error connecting to OPMN (is it running?): Connection refused: connect
I can access the Enterprise Manager trough:
http://asctiast2:7777/em/
user/pass:
oc4jadmin/welcome1
what may be wrong? and what is the right procedure to setup connectio to my IAS?
best regards

Error connecting to OPMN (is it running?): Connection refused: connect
Run the following command:
C:/>OPMNCTL STATUS
Does the output indicate OPMN is running?

Similar Messages

  • How to install Oracle App Server 10g (10.1.3) on Windows 7 Machine

    Hi,
    I am unable to install Oracle 10g (10.1.3) on Windows 7 machine.
    The installer setup.exe check the OS version,before the installation and close the process.
    Please help me.
    Please send the complete steps to setup the oracle 10g release 10.1.3 for Windows 7

    Sorry ,
    Where I enable the check box verified by user & Where is this option.
    I run this setup using command prompt.

  • How to Create a DataSource to DB2 in Oracle App Server 10g

    Dear All
    I have to connect to DB2 from Oracle Application Server 10g.
    If anyone knows how to connect to DB2 from Oracle App Server 10g.
    Pls advice me..
    With Regards
    Suresh

    Hi,
       Once u created a data source. go to respective application component which u have assigned ducring creatinon of DS in RSO2 and right click on it and use replicate metadata.
    a popup with options 1. as data source
                                   2. as 3.x data source will come u select 2 one here and go on.

  • Correct version of jdeveloper to use with Oracle App Server 10g 10.1.2.0.2

    Hi,
    I just want to be sure, I am new to JDeveloper and I would just like to verify/ask what correct version of JDeveloper should we use so we could deploy the finished applications on our Oracle Application Server 10g 10.1.2.0.2 without errors?
    Looking at this support matrix: http://www.oracle.com/technology/products/jdev/htdocs/11/as_supportmatrix.html#1013
    I think we can use JDeveloper 10g (10.1.2)?
    I downloaded Jdeveloper 10.1.2 from this link: http://www.oracle.com/technology/software/products/jdev/htdocs/soft10g.html.
    Will this work well with Oracle Application Server 10g 10.1.2.0.2?
    Thank you very much,
    Mickey
    Edited by: [email protected] on Aug 13, 2009 2:20 AM

    Yes, it works well.
    --olaf                                                                                                                                                                                                                                       

  • How to start Oracle Application Server 10g on Linux

    Hi,
    I have installed the Oracle Appliacion server and Infrastructure server on Linux. Both I have installed under with Diff. folder
    Can some one please tell me how to start / stop Appliacion server and Infrastructure server on Linux
    We are going to use the these with Oracle EBS 11.5.10.2 .
    Oracle EBS 11.5.10.2 installed in the same Linux server under diff. folder
    Can some one please guide me.
    Thanks,

    You can do as rizla said or go another route.
    We setup profiles to use for all of the oracle homes. Then in the scripts we call the profiles. Easier to migrate and manage in my opinion if you have multiple oracle homes. You can then use profiles when ssh'd into the boxes, too. Both ways will work.
    Example:
    Script which you can chkconfig.
    #!/bin/sh
    # oracle_collabInfra
    # This shell script takes care of starting and stopping Oracle Collab Infra instance.
    #chkconfig: 345 96 14
    # Source function library.
    . /etc/rc.d/init.d/functions
    RETVAL=0
    start () {
    echo $"Starting Collab Suite on the Infra instance..."
    echo $"Starting Listener..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; lsnrctl start"
    sleep 10
    echo $"Starting Metadata Repository..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; sqlplus '/ as sysdba' <<!
    startup;
    exit;
    sleep 10
    echo $"Starting Enterprise Manager Application Server Control..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; emctl start iasconsole"
    sleep 5
    echo $"Starting Infra OID and OC4J_Security processes..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; opmnctl startproc process-type=OID"
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; opmnctl startproc process-type=OC4J_Security"
    echo $"Starting Infra HTTP_Server processes..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; opmnctl startproc process-type=HTTP_Server"
    return $RETVAL
    stop () {
    echo $"Stopping Collab Suite on the Infra instance..."
    echo $"Stopping all Infra OPMN managed processes..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; opmnctl stopall"
    sleep 5
    echo $"Stopping Enterprise Manager Application Server Control..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; emctl stop iasconsole"
    sleep 10
    echo $"Stopping Metadata Repository..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; sqlplus '/ as sysdba' <<!
    shutdown immediate;
    exit;
    sleep 10
    echo $"Stopping Listener..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; lsnrctl stop"
    return $RETVAL
    restart () {
    stop
    start
    RETVAL=$?
    return $RETVAL
    # See how we were called.
    case "$1" in
    start)
    start
    stop)
    stop
    restart)
    restart
    echo $"Usage: $0 {start|stop|restart}"
    RETVAL=1
    esac
    exit $RETVAL
    profile:
    export ORACLE_BASE=/opt/oracle
    export ORACLE_HOME=$ORACLE_BASE/collabInfra
    export ORACLE_SID=orcl
    export TMP=/tmp
    export TMPDIR=/tmp
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib
    export PATH=/bin:/usr/bin:/usr/sbin:/usr/bin/X11:/usr/kerberos/bin:/usr/local/bin:/usr/X11R6/bin:$HOME/bin:$ORACLE_HOME/bin:$ORACLE_HOME/opmn/bin:$ORACLE_HOME/dcm/bin:$ORACLE_HOME/backup_restore
    unset USERNAME

  • How to start infrastructure db in oracle app server 10g

    Hi Following are processes
    Processes in Instance:
    infra.smtest02
    ------------------------------------------------+---------
    ias-component | process-type | pid |
    status
    ------------------------------------------------+---------
    LogLoader | logloaderd | N/A | Down
    dcm-daemon | dcm-daemon | 29220 | Alive
    DSA | DSA | N/A | Down
    HTTP_Server | HTTP_Server | 27869 | Alive
    OID | OID | N/A | Down
    The name of infrastructure database is infra, when i do tnsping i get this error
    /app/oracle/product/101202/bin (infra)>tnsping infra
    TNS Ping Utility for Solaris: Version 10.1.0.4.2 - Production on 08-SEP-2008 11:25:30
    Copyright (c) 1997, 2003, Oracle. All rights reserved.
    Used parameter files:
    /app/oracle/product/101202/network/admin/sqlnet.ora
    Used HOSTNAME adapter to resolve the alias
    Attempting to contact (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=infra.co.uk))(ADDRESS=(PROTO
    =TCP)(HOST=203.134.166.99)(PORT=1521)))
    TNS-12535: TNS:operation timed out
    I am not able to start infra db as i get following errors due to init.ora file, i
    have not changed anything in the installed selected the default options
    SQL> conn / as sysdba
    Connected to an idle instance.
    SQL> startup
    ORA-01078: failure in processing system parameters
    LRM-00109: could not open parameter file '/app/oracle/product/101202/dbs/initinfra.ora'
    /app/oracle/product/101202/bin (ORACLEID)>oidctl connect=infra server=oidldapd instance=1 start
    [gsdsiConnect] ORA-12170, ORA-12170: TNS:Connect timeout occurred
    Could not connect to the Database.
    any suggestions

    /app/oracle/product/101202/network/admin (ORACLEID)>cat tnsnames.ora
    # tnsnames.ora Network Configuration File: /app/oracle/product/101202/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    ORACLEID =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = smtest02)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = ORACLEID.siemens.com)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = smtest02)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = PLSExtProc)
    # listener.ora Network Configuration File: /app/oracle/product/101202/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /app/oracle/product/101202)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = oracleid.siemens.com)
    (ORACLE_HOME = /app/oracle/product/101202)
    (SID_NAME = oracleid)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = smtest02)(PORT = 1521))
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    These are default entires during installation of app server
    ORACLEID is the instance name of ORalce Internet Directory.

  • How to install Oracle Apps Server (Discoverer 10g)

    Dear All,
    Can you tell me from where I can find the steps of installation and config or Oracle Application Server 10g (Discoverer 10g).
    Aqeel Nawaz

    Hi,
    Refer the below link:
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.htm
    http://www.oracle.com/technology/pub/articles/smiley-as10gr3-install.html
    Regards,
    Xaheer

  • How to add an app library to LD_LIBRARY_PATH

    How to add an app library to LD_LIBRARY_PATH?

    You can do it with Automator, although it's harder than in Windows.
    Example:
    How to Launch Any App with a Keyboard Shortcut
    I like to press the Spotlight keyboard shortcut and then use type-ahead and Enter to launch. When Spotlight is open, if I start typing "wo" Microsoft Word will be highlighted and then I just press Enter to launch it.

  • How to add an app to a key combination

    How to add an app to a key combination

    You can do it with Automator, although it's harder than in Windows.
    Example:
    How to Launch Any App with a Keyboard Shortcut
    I like to press the Spotlight keyboard shortcut and then use type-ahead and Enter to launch. When Spotlight is open, if I start typing "wo" Microsoft Word will be highlighted and then I just press Enter to launch it.

  • How to add the SSO Server Administration portlet to portal

    hi
    I want to use SSO Server Administration portlet ,but when i Navigator to the administer tab .in the portal suntab there is not SSO Server Administration .I want to know why? and how to add the SSO Server Administration portlet to portal.(note:the portal system havn't SSO Server Administration portlet ) .how could i can do it. help !~help!

    thank you IPeters .this problem was solved. the way is: login the portal with orcladmin and the password is the Infru password. In the administrator sub i see the SSO Server Administration portlet .
    thank you very much.

  • Instructions How To Add Web Apps

    Can someone tell me how to add web apps like the games and flashlight. I'm having a mental block lol Theres no download button on the apple site or in itunes that ive found.
    Thanks!

    Hi Jraps39
    Currently there are 2 answers to this question.
    The first applies if your iPod touch hasn't been updated with the January Software Upgrade which you can purchase through the iTunes music store. If this is the case then there is no official supported way of adding buttons to your home screen to those web apps. You can however bookmark them in Safari.
    If you have downloaded the January Software Upgrade through the iTunes Music Store then you will be able to tap the plus sign in the middle of the button bar at the bottom of the webpage in Safari and it will give you the option to "Add to Home" which will add an icon to your home screen.
    Some users have found alternative methods that are unofficially supported and cannot be mentioned on this forum however I hope the above answers your question.

  • How to add iCloud app to my iPhone 5s

    how to add iCloud app to my iPhone 5s

    There isn't an iCloud app.  You'll find iCloud in Settings>iCloud, where you can sign in with your Apple ID to create your iCloud account (see http://www.apple.com/icloud/setup/ios.html).  There is only a Find My iPhone app (available through the App store), which you can use to track your other devices from your phone.

  • How to Add RSM secondary server to IP IVR-UCCE

    How to add secondary RSM server in the cluster
    In the RSM.aef script i can see there is a option for adding active IP but secondary IP ?, do i need to modify the script to add the second one, does anyother changes required

    Hi,
    this might be a silly question, but what is RSM in this context?
    G.

  • How to set up database for form application in app. server 10g r2

    Hi Friends and Bgrant.
    I get user compiled fmb file.
    I did not find componant in app. server.
    However, I can see form server ment with 3 subitem : form compiler, formmigration and run form on the web.
    The form application is supported by database. Other person already configured server for application .
    I put a URL in URL field in run form on the web. I can see install ed successfully! Oracle application Server. Forme server. Oracle application server 10g. title: welcome oracle application server
    after clicked OK button, the page is grey blank without any inforamtion to be displayed. No error message. status bottome as done. the page title as Oracle application server form server.
    SO I think that i need to creade a datasource in app. server.
    But I do not know how to fill field.
    I can log into database from SQL*plus in server PC.
    In datasource page in app. server: i copy a default ORCALEDS information
    with new ID and password. it does not work
    hereData Source Class:
    JDBC URL :
    JDBC Driver:
    Location
    Transactional(XA) Location      
    EJB Location
    Thanks for any help!!
    jim

    Thanks for help!
    I fixed issue of database connection with new issue.
    Only display first form setting (first URL) for 4 different URL
    URL:
    http://salerpt.com/forms/frmservlet?config=emis-srmenu
    fmx file Location as C:\OraMid\forms\salerpt-Forms fmx name as srmenu.fmx in same directory
    fmb file location as C:\OraMid\forms\salerpt-Forms_source fmx name as srmenu.fmb in same directory
    # Single Sign-On OID configuration parameter
    oracle_home=C:\OraMid
    in formweb.cfg file
    baseHTMLjinitiator=basejini.htm
    workingDirector : workingDirectory= blank. but C:\OraMid\forms\salerpt-Forms right now
    # Forms runtime argument: which form module to run
    ##form=test.fmx
    ## i moved bottom section of form section in here and before
    line as Forms runtime argument: database connection details
    comment two line
    #jinit_exename=jinit.exe
    #jinit_mimetype=application/x-jinit-applet;version=1.3.1.22
    I create 4 sections as
    form=srmenu.fmx
    width=1200
    height=700
    pageTitle=Sale Information System (SIS)
    form=xxxx
    net 3 form setting
    However it only display one form interface that i put in( 4 different URL. only display first URL)
    It seems that one formsweb.cfg, it doesn not support multip form application.
    I have 4 small forms application with 4 URL for one formsweb.cfg.
    What should I need to do?
    I am waiting for your help!
    JIm
    Edited by: user589812 on Nov 24, 2008 1:49 PM

  • How to Setup SSL on Oracle Application Server 10g Release 2 (10.1..2)

    Hi All,
    Can anybody tell me How to setup the SSL on Oracle Application Server 10g Release 2 (10.1.2).
    I have all the required documents like
    1. Oracle Application Server Portal Server Configuration Guide.
    2. Oracle Application Server Web Cache Configuration Guide.
    3. Oracle Application Server SSO Administration Guide.
    I tried to follow all this documents but still i am not able to set SSL for Oracle Portal Server.

    The Portal Configuration Guide, available on OTN at http://www.oracle.com/technology/documentation/appserver1012.html does provide some very specific information on how to set up OracleAS Portal.
    Section 6.3.2.1 Configuring SSL for OracleAS Portal describes various configurations, such as:
    SSL to OracleAS Single Sign-On
    SSL to OracleAS Web Cache
    SSL Throughout OracleAS Portal
    External SSL with Non-SSL Within Oracle Application Server
    For larger enterprise configurations, you can refer to the Enterprise Deployment Guide.
    Can you give a bit more background on what you are trying to set up? Which scenario, what sort of hardware, software versions, and so on.
    Regards,
    Pete

Maybe you are looking for

  • How can I embed a PowerPoint presentation into Adobe Muse?

    I am working on my capstone presentation for university and would like to embed a couple of my best presentations into a some of the webpages. How can I do this?

  • Where do I find my business catalyst plan subscription details?

    I would like to create a secure zone but this does not appear under Site Manager. I have modules/features that fit the webCommerce plan which should include Secure Zone. I would then like to double check my plan subscription but I do not know where t

  • DPM Secondary Server Failure

    Hello, We've had an issue with our secondary DPM server where a planned update to SCDPM (from 2012 to 2012R2) caused some of the protected clients to not successfully create replicas. At this point I decided to restore the database which seemed like

  • After updating to yosemite, start up and recovery mode freeze

    I recently got a 2010 Macbook Pro off of ebay and it was on 10.6 so I decided to update to 10.10. After updating it told me to restart so I did. Well after restarting the spinning wheel froze so I restarted it again. It does the same thing. I googled

  • How to reduce Time taken by DSO Activation.

    Hi My Inventory Transaction DSO taking nearly 18min for 180,000 records to activate. It means it takes 1 min for every 10,000 records to activate. I think its too much. Is there any way i can reduce DSO activation time... what are factors that increa