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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • 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

  • 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

  • How to install directory server/client on Solaris 9 for dummys

    Hi,
    after reading hunderts of pages, after asking questions in forums without getting the right answers, i was able to install the directory server in our company.
    Here is the summary i made for myself. Perhaps it helps others to avoid the same problems.
    Set up a Directory Server (sun one ds 5.1)
    Present situation:
    -Nisplus is installed
    -Solaris OS 9 sparc 64bit is installed
    -DS5 Software is normally already installed in Solaris 9. Check off with 'pkginfo | grep IPLT*'
    -Otherwise install from Solaris OS 9 Disc1 with 'pkgadd -d IPLTxxxx .'
    -Software setup with '/usr/sbin/directoryserver setup'
         Install admin- and directory server.
         For Directory Server use port 389 (necessary for later use of SSL)
         For Admin Server use any empty port > 1024
         Run directoryserver as root (necessary for using port 389 and for -starting servers from console)
         Use default Directory Manager DN cn=Directory manager
         Use your domain as DIT (default information tree) example: dc=example, dc=com
         As second DIT, setup installs o=NetscapeRoot. Don't change this DIT at all!!!!!
    The server stores all the default schemas there which are absolutely important for the directoy
    server. Don't change anything there !
    -Configure software with 'idsconfig'
         Preferred - and default server xxx.xxx.xxx.xxx (ip_adds of your directory server)
         Use default search scope one
         Use credential's Proxy
         Use authentication Simple (you may change this later if needed)
         All the rest should remain on default settings
         You will be asked for a proxy passwort
    -Start the directoryserver console with '/usr/sbin/directoryserver startconsole'
    -If it's not yet running, start the directory server from console or with command 'directoryserver -s instance_name start'
    -If it's not yet running, start the admin server from console or with command 'directoyserver start-admin'
    -On directoryserver's gui at configuraton/password set password encryption to 'unix crypt algorithm (CRYPT)'
    Import Data
    -Get Data from Nisplus with
         'niscat passwd.org_dir passwd.ldap'
         'niscat hosts.org_dir hosts.ldap'
         'niscat groups.org_dir groups.ldap'
         etc
    -adjust the files. (try it out with one entry of a file only. You may delete this entry with the gui very easy if it's not successfull.
    -hosts.ldap must look like
    xxx.xxx.xxx.xxx machine1
    xxx.xxx.xxx.xxx machine2
    xxx.xxx.xxx.xxx machine3
         First value is the ip-address, second one is the hostname.
         If you have more than one hostname per machine, use a second line (don't write 2 names behind the ip-address like you did in nisplus!!!)
    Change content of files into ldif format
    -perl migrate_hosts.pl hosts.ldap hosts.ldif
    -perl migrate passwd.pl passwd.ldap passwd.ldif
    -You may download the above perl-Files from http://www.padl.com
    Change the converted passwd.ldif File as follows:
    -before change:
    dn: uid=mario,ou=People,dc=krinfo,dc=ch
    uid: mario
    cn: mario
    objectClass: account
    objectClass: posixAccount
    objectClass: top
    userPassword: {crypt}6O9m3uK./T/rM
    loginShell: /bin/bash
    uidNumber: 1020
    gidNumber: 14
    homeDirectory: /home/mario
    -after change:
    dn: uid=mario,ou=People,dc=krinfo,dc=ch
    uid: mario
    cn: mario
    objectClass: account
    objectClass: posixAccount
    objectClass: shadowAccount <--- this line must be inserted
    objectClass: top
    userPassword: {crypt}6O9m3uK./T/rM
    loginShell: /bin/bash
    uidNumber: 1020
    gidNumber: 14
    homeDirectory: /home/mario
    Insert the line for every entry in the passwd.ldif file
    You may now import all these xxxx.ldif files into the directory server with
    -ldapadd -h name_of_directoryserver -D "cn=Directory Manager" -w password -f XXXXX.ldif
    You may use this commands later to import further data.
    -Initialise a client
    'ldapclient -a proxyDN=cn=proxyagent,ou=profile,dc=example,dc=com init xxx.xxx.xxx.xxx'
    The xxx.xxx.xxx.xxx at the end is the ip address of the directory server
    -This will make a client with data taken from the default profile from the directory server. This profile has been produced with the earlier command idsconfig and can be changed if needed.
    -The System will ask you for the proxy password (given the first time in idsconfig dialog)
    -You may now look at the produces files
    in '/var/ldap/ldap_client_file' for the client settings
    in '/var/ldap/ldap_client_cred' for the proxy settings
    'ldapclient list' shows the settings of the client
    With 'ldaplist -h' you may see all the existing entries with their objects.
    Activate the client
    -If it's not yet running, start '/usr/lib/ldap/ldap_cachemgr'
    -All nisplus daemons/programs have been stopped by ldapclient command. If not, stop them manually.
    -/etc/nsswitch.conf should have been copied from /etc/nsswitch.ldap from ldapclient too.
    -If not, do it manually.
    example
    passwd: files ldap
    group: files ldap
    hosts ldap dns files
    etc
    I recommend to change the file '/etc/nsswitch.ldap' because the system oftens copies nsswitch.ldap to nsswitch.conf and if nsswitch.ldap is adapted, you must now change it again and again.
    you may now check whether ldap is working fine with the following requests:
    getent passwd username
    getent hosts hostname
    getent groups
    getent network
    These commands should give you the requested answer.
    Be sure to clean:
    /etc/hosts      inside is only your workstation and the directory server
    /etc/passwd     only default and local entries
    /etc/groups only default and local entries
    etc
    try a telnet to your own machine to check, whether password and automount of your home_dirctory works fine.
    I failed here. All was working fine, but the password exchange did not because of credential/authentication problems.
    Best regards and good luck
    Mario

    Directory Server 5.1 does not support Kerberos authentication.
    Beside this there are some extensions in MS kerberos authentication that makes it almost impossible to have a MS client authenticate with something else than AD.
    Regards,
    Ludovic.

  • 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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • 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) ?

  • How to Install WebLogic Server 9.2 MP3 ?

    Hi,
    How to Install WebLogic Server 9.2 MP3 on Linux?
    and as which user we have to install WebLogic server. Whether we have to install as root user or we have to create different user to install weblogic server?
    Please provide me the document to do the installation.
    Thanks

    Just read through the installation guide: [http://e-docs.bea.com/common/docs92/install/index.html] . Look upward in that tree for all relevant WebLogic documentation.

  • How to install SQL SERVER 2008 r2 in window 7 home premimum 64bit

    how to install SQL SERVER 2008 r2 in home premimum 64bit os. can any say that weather it will support or not in window 7 home premimum os.
    my server log file:
    Final result:                  SQL Server installation failed.
    To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server Setup.
      Exit code (Decimal):           -2068052700
      Exit facility code:            1212
      Exit error code:               1316
      Exit message:                  SQL Server installation
    failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server Setup.
      Start time:                    2014-03-27 00:52:25
      End time:                      2014-03-27
    00:56:09
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL
    Server\100\Setup Bootstrap\Log\20140327_005035\SSCRuntime_Cpu32_1.log
      Exception help link:           http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=10.50.1600.1
    Machine Properties:
      Machine name:                  SEVALAL-PC
      Machine processor count:       4
      OS version:                    Windows 7
      OS service pack:               Service Pack 1
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance          
      Instance ID                    Feature                                  Language          
      Edition              Version         Clustered 
      Sql Server 2008 R2   MSSQLSERVER          MSSQL10_50.MSSQLSERVER  
          Database Engine Services                 1033                 Standard Edition     10.50.1600.1    No        
      Sql Server 2008 R2   MSSQLSERVER          MSSQL10_50.MSSQLSERVER  
          SQL Server Replication                   1033                 Standard Edition     10.50.1600.1    No        
      Sql Server 2008 R2   MSSQLSERVER          MSSQL10_50.MSSQLSERVER  
          Full-Text Search                         1033                 Standard Edition     10.50.1600.1    No    
      Sql Server 2008 R2   MSSQLSERVER          MSAS10_50.MSSQLSERVER  
           Analysis Services                        1033                 Standard Edition     10.50.1600.1    No  
      Sql Server 2008 R2   MSSQLSERVER          MSRS10_50.MSSQLSERVER  
           Reporting Services                       1033                 Standard Edition     10.50.1600.1    No    
      Sql Server 2008      SEVALAL              MSSQL10.SEVALAL
                   Database Engine Services                 1033                 Express Edition      10.3.5500.0    
    No        
      Sql Server 2008      SEVALAL              MSSQL10.SEVALAL
                   SQL Server Replication                   1033                 Express Edition      10.3.5500.0  
      No        
      Sql Server 2008 R2                        
                                  Client Tools Connectivity                1033                    
                     10.50.1600.1    No        
      Sql Server 2008 R2                        
                                  Client Tools Backwards Compatibility     1033                            
             10.50.1600.1    No        
      Sql Server 2008 R2                        
                                  Client Tools SDK                         1033              
                           10.50.1600.1    No        
    Package properties:
      Description:                   SQL Server Database Services
    2008 R2
      ProductName:                   SQL Server 2008 R2
      Type:                          RTM
      Version:                       10
      SPLevel:                       0
      Installation location:         G:\01.SQL Server 2008 R2 FullVersion\x64\setup\
      Installation edition:          STANDARD
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      False
      AGTSVCACCOUNT:                 <empty>
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Manual
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASDOMAINGROUP:                 <empty>
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 *****
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\100\Setup
    Bootstrap\Log\20140327_005035\ConfigurationFile.ini
      CUSOURCE:                      
      ENABLERANU:                    False
      ENU:                           True
      ERRORREPORTING:                True
      FARMACCOUNT:                   <empty>
      FARMADMINPORT:                 0
      FARMPASSWORD:                  *****
      FEATURES:                      IS,SSMS,ADV_SSMS,OCS
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  <empty>
      FTSVCPASSWORD:                 *****
      HELP:                          False
      IACCEPTSQLSERVERLICENSETERMS:  False
      INDICATEPROGRESS:              False
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL
    Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft
    SQL Server
      INSTANCEID:                    MSSQLSERVER
      INSTANCENAME:                  MSSQLSERVER
      ISSVCACCOUNT:                  NT AUTHORITY\SYSTEM
      ISSVCPASSWORD:                 *****
      ISSVCSTARTUPTYPE:              Automatic
      NPENABLED:                     0
      PASSPHRASE:                    *****
      PCUSOURCE:                     
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      ROLE:                          <empty>
      RSINSTALLMODE:                 FilesOnlyMode
      RSSVCACCOUNT:                  <empty>
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  <empty>
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 <empty>
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           <empty>
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  True
      TCPENABLED:                    0
      UIMODE:                        Normal
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup
    Bootstrap\Log\20140327_005035\ConfigurationFile.ini
    Detailed results:
      Feature:                       Integration
    Services
      Status:                        Failed:
    see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management
    Tools - Complete
      Status:                        Failed:
    see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management
    Tools - Basic
      Status:                        Failed:
    see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Microsoft Sync
    Framework
      Status:                        Failed:
    see logs for details
      MSI status:                    Passed
      Configuration status:          Passed

    my summary log file information:
    Overall summary:
      Final result:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server Setup.
      Exit code (Decimal):           -2068052700
      Exit facility code:            1212
      Exit error code:               1316
      Exit message:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server Setup.
      Start time:                    2014-03-27 00:52:25
      End time:                      2014-03-27 00:56:09
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140327_005035\SSCRuntime_Cpu32_1.log
      Exception help link:           http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=10.50.1600.1
    Machine Properties:
      Machine name:                  SEVALAL-PC
      Machine processor count:       4
      OS version:                    Windows 7
      OS service pack:               Service Pack 1
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                    Feature                
                     Language             Edition              Version         Clustered 
      Sql Server 2008 R2   MSSQLSERVER          MSSQL10_50.MSSQLSERVER         Database Engine Services                 1033            
        Standard Edition     10.50.1600.1    No        
      Sql Server 2008 R2   MSSQLSERVER          MSSQL10_50.MSSQLSERVER         SQL Server Replication                   1033            
        Standard Edition     10.50.1600.1    No        
      Sql Server 2008 R2   MSSQLSERVER          MSSQL10_50.MSSQLSERVER         Full-Text Search                         1033      
              Standard Edition     10.50.1600.1    No        
      Sql Server 2008 R2   MSSQLSERVER          MSAS10_50.MSSQLSERVER          Analysis Services                        1033      
              Standard Edition     10.50.1600.1    No        
      Sql Server 2008 R2   MSSQLSERVER          MSRS10_50.MSSQLSERVER          Reporting Services                       1033      
              Standard Edition     10.50.1600.1    No        
      Sql Server 2008      SEVALAL              MSSQL10.SEVALAL                Database Engine Services                 1033  
                  Express Edition      10.3.5500.0     No        
      Sql Server 2008      SEVALAL              MSSQL10.SEVALAL                SQL Server Replication                   1033
                    Express Edition      10.3.5500.0     No        
      Sql Server 2008 R2                                                       Client Tools Connectivity      
             1033                                      10.50.1600.1    No        
      Sql Server 2008 R2                                                       Client Tools Backwards Compatibility  
      1033                                      10.50.1600.1    No        
      Sql Server 2008 R2                                                       Client Tools SDK        
                    1033                                      10.50.1600.1    No        
    Package properties:
      Description:                   SQL Server Database Services 2008 R2
      ProductName:                   SQL Server 2008 R2
      Type:                          RTM
      Version:                       10
      SPLevel:                       0
      Installation location:         G:\01.SQL Server 2008 R2 FullVersion\x64\setup\
      Installation edition:          STANDARD
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      False
      AGTSVCACCOUNT:                 <empty>
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Manual
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASDOMAINGROUP:                 <empty>
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 *****
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140327_005035\ConfigurationFile.ini
      CUSOURCE:                      
      ENABLERANU:                    False
      ENU:                           True
      ERRORREPORTING:                True
      FARMACCOUNT:                   <empty>
      FARMADMINPORT:                 0
      FARMPASSWORD:                  *****
      FEATURES:                      IS,SSMS,ADV_SSMS,OCS
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  <empty>
      FTSVCPASSWORD:                 *****
      HELP:                          False
      IACCEPTSQLSERVERLICENSETERMS:  False
      INDICATEPROGRESS:              False
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server
      INSTANCEID:                    MSSQLSERVER
      INSTANCENAME:                  MSSQLSERVER
      ISSVCACCOUNT:                  NT AUTHORITY\SYSTEM
      ISSVCPASSWORD:                 *****
      ISSVCSTARTUPTYPE:              Automatic
      NPENABLED:                     0
      PASSPHRASE:                    *****
      PCUSOURCE:                     
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      ROLE:                          <empty>
      RSINSTALLMODE:                 FilesOnlyMode
      RSSVCACCOUNT:                  <empty>
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  <empty>
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 <empty>
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           <empty>
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  True
      TCPENABLED:                    0
      UIMODE:                        Normal
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140327_005035\ConfigurationFile.ini
    Detailed results:
      Feature:                       Integration Services
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management Tools - Complete
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management Tools - Basic
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Microsoft Sync Framework
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140327_005035\SystemConfigurationCheck_Report.htm

  • How to install e business suite on linux 32 bit?

    Hi All,
    Can any body direct me how to install e business suite on linux 32 bit env.
    Thanks.

    LAVANKV wrote:
    Hi All,
    Can any body direct me how to install e business suite on linux 32 bit env.
    Thanks.Interesting Documents Concerning E-Business Suite 11i to R12 Upgrades [ID 850008.1]
    Oracle E-Business Suite Installation Guide Using Rapid Install
    http://docs.oracle.com/cd/E18727_01/doc.121/e12842/toc.htm
    Thanks,
    Hussein

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

  • How to install Java in ASUS EeePC Linux OS?

    Who knows how to install a Java to a Linux OS in ASUS EeePC? I purchased an EeePC 4GB Surf for my programming subjects. But then, I couldn't use the Eclipse if I don't have Java installed on the pc. Do you know how to put Java in a ASUS EeePC 4GB Surf Linux OS?

    Some programs like FrostWire will not work without Java being upgraded. To do this:
    1.
    Use the Synaptic Package manager to add the repository: deb http://geekconnection.org xandros4 main. If you have no clue what that means read Installing software on the EEE - quick beginner's guide on the wiki.
    2.
    After Synaptic has downloaded the files to update the repository; Scroll through the available items to locate xandros-sun-jre1.5; Mark it for installation; Click Apply.
    The approximate size of this installation of Java is 30Mb and it is reported in this thread on the forum that after this version of Java was installed FrostWire works.
    http://wiki.eeeuser.com/howto:upgrade_java?s=java

  • How to install windows server 2012 r2 without remove the current windows 8.1

    how to install windows server 2012 r2 without remove the current windows 8.1

    Use guide below to convert it to 'basic' disk, or install windows on another drive. The supported way is to delete all partitions and convert it to a basic disk.
    https://technet.microsoft.com/en-us/library/cc755238.aspx
    However, your windows 8.1 must be on another drive?, as windows cannot boot from a dynamic disk.
    Best Regards,
    Jesper Vindum, Denmark
    Systems Administrator
    Help the forum: Monitor(alert) your threads and vote helpful replies or mark them as answer, if it helps solving your problem.

  • How to install tfs server 2012

    how to install tfs server 2012

    You can use the below link to install Team foundation server 2012
    http://www.microsoft.com/en-in/download/details.aspx?id=29035
    Prajwal Desai, http://prajwaldesai.com

  • Installing SQL Server 2012 on Linux Ubuntu

    Hello, Can I install SQL Server 2012 on Linux Ubuntu?  So far I can only find downloads of ODBC for Red Hat.  Any ideas?

    Hi Mike,
    Please also take a look at the following article regarding the Operating System requirement to install SQL Server:
    Hardware and Software Requirements for Installing SQL Server 2012:
    http://technet.microsoft.com/en-us/library/ms143506.aspx 
    As Sean said, we can connect to SQL Server via ODBC from Linux Ubuntu. Here are some articles for your reference, please see:
    SQL Server ODBC Driver:
    http://www.easysoft.com/products/data_access/odbc-sql-server-driver/index.html
    Connecting to Microsoft SQL Server using ODBC from Ubuntu Server:
    http://blog.jamesrossiter.co.uk/2011/03/08/connecting-to-microsoft-sql-server-using-odbc-from-ubuntu-server/
    Regards,
    Elvis Long
    TechNet Community Support

  • 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

Maybe you are looking for

  • 5s update/restore fail using itunes

    i backed up my 5s with itunes so i could update my phone from 7.1 to 8.3; The update/restore failed; I have tried repeatedly; my phone is not functional, and I can't even restore to factory settings; In troubleshooting I have done the following: used

  • SUNWlibmx for Solaris 8

    Hi, I need to install Oracle 10g Database on our Sun box (Solaris 8, MU7). One of the pre-requisites is the package SUNWlibmx. Can someone please tell me where I can download this package from. I can't seem to locate it on the Sun site, I'm obviously

  • Save multiple files opened in Preview as one combined document

    Is there a simple way to save multiple files, opened concurrently in Preview, as one document? The situation is that I opened all my on-line, pdf, monthly cell phone invoice files for 2012 at once, and want to save them in one file as "Cell invoices

  • Help on how to study for 1zo-054

    i have gone through the instructor- led and still feel is a rush and a lot of self- reading needs to be done. How should i prepare myself for the exam. I felt the difficulties as in when i prepare for my OCP, i have oracle press books to help me to u

  • HT4061 i lost my ipod how to find it

    i lost my ipod what can i do to find it through apple