Oracle Express install and use

Hi
I am having some problems after the installation I can not get the "go to database home page" to load, Ikeep getting an error any help would be appreciated.
Thanks - Rich
http://127.0.0.1:8080/apex
Internet Explorer cannot display the webpage
Most likely causes:
You are not connected to the Internet.
The website is encountering problems.
There might be a typing error in the address.
What you can try:
Diagnose Connection Problems
More information
This problem can be caused by a variety of issues, including:
Internet connectivity has been lost.
The website is temporarily unavailable.
The Domain Name Server (DNS) is not reachable.
The Domain Name Server (DNS) does not have a listing for the website's domain.
If this is an HTTPS (secure) address, click Tools, click Internet Options, click Advanced, and check to be sure the SSL and TLS protocols are enabled under the security section.
For offline users
You can still view subscribed feeds and some recently viewed webpages.
To view subscribed feeds
Click the Favorites Center button , click Feeds, and then click the feed you want to view.
To view recently visited webpages (might not work on all pages)
Click Tools , and then click Work Offline.
Click the Favorites Center button , click History, and then click the page you want to view.

Oracle XE has a dedicated forum as referenced below, your problem may be related to firewall, anti-virus program settings or you didn't use a sufficient operating system user during installation. These references may help -
· installation guides - http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25144/toc.htm
· OTN forum needs extra registration(free) - http://www.oracle.com/technology/xe/registration
· OTN forum support - Oracle Database Express Edition (XE)
· all documentation - http://www.oracle.com/pls/xe102/homepage?remark=tahiti
· OTN portal - http://otn.oracle.com/xe

Similar Messages

  • Where to locate HTTP Server for use with Oracle Express 10g and Apex?

    Hello,
    Im a newbie and I downloaded oracle express 10g and Apex 3.2.1. The Apex install is referencing "choosing a HTTP Server" specifically "Oracle HTTP Server and mod_plsql and the embedded PL/SQL Gateway". My question is do the HTTP server or PL SQL embedded Gateway come with the 10g install or do I need to download them seperately? If so where can I locate them?
    Thank you!

    user12027813 wrote:
    If using Oracle XE, then which APEX install scenario would I used if I downloaded both the XE and apex from the OTN?Oracle XE includes APEX 2.1 and uses the PL/SQL Gateway for HTTP service work. No separate HTTP Server is required.
    If, after you install XE, you want to upgrade to APEX 3.x, you would select the PL/SQL Gateway for the upgrade.
    If the PL/SQL Gateway (EPG) does not provide the full set of services you need, you could put a regular Apache in front and redirect to APEX for those specific issues.
    If that is to complicated, then you could license Oracle Application Server Standard Edition 1 (for a fee) to get an Oracle HTTP Server and it's mod_plsql to replace the internal EPG.

  • How to install and use the Gnome-DO application in oracle enterprise Linux

    My Oracle Enterprise linux is 5.3,
    I want to install and use the Gnome-Do(http://do.davebsd.com) in my box.
    Please help me regarding this.
    With Regards
    DSK

    According to Google, Gnome-Do has known issues about CPU bugs and hogs and the latest incarnation does not seem to be available for RHEL and clones. You should have more luck with Linux Desktop distributions like Fedora and Ubuntu. Or you could try to build from source using the info at: http://do.davebsd.com/wiki/Installing_Do. Good luck - I wouldn't bother.

  • Problem with OCI call  and  how to install and use 'DEBUG_EXTPROC' on Linux

    Hi,
    Can any one let me know how I can install and use this debug_extproc package. I have installed oracle XE server on Linux machine(32-bit).
    When I use : DEBUG_EXTPROC.STARTUP_EXTPROC_AGENT' ... i get an error saying that : it is not declared.
    I tried looking in all the directories but did not find the dbgextp.sql(which is required in order to install that package).And tried searching on google but could not get any relevant information.
    Also I am newbie to OCI call interface and also to C programming too: I have coded a external procedure or custom user aggregate in C. But since I was using C++ : 'set' STL. I have compiled my program using g++ instead of gcc and I have correspondingly modified the make file in public/demo directory.
    So, is it fine to do it that way: using OCI (instead of OCCI(C++)) but again compiling the pgm as a regular C++ using g++ instead of gcc.(But rest of the pgm including printf statements : everything is in C).
    Also I have created the library from my : custagg.so library:
    SQL> create or replace library custagg is '$ORACLE_HOME/lib/custagg.so'
    But my aggregate function implemented as external C function using OCI is either not recognised or else : if recognized then there is some error because of which i am getting the following errors : ORA-06522
    SQL> select MinDistance(TT) from egg1;
    select MinDistance(TT) from egg1
    ERROR at line 1:
    ORA-06520: PL/SQL: Error loading external library
    ORA-06522: /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/lib/custagg.so:
    cannot dynamically load executable
    Please kindly answers my queries and trying to resolve this for almost 4 days now and could not find any clue on how to get this done.
    Thanks,
    -NN

    #/bin/make
    # Make file for OCI,OCCI and ODBC demos
    # Usage :
    # For compiling & linking the cdemo81.c file
    # make -f demo_xe.mk buildoci CDEMOEXE=cdemo81 CDEMOOBJS=cdemo81.o
    .SUFFIXES: .o .c .cpp
    ICINCHOME=$(ORACLE_HOME)/rdbms/public/
    ICLIBHOME=$(ORACLE_HOME)/lib
    ICLIBPATH=-L$(ICLIBHOME)
    THREADLIBS=-lthread
    CCLIB=$(ICLIBPATH) -lclntsh $(THREADLIBS)
    OCCILIB=$(ICLIBPATH) -locci -lclntsh $(THREADLIBS)
    CCINCLUDES = -I$(ICINCHOME)
    CCFLAGS=$(CCINCLUDES) -D_REENTRANT -g -xs
    LDFLAGS=
    SO_EXT=.so
    EXTLDFLAGS=$(LDFLAGS) -shared
    REMOVE=rm -rf
    MKLINK=ln
    MAKE=make
    MAKEFILE=demo_xe.mk
    CDEMOEXE=custagg.so
    CDEMOOBJS=custagg.o
    OCCIDEMO=occidml
    OCCIOBJDEMO=occiobj
    OTT=$(ORACLE_HOME)/bin/ott
    OCCIOTTUSR=hr
    OCCIOTTPWD=hr
    ODBCDEMOEXE=odbcdemo
    ODBCDEMOOBJS=odbcdemo.o
    AQDEMOEXE=ociaqdemo00
    AQDEMOOBJS=ociaqdemo00.o
    EXTDEMO=extdemo2.so
    CC=/usr/bin/g++
    echo "LIBCLNT value is :" $(LIBCLNT)
    echo "CC value is :" $(CC)
    .c.o:
    g++ -c -I$(ICINCHOME) $(CCFLAGS) $<
    all: clean buildoci
    echo "LIBCLNT value is :" $(LIBCLNT)
    buildoci: $(LIBCLNT) $(CDEMOOBJS)
    g++ -o $(CDEMOEXE) $(LDFLAGS) $(CDEMOOBJS) $(CCLIB)
    echo "CC value is :" $(CC)
    echo "LIBCLNT value is :" $(LIBCLNT)
    clean:
    $(REMOVE) $(CDEMOOBJS) $(CDEMOEXE)
    # This port-specific file is currently empty on Solaris. Product
    # lines may use this file to override compiler definitions and
    # flags used in occi.mk.
    # Linux compiler definitions
    CC=/usr/bin/gcc
    cc=/usr/bin/gcc
    CCFLAGS=$(CCINCLUDES) -DLINUX -D_GNU_SOURCE -D_REENTRANT -g
    LDFLAGS=-g
    # This macro CCINCLUDES has to be redefined on Linux because of
    # the existence of the 'new' directory in t_work. The name new
    # clashes with a system header file.
    CCINCLUDES = -idirafter .
    THREADLIBS=-lpthread
    ifdef BUILD_CCC296
    CC=/usr/bin/g++296
    endif
    And I am executing the make file using the command :
    make -f demo12.mk buildoci CDEMOEXE=custagg.so CDEMOOBJS=custagg.o
    I am not getting any error while running this make file.
    Can you please tell me whether PLSQL/Oracle is able to locate the file or not. Incase, if it is locating the file but due to some error in the custagg.so it is throwing that error. If this is the case, is there any way that i can debug the C program .....how can i install the debug_extproc package.. I am really new to C & OCI ... if the custagg.so is being located then there might be some problem with the way I am dynamically allocating memory to some variables.
    Please kindly reply to this Post/response.
    Please let me know if you also want to see my program code.
    Thanks & Regards,
    -NN

  • How to install and use Java v1.6 in addition of v1.5 for SoaSuite?

    As far as I know the highest Java version with which SoaSuite is running is v1.5 (resp.5).
    Assume I want to (have to) use version v1.6 (for other programs on my computer):
    How can I install and use v1.6 as second Java installation ?
    If I simply install v1.6 then Oracle SoaSuite refuses to run.
    So I have to tell SoaSuite to use an older version on my hard disc.
    How can I do this?
    Is there a single point of reference for the SoaSuite which java location location to use?
    What about the environment variables JAVA_HOME and PATH?
    Or is there an entry in the Application Server settings or any batch script which must be adjusted?
    Peter

    SOA Suite is certified for Java 6.
    Look at metalink note 444462.1 which gives instructions on how to achieve this. You will need to upgrade to 10.1.3.4 though.
    Its fairly straight forward, as SOA Suite uses the JDK from the ORACLE_HOME. This can be changed by editing the opmn.xml file found in SOA_HOME/opmn/config
    Backup the original JDK in the Oracle Home and copy over the new Java 6 into the ORACLE_HOME:
    Example:
    $ cd $ORACLE_HOME
    $ mv jdk jdk.orig
    $ cp –rp <directorypath_to_java6> jdk
    Verify that the new JDK is working by executing:
    $ORACLE_HOME/jdk/bin/java -version
    cheers
    James

  • Need help how to install and use html db

    plz any body can help me i have download htmldb2.0 and want to install and use it with oracle but i do not know how to install and use it first time any body can help me in detail .
    Niazi

    Niazi,
    Included in the 2.0 download are some very comprehensive Installation and Upgrade instructions, I would highly recommend you read those.

  • How to install and use Flash Player with Windows 7 64-bit edition and Internet Explorer 8.

    1. Click the Start button.
    2. Search for Internet Explorer.
    3. Do not click on "Internet Explorer (64-bit)" or "Internet Explorer (No Add-ons).
    4. Click on "Internet Explorer."
    5. That will open Internet Explorer 8, 32-bit edition.
    6. Now you can download, install, and use Flash Player. (It is used automatically on websites that support it.)
    7. In the future, make sure you don't use Internet Explorer 64-bit edition. Delete any Internet Explorer shortcut icons that you were formally using. Make sure that any Internet Explorer icons that you now use, are opening the 32-bit edition. To see what edition you are using, click the question mark near the upper-right corner of a webpage and click "About Internet Explorer." If you don't see "64-bit" on the popup, that means you are using the 32-bit edition.

    If you can not see the moving sphere: http://kb2.adobe.com/cps/155/tn_15507.html
    Check the following:
    Enabling Flash Player in Internet Explorer 9
    ActiveX Filtering in Internet Explorer 9
    Also check this:
    In I.E.9, click Tools, click Internet options, click Security tab, ensure that the Internet security level is Medium-high.

  • I want to buy photoshop creative cloud for teams, how users can install and use it?

    i want to buy photoshop creative cloud for teams, how users can install and use it?

    Cancel old and buy new is the only way I know, but you MAY be able to exchange
    Return, cancel, or exchange an Adobe order

  • INSTALLING AND USING NEW IPOD TOUCH

    Cannot install and use IPOD touch on computer. Showing up as a camera and not accepting install. Have tried uninstalling previous versions of itunes and ipod downloads. Please advise. Would like to see this work today.

    I got the same problem. I created new hotmail account, dowloaded latest itunes but the "download photos" window comes up along with my wife's itunes account which immediately SAYS it's syncing with mine yet there's still none of her tunes on my new touch (thank god), and even though it's plugged into my computer and I'm connected to the internet, it says i'm not connected. Do you NEED wi-fi to do this or what!? Maybe somone can help us out.

  • I have a brand new MacBook Pro 13.3" Retina. Can I download/install and use my Photoshop CC on it?

    Can I please get an answer as to if and how to download and install and use fully the Photoshop CC ($9.99/mo. plan) on my brand spanking new Apple MacBook Pro 13.3" with Retina display? Thank you, guys!!!

    Of course.
    Sign in to www.adobe.com, download the Cloud desktop app, download the software.

  • How to install and use a plug-in downloaded from the apple site?

    how to install and use a plug-in downloaded from the apple site?

    Emelie,
    which plug-in do you want to install?
    some of the plug-ins come with an installer on the disk image, you click the installer and it will install it in its proper location.
    For others you move the plug-in into to System Library or your User Library:
      Your Hard disk  > Library > Application Support >Aperture > Plug-Ins > Edit
    or
    Your Home Folder > Library > Application Support >Aperture > Plug-Ins > Edit
    If it is an "Edit" plug-in, it goes into the "Edit" subfolder, "Export" plug-ins into the "Export" subfolder.
    You can tell by the extension, what kind of plug-in it is.
    E.G. BorderFX.ApertureExport is an export plug-in, BorderFXEditPlugin.ApertureEdit an edit plug-in.
    Regards
    Léonie
    P.S. In OS Lion the Libraries are hidden by default: To reveal your User Library activate the Finder and select from the main Finder menu:
        Finder >  Go , then hold down the ⌥-option-key, untill the Library appears in the drop.down menu.
    To show the System Library:
         Finder >  Go > Go to Folder
    then enter   / Library

  • Can I install and use your Adobe products on a secondary hard drive?

    Hello, I have my OS and program files installed on a 128gb SSD and I have a 1TB HDD secondary. I want to avoid filling up that SSD as much as possible. Is there an option when installing your Adobe products  (which ones?) to install and use them in a drive and folder on the secondary drive?

    Simply choose a custom install and pick an alternate location in a folder on your secondary drive. just be aware that some components like the activation system and otehr shared stuff will always be installed on C:\, no matter what. You are stil lgoing to lose at least 1GB on your SSD drive.
    Mylenium

  • How to install and use DBXML package in Ubuntu Server 8.04 64bit

    Hi all.
    I used to install and use DBXML in Ubuntu Desktop 8.04 32bit. Now I want to use on Ubuntu Server 8.04 64bit.
    This is code for my installation (I use DBXML 2.2.13)
    env CFLAGS="-O0" sh buildall.sh enable-java with-xerces="xerces-c-src" with-berkeleydb-prefix="/usr/local/BerkeleyDB.4.3" with-xerces-prefix="/usr/local" with-pathan-prefix="/usr/local" with-xquery-prefix="/usr/local/BerkeleyDB.XQuery.1.2" --with-dbxml-prefix="/usr/local/BerkeleyDBXML.2.2"
    After installing, I could open Container, get Document, but when print the result (by "print" command), it failed. (stdin:3: print failed, Error: nsUnmarshalNode overlap File: Nsutil.cpp Line: 2358). Of course, all above commands run successfully with Ubuntu Desktop 8.04 32bit.
    Can you tell me which differences between 2 OS version and how to fix it
    Thanks

    Hello,
    Make sure that you are building a 64-bit version for the 64-bit platform. It's possible that you have mismatched some libraries. Be sure to add "-b 64" to buildall.sh. When you are done run the "file" command on all of the libraries in <path-to-install>/lib to see if they have been built 64-bit.
    That error looks like a 32- vs 64-bit issue of some sort.
    Regards,
    George

  • Hello guys..does anybody know how to install and use adobe master collection with the new lion?   I need to use Flash and illustratore, but apparently those programmes are incompatible with the new operative sistem...   I am a new mac users and I'd like t

    Hello guys..does anybody know how to install and use adobe master collection with the new lion?
    I need to use Flash and illustratore, but apparently those programmes are incompatible with the new operative sistem...
    I am a new mac users and I'd like to know if there are other similar programmes I can use with lion!

    Lab79 wrote:
    Are you on Apple's payroll?
    well dude I can only let you know that as I work with those programme I don't have to pay for it is my company that pays the programme I whant to use( that's why I was asking if there where other programmes ..that I could use with lion insted that Illustrator and Flash!)..I know Adobe since 2005 and I can say that Adobs products are very good...I think that if it's an Adobe probleme or fault ..they will solve it very soon...but unfortunally I have the impression that after Jobs passed away Appel decided to change politics..and everything started to go very bad! (see FCP X)..
    good luck with apple dude..
    Where is the Apple problem? I have CS4 and CS5 running perfectly fine on my Macbook Pro. Installed 5 after Lion upgrade. Worth every cent. Adobe did have some catching up to do with Lion but with the CS5.5 update all runs fine. But not yours. So it is a problem with the Lion OS? You say you have been with Adobe since 2005. So you would be aware of all the other issues that Adobe had catching up with past Oss in Mac and Windows then. They get it right, but it is up to them. It is not up to Apple, nor Microsoft for that matter, to run around and check that every software developer in the world is running their business properly.
    And what has politics got to do with anything. Some people just have to blame Software for their poor Hardware maintainence of failure of the same.
    <The only think I can really do is to go back on my old windows...give back this orrible lap top and ask for my money back!>
    Great suggestion. You should go with that one, but good luck getting a refund.
    Bye

  • Help!! How to install and use Sun ONE Directory Server Resource Kit 5.2

    Hi ! Friend:
    I have some problem on install and use Sun ONE Directory Server Resource Kit 5.2, when I execute "java DSRK", afterwards something like this : com.iplanet.install.until.wbResource::gerstring:resource bundle"locale.resources.S1DSRKResource" not found appeared in the window ,that's why?
    Meanwhile ,can you give some data about it on how to use it ?
    Thank you !

    You should be aware of the following characteristics of your directory when using this tool:
    Size and number of entries.
    Directory structure and access permissions.
    Virtual attributes, class of service, and indexing.
    Usage, types of access, and access patterns.
    Post your error messages completely.
    Thanks
    --Britto                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Issue with Bex report - key Figures not populating correctly.

    Hi Experts, I am facing an issue with a Bex report. There are three key figures of data type DATE having "Dec - Counter or amount field with comma and sign" datatype. After executing the query, in the report, for some sales documents the key figure f

  • How do I open Pages '08 files with the current version of Pages (5.5)?

    I have a computer full of Pages '08 files. I just upgraded to Yosemite and purchased the new Pages. It looks great but Pages is telling me that it doesn't open Pages '08 files. Apparently it only opens it's own files and Pages '09 files. As far as I

  • How can I get rid of the "Reset Search" app?

    I have a Macbook Pro and I run Mavericks OS X 10.9.5. There's an application in Launchpad called "Reset Search".See picture 1. I know this is part of the "Install Mac" adware, but I still can't find a way to get rid of it. I downloaded Adware Medic t

  • Dynamic generate JNLP from JSP ?

    Hello, I tried to generate JNLP from JSP, but it just show the Opem/Save diakog and cannot startup the Web Start. I am using Tomcat-5.5.12 in WinXP + JDK1.5 How can I dynamically generate JNLP ? Eric

  • Depot Scenario in CIN

    Dear Gurus, Please let us know which Register get updated in reciveing end plant in STO form Plant to Depot, Please let us know what to do If we wants to show CVD in Outgoing Excise Invoice (STO), One more thing we would like to ask in our Depot Sale