Cannot connect HTTP Server for oracle 9i database

I tried starting the HTTP Sever for oracle 9i, but i keep getting this error:
Could not start the OracleOraHome92HTTPServer service on Local Computer.
The service did not return an error. This could be an internal Windows error or an intrenal service error.
If the problem persists, contact your system administrator.
Any thoughts??
Also I get an ORA- 12535 TNS:timed- out error when I try accessing oracle 9i to create a new database...
Help....
Thanks in advance

Hi Jim,
the command is 'apachectl start'. You find the executable apachectl under $ORACLE_HOME/Apache/Apache/bin .
Best regards
Werner

Similar Messages

  • Companion CDs for 64-bit Oracle HTTP Server for AIX5L(64 bit) required.

    I need Companion CDs for 64 bit Oracle HTTP Server for AIX5L(64 bit).
    I tried to install using
    as_ibm_aix_companion_101300_disk1.cpio & as_ibm_aix_companion_101300_disk2.cpio
    but when i checked the files present in <Oracle_Home>/ohs/lib , they are of 32-bit.
    Also i tried with Oracle 10.1.2.0.2 but still the server is installed as 32-bit.
    Is 64-bit Oracle HTTP Server supported on AIX5L(64 bit) ?
    If yes, then from where can i download the CDs?
    Any suggestions will be appreciated.

    Greetings,
    Try this link:
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10201aixsoft.html
    Regards,
    Bill Chadbourne

  • Oracle HTTP Server for APEX3.2

    I am a DBA but new to APEX.
    On page 4-15 of APEX3.2 Installation Guide, it says
    Install from the Database and Configure Oracle HTTP Server
    This section describes how to configure Oracle HTTP Server with mod_plsql
    distributed with Oracle Database 11g or Oracle Application Server 10g.
    It seems that Oracle HTTP Server is neither distributed with the database CD nor Example CD. Am I right?
    Also, can I use HTTP Server bundled with OMS to serve as HTTP Server for APEX? Will that impact Grid Control?
    EPG is not considered.
    Thanks,
    Kevin

    Hi
    When using Grid of course, there is a HTTP server
    When having the Rdbms, you need the companion cd or use one of products that has already HTTP server .... ( Example ; IAS, etc )
    Kind regards,
    Iloon

  • TS1398 I try to open my email but I keep getting cannot connect to server can some please help or should I go to apple store for help?

    I'm trying to open my email but I keep getting cannot connect to server! Can someone help me or should I just go to an apple store?

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... (But can take Longer..)
    Release the Buttons...
    More >  http://www.apple.com/support/ipad/mail/

  • Oracle 11g R2 HTTP server for APEX

    I am in the process of configuring new apex enviornment to run Oracle HTTP Server instead of the embedded server which we are currently using on another instance. I have configured 11g r2 along with companion version of Oraclle HTTP server entitled Oracle Fusion Middleware Web Tier Utilities.
    Currently all is working fine with this configuraiton using SSL.
    We have a couple of third party applications that are supplied in a EAR file for deployment. Does this version of Oracle HTTP support such deployments? There seems to be no gui interface to managing the http server and web cache. Do we need to move to the full Fusion app server to support EAR deployments, etc. If so, I am assuming we would then have to purchase Fusion product unlike http product for APEX.
    Any feedback is appreciated.
    Bob

    For a number of reasons scrapped http server and installed and configured GlassFish community edition with Apex Listener. With caching enabled all is working great. Weblogic is overkill.
    Bob

  • I have not been able to access my apple tv for months as it says unable to sign in indicating it cannot connect to server at this time?

    I have not been able to access my apple tv for months as it says unable to sign in indicating it cannot connect to server at this time?  How can i access it again?

    Hi.
    Sounds like your Apple TV needs to connect to your Wi-Fi network.
    Help here > Apple TV (2nd and 3rd generation): Troubleshooting Wi-Fi networks and connections
    Or 2st generation >  Apple TV (1st generation): Troubleshooting wireless connections
    In case you are not certain which generation your Apple TV is >  Identifying Apple TV models

  • How we build Java Database Connectivity for Oracle 8i Database

    Can any one send me a sample code for Java Database Connectivity for Oracle 8i Database
    it will be a grat help
    Thanks & Regards
    Rasika

    You don't need a DSN if you use Oracle's JDBC driver.
    You didn't read ANY of the previous replies. What makes you think this one willk help? Or any instruction, for that matter?
    Sounds like you just want someone to give it to you. OK, I'll bite, but you have to figure out the rest:
    import java.sql.*;
    import java.util.*;
    * Command line app that allows a user to connect with a database and
    * execute any valid SQL against it
    public class DataConnection
        public static final String DEFAULT_DRIVER   = "sun.jdbc.odbc.JdbcOdbcDriver";
        public static final String DEFAULT_URL      = "jdbc:odbc:DRIVER={Microsoft Access Driver (*.mdb)};DBQ=c:\\Edu\\Java\\Forum\\DataConnection.mdb";
        public static final String DEFAULT_USERNAME = "admin";
        public static final String DEFAULT_PASSWORD = "";
        public static final String DEFAULT_DRIVER   = "com.mysql.jdbc.Driver";
        public static final String DEFAULT_URL      = "jdbc:mysql://localhost:3306/hibernate";
        public static final String DEFAULT_USERNAME = "admin";
        public static final String DEFAULT_PASSWORD = "";
        /** Database connection */
        private Connection connection;
         * Driver for the DataConnection
         * @param command line arguments
         * <ol start='0'>
         * <li>SQL query string</li>
         * <li>JDBC driver class</li>
         * <li>database URL</li>
         * <li>username</li>
         * <li>password</li>
         * </ol>
        public static void main(String [] args)
            DataConnection db = null;
            try
                if (args.length > 0)
                    String sql      = args[0];
                    String driver   = ((args.length > 1) ? args[1] : DEFAULT_DRIVER);
                    String url      = ((args.length > 2) ? args[2] : DEFAULT_URL);
                    String username = ((args.length > 3) ? args[3] : DEFAULT_USERNAME);
                    String password = ((args.length > 4) ? args[4] : DEFAULT_PASSWORD);
                    System.out.println("sql     : " + sql);
                    System.out.println("driver  : " + driver);
                    System.out.println("url     : " + url);
                    System.out.println("username: " + username);
                    System.out.println("password: " + password);
                    db = new DataConnection(driver, url, username, password);
                    System.out.println("Connection established");
                    Object result = db.executeSQL(sql);
                    System.out.println(result);
                else
                    System.out.println("Usage: db.DataConnection <sql> <driver> <url> <username> <password>");
            catch (SQLException e)
                System.err.println("SQL error: " + e.getErrorCode());
                System.err.println("SQL state: " + e.getSQLState());
                e.printStackTrace(System.err);
            catch (Exception e)
                e.printStackTrace(System.err);
            finally
                if (db != null)
                    db.close();
                db = null;
         * Create a DataConnection
         * @throws SQLException if the database connection fails
         * @throws ClassNotFoundException if the driver class can't be loaded
        public DataConnection() throws SQLException,ClassNotFoundException
            this(DEFAULT_DRIVER, DEFAULT_URL, DEFAULT_USERNAME, DEFAULT_PASSWORD);
         * Create a DataConnection
         * @throws SQLException if the database connection fails
         * @throws ClassNotFoundException if the driver class can't be loaded
        public DataConnection(final String driver,
                              final String url,
                              final String username,
                              final String password)
            throws SQLException,ClassNotFoundException
            Class.forName(driver);
            this.connection = DriverManager.getConnection(url, username, password);
         * Get Driver properties
         * @param database URL
         * @return list of driver properties
         * @throws SQLException if the query fails
        public List getDriverProperties(final String url)
            throws SQLException
            List driverProperties   = new ArrayList();
            Driver driver           = DriverManager.getDriver(url);
            if (driver != null)
                DriverPropertyInfo[] info = driver.getPropertyInfo(url, null);
                if (info != null)
                    driverProperties    = Arrays.asList(info);
            return driverProperties;
         * Clean up the connection
        public void close()
            close(this.connection);
         * Execute ANY SQL statement
         * @param SQL statement to execute
         * @returns list of row values if a ResultSet is returned,
         * OR an altered row count object if not
         * @throws SQLException if the query fails
        public Object executeSQL(final String sql) throws SQLException
            Object returnValue;
            Statement statement = null;
            ResultSet rs = null;
            try
                statement = this.connection.createStatement();
                boolean hasResultSet    = statement.execute(sql);
                if (hasResultSet)
                    rs                      = statement.getResultSet();
                    ResultSetMetaData meta  = rs.getMetaData();
                    int numColumns          = meta.getColumnCount();
                    List rows               = new ArrayList();
                    while (rs.next())
                        Map thisRow = new LinkedHashMap();
                        for (int i = 1; i <= numColumns; ++i)
                            String columnName   = meta.getColumnName(i);
                            Object value        = rs.getObject(columnName);
                            thisRow.put(columnName, value);
                        rows.add(thisRow);
                    returnValue = rows;
            else
                int updateCount = statement.getUpdateCount();
                returnValue     = new Integer(updateCount);
            finally
                close(rs);
                close(statement);
            return returnValue;
         * Close a database connection
         * @param connection to close
        public static final void close(Connection connection)
            try
                if (connection != null)
                    connection.close();
                    connection = null;
            catch (SQLException e)
                e.printStackTrace();
         * Close a statement
         * @param statement to close
        public static final void close(Statement statement)
            try
                if (statement != null)
                    statement.close();
                    statement = null;
            catch (SQLException e)
                e.printStackTrace();
         * Close a result set
         * @param rs to close
        public static final void close(ResultSet rs)
            try
                if (rs != null)
                    rs.close();
                    rs = null;
            catch (SQLException e)
                e.printStackTrace();
         * Close a database connection and statement
         * @param connection to close
         * @param statement to close
        public static final void close(Connection connection, Statement statement)
            close(statement);
            close(connection);
         * Close a database connection, statement, and result set
         * @param connection to close
         * @param statement to close
         * @param rs to close
        public static final void close(Connection connection,
                                       Statement statement,
                                       ResultSet rs)
            close(rs);
            close(statement);
            close(connection);
    }%

  • " ERROR cannot connect to server. please try again later"  for games

    my phone keeps coming up with the phrase " ERROR cannot connect to server. please try again later"  for games    but some of my games are working and game centre loads .   what's the deal?? how do you fix it ?
    for the amount of money I pay a month (£80) you'd expect it to work.... afterall it is apparently a "smart" phone

    Thanks for the reply.  Tried that of course before going to the effort of posting something here.
    Cheers
    G

  • 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.

  • My iPad is telling that it cannot connect to server when checking for emails but I can connect to the internet

    My email was working great, I tried sending a large attachment and couldn't, I cleared that and now my email cannot connect to server, internet is working fine, any suggestions?

    Sometimes it helps to close the mail app and reboot the iPad. That will reset the app and the iOS system. Try mail again after that.
    Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the Mail app and then swipe "up" on the app preview thumbnail to close it.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Using a Single HTTP Server for Multiple APEX Instances

    Our company's DBA Manager has asked if it would be possible to externalize the HTTP server portion of APEX from the DB Servers. In other words, he would strongly prefer that the DB Servers *only* run Oracle Database software.
    We know that we can install the HTTP server on another box but, in thinking about how to do this, we were wondering if it is really necessary to create a separate HTTP server installation for each APEX instance. What we'd really like to do is have one HTTP server for all our our Dev boxes and several (but, not one to one) for each of our upper environments; staging, qa, prod, etc.
    Right now, each instance have a single dads.conf file on each DB box. So, if we we're to attempt to consolidate them, we'd need some way to embed multiple dads files and to associate each instance with the correct one.
    Has anyone ever done this or (preferably) have some examples?
    Thanks,
    -Joe

    Joe,
    I don´t know a specific reference for it, I remembered it because when I was looking the documentation on the site, I saw the reference "Support for multiple database connections" in the URL: APEX Listener New Features 2.0&lt;/title&gt;&lt;meta name=&quot;Title&quot; content=&quot;APEX Listener New Features 2.0…
    I´ve tried to use APEX listener some time ago, but in a earlier version together with glassfish. So, since for me was only one database, I created the necessary amount of DAD´s on my database, each one for a specific port.
    Check the link and you´ll see the same information I saw.
    Thanks.
    José Valdézio
    "Neo, everything that Oracle told me, became true, except extinguish bugs in a first release."

  • I recently updated to iOS 8.0 on my Ipad however when i try to agree to the new terms and conditions i get an error message saying either 'Cannot connect to server' or 'Your session has timed out please try again' what can be done to resolve this?

    Hi, I recently updated to iOS 8.0 on my Ipad mini however when i try to agree to the new terms and conditions i get an error message saying either 'Cannot connect to server' or 'Your session has timed out please try again' what can be done to resolve this problem? Also i cannot download anything from the App store as a result of this.

    Can you check the Object Security for the Analysis Menu and Export button and see if it is restricted?
    Also, is this a Oracle DB?  IF so, has the following 32 bit Oracle Client components been isntalled:
    Oracle Objects for OLE
    Oracle Data Provider for .NET
    Oracle Providers for ASP.NET

  • HTTP Server for Windows 64 bit not on the companion CD

    Hi,
    I cannot find the HTTP Server for Windows 64 bit on the companion CD. Any idea where I can get it from? For the 32bit version the HTTP Server is on the Companion CD.
    Thanks in advance,
    Florin

    If i am correct reason should be : Oracle Application Server 10g will run as a 32-bit application
    Following platforms have the same media in either case:
    Microsoft Windows 32-bit and EM64T/AMD64
    (Not Itanium-64, which is separate and referred to as "Windows 64-bit")
    Linux x86 and Linux x86-64
    Solaris Sparc 32-bit and Solaris Sparc 64-bit
    As the Oracle Application Server 10g will be run as a 32-bit application. See the Installation Guide or readme files for any specific steps on these 64-bit platforms.
    Refer the Note.433061.1 - How to Obtain Application Server 10g Media, Patchsets, and Patches

  • Is it possible to connect Sqlfire server with oracle using DBSynchronizer using default license

    is it possible to connect Sqlfire server with oracle using DBSynchronizer using default license
    Sql fire is my machine
    Oracle is another machine
    When i connect sqlfire with oracle using DBsynchronizer It shows the error message as Wan is not supported for default license
    When i connect Sqlfie(my system) with oracle( another system) using JDBC Rowloader .nothing is happening after some time it shows the error like"time out for pool connection to archive database.When i increase the time out also nothing is happening.
    what is the reason for above two errors(I stated in the pragraph.)
    is it beacuse of wan netwrok not supported by default evaluation license?
    could you please explain?

    I don't think this has anything to do with a VMware product.

  • I get the error messages: "Server not found" or "Cannot connect to Server" and thus cannot print. I don't even know what a server is.

    Hello: I am not computer savvy.
    I have run "Network Diagnostics" and the message "Cannot connect to Server" comes up. I can connect to the internet. I have tried turning off the whole system and the printer individually and nothing seems to change the message.

    hello,
    i got the same issue i'm using kde the link abe for "Adding a login manager (KDM, GDM, or XDM) to automatically boot on startup" guide is dead
    arkham wrote:Have you tried the inittab approach for starting kdm? http://wiki.archlinux.org/index.php/Add … tab_Method
    could you help me please ?
    Thank you
    Last edited by hael (2012-05-05 08:57:44)

Maybe you are looking for

  • Satellite U300-130 - TosBtMng has stopped working after Nokia PC Suite installation

    I've got the same problem too... with Toshiba Satellite U300-130. Bluetooth had worked pretty well before I installed Nokia PC Suite for my mobile on my PC (the newest version 7.1.26.0 from website). To be correct, at first I even managed to maintain

  • Can we make a BDC program as a webservice

    Hi All, Can we write a BDC program in RFC Function Module and access it through web service. We have a requirement to create a Return Order, for that we have recorded the Va01 transaction for return order and included the same recorded code in RFC Fu

  • How do I recover .emix messages into Mail app?

    I wanted to rebuild my mailbox because of some issues I was having with a rule not catching all the files I thought it should. I am using 4 POP accounts all on the same smtp server. I have 10s of thousands of messages so I knew it might take some tim

  • Adobe Acrobat 8.0.0 Upgrade to 8.2.1

    I have a 25 user license for Adobe 8.0.0 and we currently do not need to upgrade to 9.  But from time to time, when we refresh or replace computers, I have to reinstall Acrobat. Is there an updated installer that includes all the updates from 8.0.0 t

  • Extractor for Non Leading Ledger

    Hi, I am trying to create a DS for a non leading ledger based on table FAGLFLEXT (Totals). I am using TCODE - FAGLBW03 for that. When I try doing this I get an error message: No extract structure exists for ledger table ECMCT Message no. GQPI053 I am