Installing HTTP Server on Fedora 4

I am completely stuck. I managed to install the latest release of 10G, and now I am trying to install the HTTP Server and HTMLDB on my Fedora 4 box. The problem comes when the universal installer attempts to start the HTTP server - it fails every time. I am getting the following errors in the HTTP_Server~1 log:
05/07/15 09:25:54 Start process
/usr/local/server/oracle/product/10.2.0/db_1/Apache/Apache/bin/apachectl start: execing httpd
Syntax error on line 233 of /usr/local/server/oracle/product/10.2.0/db_1/Apache/Apache/conf/httpd.conf:
Cannot load /usr/local/server/oracle/product/10.2.0/db_1/Apache/Apache/libexec/mod_auth_dbm.so into server: /usr/local/server/oracle/product/10.2.0/db_1/Apache/Apache/libexec/mod_auth_dbm.so: undefined symbol: dbm_fetch
05/07/15 09:25:56 Start process
/usr/local/server/oracle/product/10.2.0/db_1/Apache/Apache/bin/apachectl start: execing httpd
Syntax error on line 233 of /usr/local/server/oracle/product/10.2.0/db_1/Apache/Apache/conf/httpd.conf:
Cannot load /usr/local/server/oracle/product/10.2.0/db_1/Apache/Apache/libexec/mod_auth_dbm.so into server: /usr/local/server/oracle/product/10.2.0/db_1/Apache/Apache/libexec/mod_auth_dbm.so: undefined symbol: dbm_fetch
I have been searching the web for two days now, but have not found anything that fixes this issue. Can anyone here help?
Thanks in advance,
-Erich-

@twilliamsebs:
I had the same problem described above, but your post actually created a lot of confusion! libdb.so.2 did not exist at first on my system. Then I read this post and added the symlink so that the
symlink /usr/lib/libdb.so.2 was pointing to /usr/lib/libgdbm.so.2.0.0 and this actually didn't change the dbm_fetch error as described above.
I found the following info after removing this symbolic link, while searching for the "libdb.so.2" being missing error:
"Configuration changes prevented server
startup.<ORACLE_HOME>/Apache/Apache/bin/httpd:
error while loading shared libraries: libdb.so.2: cannot open shared object
file: No such file
or directory"
Analysis:
-Problem accessing /usr/lib/libdb.so.2
-Either permission problem, or file does not exist, etc
Conclusion:
-libdb.so.2 is from gnome-libs-1.4.1.2.90-34.1.i386 (RHEL3 for x86)
-This is a pre-req as listed in note:269557.1
-libdb.so.2 can be installed with following instructions
1. Login as root user
2. cd /
3. Obtain listing of files to be installed
rpm2cpio gnome-libs-1.4.1.2.90-34.1.i386.rpm | cpio -itv "./usr/lib/libdb*"
4. Install libdb.so.2 ( libdb.so.2 -> libdb1.so.2)
rpm2cpio gnome-libs-1.4.1.2.90-34.1.i386.rpm | cpio -idmv "./usr/lib/libdb*"
References
<NOTE:269557.1> - Oracle Application Server 10g (9.0.4) - Installation
Requirements for the Red Hat 3.0 Linux (AMD64)
I downloaded gnome-libs-1.4.1.2.90-34.1.i386.rpm, installed it and this created a symbolic link from libdb.so.2 -> libdb1.so.2 (which it installed) and after that everything went fine!
HTH

Similar Messages

  • After installing HTTP server..

    Hi all,
    After installing http server on linux in a diffrent oracle home. My Enterprise manager dbconsole is not starting I am getting following error. Please help me.
    $ tail -10 emdctl.trc
    2006-10-30 16:20:52 Thread-4136076976 ERROR http: snmehl_allocateListenerPort: f
    ailed to bind socket: Address already in use (errno=98)
    2006-10-30 16:20:52 Thread-4136076976 ERROR http: nmehl_startHttpListener: faile
    d to listen to HTTP port for http://localhost:3938/emd/main
    2006-10-30 16:20:52 Thread-4136076976 ERROR main: nmehl_startHttpListener failed
    starting http listener
    [oracle@localhost log]$ tail -1 emdctl.trc
    2006-10-30 16:24:06 Thread-4136560304 WARN http: snmehl_connect: connect failed
    to (xxxx:1158): Connection refused (error = 111)
    [oracle@localhost log]$ tail -10 emdb.nohup
    ----- Mon Oct 30 16:21:22 2006::Restarting DBConsole. -----
    ----- Mon Oct 30 16:21:22 2006::Console Launched with PID 21394 at time Mon Oct
    30 16:21:22 2006 -----
    06/10/30 16:21:25 Error starting ORMI-Server. Unable to bind socket: Address al
    ready in use
    ----- Mon Oct 30 16:22:53 2006::EMAgent exited at Mon Oct 30 16:22:53 2006 with
    return value 55. -----
    ----- Mon Oct 30 16:22:53 2006::EMAgent has exited due to initialization failure
    ----- Mon Oct 30 16:22:53 2006::Stopping other components. -----
    ----- Mon Oct 30 16:22:53 2006::EMWD Stopping DBConsole. -----
    --- DBConsole internal stop. No OC4J admin passwd hence hard stop. ---
    ----- Mon Oct 30 16:22:53 2006::Commiting Process death. -----
    ----- Mon Oct 30 16:22:53 2006::Exiting watchdog loop -----
    An other issue is the http server is not starting and getting following error.
    /app/oracle/product/10.2.0/companion/Apache/Apache/bin/httpd: error while loadin
    g shared libraries: libdb.so.2: cannot open shared object file: No such file or
    directory
    Thanks,
    Message was edited by:
    james@

    James,
    The key parts in that output are -
    2006-10-30 16:20:52 Thread-4136076976 ERROR http: snmehl_allocateListenerPort: f
    ailed to bind socket: Address already in use (errno=98)
    2006-10-30 16:20:52 Thread-4136076976 ERROR http: nmehl_startHttpListener: faile
    d to listen to HTTP port for http://localhost:3938/emd/mainThey are telling you that it could not bind to that particular port number (port 3938) because something else is already bound to it.
    Try (as root) -
    /usr/bin/lsof -i TCP:3938which should show you information about the process(es) that are currently listening on that port.
    As for -
    /app/oracle/product/10.2.0/companion/Apache/Apache/bin/httpd: error while loadin
    g shared libraries: libdb.so.2: cannot open shared object file: No such file or
    directorylibdb is a prerequisite of installing the Apache server, I believe you can get the library as part of the Berkeley DB installation/rpm's/packages (it should be listed in the installation document).
    Hope this helps.

  • Problem in starting sqlplus after installing http server only on red hat linux 7.1

    I have installed http server on my pc. it was installed
    successfully mt http server is running on port 7777 but when i
    am trying to run sqlplus from user root
    /home/oracle/OraHome1/bin > ./sqlplus
    it's giving msg1<lang>.msb file not found.
    error 6 intializing sql*plus
    but i have seen that sqlplus/message directory has msg1us.msb
    file . since sqlplus is a bin file otherwise i can change it's
    path. i think so.
    give expert suggestions
    brajesh karn

    What about your envirnoment variables (ORACLE_HOME, ORACLE_SID,
    ORA_NLS33) ?

  • Install Http Server in ORACLE 10g 10.2.0.3

    Hi, before i had Oracle XE 10.2.0.1 and Apex 3.2 both worked ok. Now remove Oracle XE and APEX 3.2 and then installed ORACLE 10g 10.2.0.3 and Apex 4.0, but when i try to login to apex http://server:8080/pls/apex/apex_admin the login page not appears.
    Before run apex with OC4J from developer suite 10g, but now i need to install some particular http server with the companion cd or something like that.
    I guess i have to install http server and xml database from companion cd but which option have to choose.
    Regards

    Pl post details of your OS. If you installed 10.2.0.3, you will also need to install the HTTP server from the companion CD.
    http://download.oracle.com/docs/cd/E17556_01/doc/install.40/e15513/overview.htm#CJAFEAJJ
    http://www.oracle.com/technology/obe/apex/apexinst/apexinst.htm#t2
    HTH
    Srini

  • Cant Install HTTP Server on  SUSE10

    Hello,
    When I try to install HTTP Server from Oracle DB 10g Companion CD on a SUSE 10 with a working Oracle10g DB I get an error message where ever I call runInstaller so my installation never initiates.
    As in the installation documentation I change my directory to "/tmp" and then from there I call runInstaller like "/media/cd_name/runInstaller". Just as I press enter I got this message " /media/cd_name/runInstaller: Line 61: /media/cd_name/install/.oui: no such file or directory"
    It is also happens when I try the root user and also happens the same when I try to run the installer from a directory instead of cd.
    Can Anybody help me?

    Hi Orlando17R,
    Are you getting the following error message when installing SQL Server?
    “The configuration registry key is invalid”
    If that is the case, you might need to rebuild Performance Counters, for more details, please review this similar blog:
    SQL Server 2008
    R2 Installation Issue : ” The configuration registry key is invalid”.              
    However, if the issue still persists, please help to post the summary and detail logs for analysis. For more information
     about how to view SQL Server Setup log files, please review this
    article.
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • How to install HTTP Server in a Linux Machine for running APEX

    I've Installed Unbreakable Linux 4.7 and I'm using the standard apache which comes (Apache 2), I want to install the HTTP Server in order to run APEX on this machine, and may it look the data from the database which is oracle 10g (The database is on another machine). Could both installations of apache and Oracle http server co-exists and what is the best form to do it??

    Yes, they can. They installed in different directories and you have to use different ports.
    AFAIK for HTTP for APEX is either part of the installation (eg. in the Oracle Express Edition) or part of the Oracle Installation CDs. For more information see the Oracle Installation Documentation.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Installing HTTP Server After APEX2.2

    Hiii
    i have installed the APEX 2.2 and after i have finished i remembered that i have to install the HTTP Server os installed it ....
    but i dont know if it will Succeed or NOT ...
    now i am in the POST INSTALLATION TASKS ON
    " Configuring Oracle HTTP Server 10g or Oracle Application Server 10g in a New
    Installation"
    WHAT DO YOU THINK .........???

    James,
    The key parts in that output are -
    2006-10-30 16:20:52 Thread-4136076976 ERROR http: snmehl_allocateListenerPort: f
    ailed to bind socket: Address already in use (errno=98)
    2006-10-30 16:20:52 Thread-4136076976 ERROR http: nmehl_startHttpListener: faile
    d to listen to HTTP port for http://localhost:3938/emd/mainThey are telling you that it could not bind to that particular port number (port 3938) because something else is already bound to it.
    Try (as root) -
    /usr/bin/lsof -i TCP:3938which should show you information about the process(es) that are currently listening on that port.
    As for -
    /app/oracle/product/10.2.0/companion/Apache/Apache/bin/httpd: error while loadin
    g shared libraries: libdb.so.2: cannot open shared object file: No such file or
    directorylibdb is a prerequisite of installing the Apache server, I believe you can get the library as part of the Berkeley DB installation/rpm's/packages (it should be listed in the installation document).
    Hope this helps.

  • Apex on linux - when and how to install http server

    1. I installed 10g Release 2 Enterprise Edition on Vmware Linux on my laptop,
    2. I pathced database to 10.2.03,
    3. then I downloaded and installed Apex 3.0.1 on them.
    I thought Http Server will be coming with Apex 3 installation, but I understand that I needed to install that one between the first and second steps?
    So I can not be sure if I will ruin everything if I install Oracle Http Server from the companion cd as the fourth step?
    Also I would be so glad to have a reference like dizwell installation guides for apex on linux if there is any, I couldn't find up to now :(
    Thank you for your guidance.
    Message was edited by:
    FENERBAHCE
    I started installer from companion cd, and choosed 10g companion products(not htmldb) option since http server is listed at the bottom.
    Installation finished on a new Oracle home successfuly but I can not find the *.conf files or opmn/bin folder under this new Oracle Home.
    I must be missing something :)

    APEX from version 2.0 works in 2 modes:
    1) using HTTP server, but in version 3.x is not installed within instalation of APEX
    2) using XML DB feature - it must be installed within instalation standard Oracle -
    (Oracle XML DB HTTP listener with the embeded PL/SQL gateway)
    APEX 3.x you can launch over these links (port would be 8080)
    http://host:port/apex/apex_admin
    http://host:port/apex
    Try

  • Install FMS server in Fedora

    Cannot install FMS server in Linux Fedora 4, I receive this
    message:
    Your distribution, unknow, is not supported by this
    Macromedia Flash Media Server installer.
    What can I do, who can help me?

    I got FMS working with Fedora by entering these UNIX
    commands:
    cd /usr/lib
    sudo ln -s libcrypto.so libcrypto.so.4
    sudo ln -s libcrypto.so libcrypto.so.6
    sudo ln -s libssl.so libssl.so.4
    sudo ln -s libssl.so libssl.so.6
    /etc/init.d/fms start
    ALSO, don't forget that you need to have these port numbers
    opened by your ISP:
    FMS Server Port = 1935
    FMS Admin Server Port = 1111
    Enjoy!

  • Libdb.so.2 RHEL4 during 10GR2 Companion CD install - HTTP Server

    I'm getting the following error in the log file when the install is trying to start the HTTP Server as part of the HTMLDB installation path.
    /app/oracle/product/10.2.0.ae/Apache/Apache/bin/apachectl start: execing httpd
    /app/oracle/product/10.2.0.ae/Apache/Apache/bin/httpd: error while loading shared libraries: libdb.so.2: cannot open shared object file: No such file or directory
    libdb.so.2 does exist under /usr/lib64.
    I've compared my libraries against those listed in the installation guide and I appear to be at or higher. I even added gnome-libs-devel after searching other locations for info even though its not listed in the guide.
    binutils-2.15.92.0.2-13.0.0.0.2 (x86_64)
    compat-db-4.1.25-9 (x86_64)
    control-center-2.8.0-12.rhel4.2 (x86_64)
    gcc-3.4.4-2 (x86_64)
    gcc-c++-3.4.4-2 (x86_64)
    glibc-2.3.4-2.13 (i686)
    glibc-2.3.4-2.13 (x86_64)
    glibc-common-2.3.4-2.13 (x86_64)
    gnome-libs-1.4.1.2.90-44.1 (x86_64)
    libstdc++-3.4.4-2 (i386)
    libstdc++-3.4.4-2 (x86_64)
    libstdc++-devel-3.4.4-2 (x86_64)
    make-3.80-5 (x86_64)
    pdksh-5.2.14-30.3 (x86_64)
    sysstat-5.0.5-1 (x86_64)
    xscreensaver-4.18-5.rhel4.9 (x86_64)
    Setup:
    RHEL4 (2.6.9-22.0.2.ELsmp AMD64) x86_64
    10.2.0.1 Companion CD (HTMLDB 1.6)
    64 Bit Oracle DB (10.2.0.1) installed and running from separate ORACLE_HOME
    any assistance would be appreciated?
    Thx
    Cindy Lou

    SysAdmin friend helped out, so I figured I post the solution.
    In my prior research, gnome-libs was pointed as the problem, including info from Metalink, except that I was told libdb.so.2 is not in that library.
    I need to install the i386 of compat-db
    as root: up2date -u compat-db --arch=i386
    as oracle: $ORACLE_HOME/opmn/bin/opmnctl startall
    Things started with no errors. Yeah onto configuration.
    Cindy Lou

  • Install http server to access localhost

    Can someone recommend a light http server that I can install on my iphone and ipad to access local files please.
    SingerInMe.com is a web application that allows the user to access local audio files and play in syn with the lyrics. The user needs to provide a path e.g. http://localhost/Music to SingerInMe to allow access to the audio tracks. If there is some other way to access the music folder by a web app then please advise.
    Thanks.
    BThaker

    Hi Sathish,
    see this link please, http://forums.ni.com/ni/board/message?board.id=170&view=by_date_ascending&message.id=324049#M324049. The attached example donwloads a picture with http "GET" command.
    Hope it helps.
    Mike

  • How to install http-server for already installed apex

    Hi,
    due to networkcardtroubles I have to reinstall http-server. i have copied marvel.conf and marvel/images.
    i have already reinstalled http-server, getting the htttp://host:7777-page, and have copied marvel.conf (and marvel/images) to the right directory.
    but if i go to http://host:7777/pls/htmldb the result is "page not found"
    how to combine http-server with apex ?
    any reaction will be appreciated
    Leo

    Jes,
    [Sat Mar 17 10:32:09 2007] [notice] FastCGI: process manager initialized
    [Sat Mar 17 10:38:57 2007] [notice] FastCGI: process manager initialized
    [Sat Mar 17 10:39:02 2007] [error] [client 127.0.0.1] [ecid: 1174124342:169.254.78.194:1416:196:1,0] File does not exist: c:/oracle/product/10.1.0/htmldb/apache/apache/htdocs/pls/htmldb
    What went wrong ? (These files - indeed - don't exist on my computer).
    I reinstalled only http-server form the companion CD, not htmldb (assuming to get htmldb 1.5) . Do I have to reinstall both ?
    Leo

  • Installing http server on windows 7

    Can anyone find a link for me, thanks, Doug

    Are you installing webtier? If so I wrote about it installing on 2008r2 which probably looks a lot like win7. If this is 64 bit win7 then
    I think you need to be mindful of the bitness of java. If you install all 32 bit stuff or all 64 bit stuff then maybe you're ok but I'm not
    sure you can run one thing that installed 64 bit java and another thing that installed 32 bit java. Something to think about...
    installing:
    Re: documentation error regarding loc of ohs 11 dads.conf solved
    enabling ssl:
    how to enable ssl in ohs

  • How to install  weblogic server in linux fedora 7  ...?

    hi.. Experts
    i am new to linux os .i am using fedora 7 version of linux. please tell me,,how to install weblogic server on fedora 7 os. i have to run my servlets , jsp pages. on weblogic server.
    plzz i m not able to do practice ...so please suggest me..
    please Reply...
    thanks a lot to all...

    Yes, they can. They installed in different directories and you have to use different ports.
    AFAIK for HTTP for APEX is either part of the installation (eg. in the Oracle Express Edition) or part of the Oracle Installation CDs. For more information see the Oracle Installation Documentation.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Cannot find 11gR2 HTTP Server to install

    I've recently upgraded a database from 10gR2 to 11gR2, and everything is working fine. However, a new project has come up that requires APEX, and I can't find any HTTP server in my ORACLE_HOME. I'd be happy enough to install it, but I can't locate the installation media to download. I've downloaded database_1of2, database_2of2, gateways, grid, client, and examples from the [OTN 11gR2 download page|http://www.oracle.com/technology/software/products/database/oracle11g/112010_linx8664soft.html], but I don't find any "install HTTP server" options in the installers. Other posts refer to the Companion disk on 11gR1 and 10g, but I've not found a corresponding companion disk download for 11gR2.
    I skipped whatever HTTP server option I may have been presented with when I installed 10gR2, so there has never been an HTTP server on this machine.
    I'm confident that I can install it, if only I could find it. I'd be most appreciative if somebody can point me in the right direction.
    Thanks -
    Wally

    user12088340 wrote:
    Anyone have solved problem yet? I am searching the Oracle HTTP Server is installed in an Oracle home after Oarcle 11gR2 is installed. Where is Oracle HTTP Server? Thank you very much.
    SumeiIt is no longer included in the database download.
    If you really want the HTTP server, you need to download that from the Oracle Fusion Middleware downloads. http://www.oracle.com/technology/software/products/middleware/htdocs/fmw_11_download.html and look for Web Tier Utilities (11.1.1.2.0)
    I have not investigated the license considerations of this. Let us know what you find.

Maybe you are looking for