Ubuntu server 9.04 or 8.10

hello linux gurus
we have been using redhat since long time, but we plan to change and switch from redhat to ubuntu server
can you suggest and advise what are pros and crons using ubuntu server along with oracle database 10g
is some one has experience in past or currently.
if not use, what are the reasons, if good how good as compare to other linux distribution/flavors
i will be highly appreciated.
regards
salim

OEL/RHEL are platforms which are supported by oracle.
Even if you don't buy support for the oracle products, it's a big plus to have a supported distro because installation guides are available.
RHEL is not free to use, OEL is free to download and use.
For OEL support, see: http://oraclestore.oracle.com/OA_HTML/ibeCZzpHome.jsp?minisite=14405&respid=1435532&grp=STORE&language=US
For redhat support, see: https://www.redhat.com/wapps/store/catalog.html;jsessionid=FVtu0+5bYbvqNgdbKJGOoQ**.4b748952
ubuntu is a non supported platform which is quite distinct from OEL/RHEL (package management for example). this means installing oracle products requires knowledge about operating system and oracle. it is possible to use it, but if you are not an expert, I would definitely not use it.
Centos is a free distro, with community support, which is a recompilation of RHEL, and the intention to be redhat alike (just like OEL). this means software which is intended to run on redhat, can be run with little effort on it.

Similar Messages

  • How to mount a volume on an Ubuntu server in Finder?

    I am a newbe in such advanced functions, but I like to find solutions and it is hard for me to give up.
    I have a MacBook 13,3 and an Ubuntu server. I have managed to connect to the a USB printer connected to the server. But I have not found out how to mount the server in Finder, so that I can use an external disk connected with USB as a Time Machine disk.
    Can anyone help me, and please as simple and basic as possible :-)?

    so i'll admit that I haven't done this but it would seem that since Ubuntu includes Samba you could, from 'Finder' click cmd-k and type in smb://[the path to the share]
    that said I found this on the web:http://www.kremalicious.com/2008/06/ubuntu-as-mac-file-server-and-time-machine-v olume/
    instead of mounting the disk via Samba, it tries to use a more native approach.....that said, this definitely looks more involved.

  • Windows 8.1 Not Seeing Ubuntu Server

    I have been running a file server with Ubuntu Server 14.04.1 as the OS and Samba 4.1.6 to share the files. I was able to connect to the server and access all of its drives from both my desktop and laptop running Windows 7. I
    upgraded my laptop to Windows 8.1 Pro and am now unable to connect to the server or its drives. The server does not show up at all during network discovery.
    I am still able to connect to the server and drives from my desktop that is still running Windows 7. I tried connecting via a direct path from my laptop and got error 0x80004005 and Windows cannot access \\Server message. I have verified
    that the laptop is on the same workgroup as the server and file sharing is turned on and works for connection to my desktop. Is there a new setting in Windows 8.1 that would block my Ubuntu server?

    Hi  Kylep,
    First, you should check whether the "TCP/IP NetBIOS Helper" in services panel is turned on,  the TCP/IP NetBIOS Helper service provides support for the NetBIOS over TCP/IP (NetBT) service and NetBIOS name resolution for clients on your network,
    enabling users to share files, print, and log on to the network.
    Besides, you can try to reset TCP/IP if you are still faced with the same issue:
    To reset TCP/IP
    http://support.microsoft.com/kb/299357
    Regards
    Wade Liu
    TechNet Community Support

  • How do I install Ubuntu server on a mac osx.

    Ubuntu 10.04 sever (getting a mac in a few months)
    I want it to work under the ext4 file system.

    You can test it out in a VM (free, VirtualBox) and OS X has had boot support for Ext2/3 in there. You could run Ubuntu on its own hard drive.
    Don't know Ubuntu server, tried the client, and played around with SuSE 10.
    Mac Pro is... just your basic EFI based workstation using Intel Xeon 5500/3500s

  • 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

  • Flex 3 and connection to remote ubuntu server

    Good morning,
    I'm trying to retrieve the result from a SQL query to populate a datagrid.
    My server is a Ubuntu server on a virtual machine. I created the tables I want to extract information from using MySQLWorkbench and put them on my ubuntu server. Flex is running on my Mac.
    I have the following code in the mxml file of my Flex project:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="rest_service.send()">
        <mx:HTTPService id="rest_service" url="http://192.168.56.101/testhtml.php"/>
        <mx:DataGrid left="0" right="0" top="0" bottom="0"
            dataProvider="{rest_service.lastResult.people.person}">
            <mx:columns>
               <mx:DataGridColumn headerText="Test ID" dataField="userid"/>
               <mx:DataGridColumn headerText="Name" dataField="username"/>
               <mx:DataGridColumn headerText="Email" dataField="emailaddress"/> 
            </mx:columns>
        </mx:DataGrid>
    </mx:Application>
    The testhtml.php file is on the server (in the /var/www/ folder) and looks like this:
    <?php
       require ("Connection.php");
    $db_handle = mysql_connect($server, $user_name, $password);
    $db_found = mysql_select_db($database, $db_handle);
    if ($db_found) {
    $Query = "SELECT * from users";
    $Result = mysql_query( $Query );
    //print "allo?" . "<br/>";
    echo htmlspecialchars('<?xml version="1.0" encoding="utf-8"?>')."<br/>";
    echo htmlspecialchars('<people>')."<br/>";
    //print '<people>';
    // Iterate through the rows, printing XML nodes for each
    while( $Row = mysql_fetch_object( $Result ) )
      echo "      ";
      echo htmlspecialchars('<person>') . "<br/>" ;
      echo "            ";
      echo htmlspecialchars('<userid>'.$Row->userid.'') ;
      echo htmlspecialchars('</userid>') . "<br/>";
      echo "            ";
      echo htmlspecialchars('<username>'.$Row->username.'');
      echo htmlspecialchars('</username>') . "<br/>";
      echo "            ";
      echo htmlspecialchars('<emailaddress>'.$Row->emailaddress.'');
      // echo htmlspecialchars('<emailaddress>"'.$Row->emailaddress.'"');
      echo htmlspecialchars('</emailaddress>') . "<br/>";
      echo "      ";
      echo htmlspecialchars('</person>') . "<br/>" ;
    echo htmlspecialchars('</people>');
    mysql_close($db_handle);
    else {
    print "Database NOT Found ";
    mysql_close($db_handle);
    ?>
    I tested the php file by typing http://192.168.56.101/testhtml.php in my web browser and I get the xml code expected. The problem is that I don't think Flex is actually connecting to the server.... I have noticed that when you create a new project you can select an application server type but I have no idea what to put for the web root and the root url (I picked php in the list of options for the server type).
    My server is not hosted on my machine but on a virtual machine. Is there something I need to install on my server, and if yes, on which folder?
    Your help would be greatly appreciated. I'm a newbie and have lots to learn and I have been stuck on this for a while now.
    Thank you again,
    supernous

    Forget it. I'm an idiot.
    I forgot to active the "Allow remote admin" setting again

  • HPE-390t - Ubuntu Server

    My HPE-390t machine currently has 2 x 1 TB regular HDD's in them in a RAID 1 configuration (so I get total space of around 1 TB only).  It is also running Windows 7 Ultimate 64-bit.
    However, I'd like to re-purpose it as an Ubuntu server, but have the following questions:
    1) Will Ubuntu server work with the (hardware?) RAID system in the machine currently?  I would love to have RAID1 redundancy so if one of my two drives dies, I can swap it out with a new one and not have to risk data loss (or recovery from backup and rebuilding my server)
    2) I'd like to put 2 x 4 TB drives in the machine (replacing the 2 x 1 TB drives), but I believe you need UEFI to support GPT that supports drives greater than 2 TB.  However, I have no idea if my machine supports that, or even if there are different requirements because of the RAID implementation.  Anyone know if the 4 TB drives will work, and will work with the RAID?
    Any help or information is greatly appreciated!  Thanks.

    Hi,
    RAID 1 is limited to using 2 TB hard drives. (2 x 2TB)
    Perhaps an external storage solution might work for critical data storage.  Look over Drobo but there are other brands available.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • Which version of Ubuntu server is supported as win2012R1 Hyper-V guest ?

    I tried to install latest stable Ubuntu to win2012R1 Hyper-V but failed.
    Which version of Ubuntu server is supported as win2012R1 Hyper-V guest ?

    Ubuntu 12.04 and 12.10
    Ubuntu 13.04 and 13.10
    http://technet.microsoft.com/library/cc794868%28WS.10%29.aspx
    If youre getting correct answer please mark this reply as answer
    Darshana Jayathilake

  • NFS - Solaris 10 client from Ubuntu server gives Rpcbind error

    Hello All,
    New to Solaris, and I've been scouring the Internet to find a solution, but none have been produced. I'll start by giving you details about the setups, and then go into the error:
    Server Setup:
    Ubuntu 8.04
    Exports file ->
    /home/<folder> <Solaris 10 Server DNS name>(rw,no_subtree_check,async)
    Client Setup:
    Solaris 10
    Set /etc/default/nfs to have NFS_CLIENT_VERSMAX=3
    Ran svcadm -v enable -r network/nfs/client and then tried
    mount -F nfs <Ubuntu Server DNS name>:/home/<folder> /mnt/test/
    and all I ever get are Rpcbind failure - RPC: Timed Out and then it says it's retrying: /mnt/test
    I've gotten the firewall out of the way, I can ping the Ubuntu server from the Solaris server and vice versa, and I'm able to mount the Ubuntu NFS share on another Ubuntu machine perfectly, but I can't get it to mount on the Solaris server. If I specify v3 of NFS, that doesn't change anything. If I specify v4 of NFS, I get the error that the file or folder doesn't exist on the Ubuntu server.
    Any ideas? Any more info needed?

    This is the exact same problem I've been having. My server is Ubuntu 8.10, and the client is Solaris 10. This is on my home network, so I'm pretty confident it isn't a network issue. I do NFS all the time at work between Solaris machines, but I'm stumped on this one. I've noticed there are similar threads on the topic with no real answer that I have found --
    http://www.linuxquestions.org/questions/linux-networking-3/nfs-server-on-ubuntu-doesnt-play-nice-with-nfs-client-on-solaris-626508/
    I did a dfshares from the Solaris box, and I actually get a response listing the shares. Even though I can see it I still can't mount it. Here is what I see:
    bash-3.00# dfshares tabasco
    RESOURCE SERVER ACCESS TRANSPORT
    tabasco:/media/Shared tabasco - -
    bash-3.00# mount -F nfs -o ro tabasco:/media/Shared /mnt
    nfs mount: tabasco:/media/Shared: No such file or directory
    bash-3.00#
    NFS is working on the server, as I can mount it locally (see below)
    root@tabasco:/# cat /etc/exports
    /media/Shared *(ro,sync)
    root@tabasco:/# mount tabasco:/media/Shared /mnt
    root@tabasco:/# cd /mnt
    root@tabasco:/mnt# ls
    Videos lost+found Music Pictures Other
    root@tabasco:/mnt#
    Yes... my server''s name is tabasco... remember it's a home network... and I like Tabasco... :)

  • How To Install VMware Server 2.0.2 On Ubuntu Server 12.10

    Someone could help me install vmware server 2.0.2  in ubuntu server 12.10.
    Thank you very much in advance.

    Run this from the command line:
         sudo vmware-modconfig --console --install-all
    Then start the vm player.

  • Can't Install oracle 10g on Linux Ubuntu server

    Hi all,
    I was looking for the oracle 10g client to install in a Ubuntu Server but When I am trying to install it is giving me the following error:
    Checking Installer Requirements...
    Checking operational system version: must be redhat-3, suse 9, redhat-4.... and other <<<Failed
    All the forums I've search I only find people installing Oracle-xe version but I don't want the express version.
    Is there a way to install the oracle 10g version on a ubuntu server?
    Could'nt find the 10g forum that is why I am posting here.
    Thanks in advance.

    Hi,
    Ubuntu is not supported OS.
    You can check these blogs
    For client
    http://thisbrokenworld.wordpress.com/2008/04/10/oracle-10g-client-tools-on-ubuntu-710/
    For database
    http://revtech0.ash.com/blog/45254/entry/482/installing-oracle-10gr2-on-gutsy.html
    http://www.makina-corpus.org/blog/how-install-oracle-10g-full-64-bits-version-not-xe-and-tora-gnu-linux-ubuntu-karmic-910-64-bits
    http://www.excession.org.uk/blog/installing-oracle-on-ubuntu-karmic-64-bit.html
    Regards,
    Jari

  • Crash on Ubuntu Server

    Hello,
    I'm in the process of migrating an application from one server to another, from a Debian Sarge box, to a Ubuntu Server 8.04 box, and have already installed all the necessary softwares, including BDB XML 2.2.13 (which is the same version the DB was created).
    But, when Tomcat 5.5.15 (using JDK 1.5.0_06) is starting, I get this JVM crash save in this log: http://freeunix.com.br/hs_err_pid13814.log
    Which I believe it's happening when trying to initialize the environment. Is there any known bug associated to this error message, Linux or JVM version? Any missing libs? This is the last part of the migration that still needs to be solved.
    thanks in advance,
    - Breno
    Message was edited by:
    BrenoJac

    Just an add-on, I tried removing all delete() calls and still get the same error:
    com.sleepycat.dbxml.XmlException: Error: Either the manager that created this document, or the results set that return it, has been deleted, cannot access the document., errcode = INVALID_VALUE
    at com.sleepycat.dbxml.dbxml_javaJNI.HelperFunctions_createDocumentValue(Native Method)
    at com.sleepycat.dbxml.HelperFunctions.createDocumentValue(HelperFunctions.java:91)
    at com.sleepycat.dbxml.XmlValue.<init>(XmlValue.java:72)
    at br.gov.al.delegaciainterativa.controles.Update.atualizaXml(Update.java:153)
    at br.gov.al.delegaciainterativa.bo.GerenciaBO.mudarStatusBO(GerenciaBO.java:327)
    at br.gov.al.delegaciainterativa.bo.GerenciaBO.mudarStatusParaProcessamento(GerenciaBO.java:289)
    at org.apache.jsp.admin.boEsperaVisualizarEPerguntar_jsp._jspService(org.apache.jsp.admin.boEsperaVisualizarEPerguntar_jsp:235)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:667)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Thread.java:619)
    The method that is doing the update:
    public void atualizaXml (String queryDoc, String queryNode, String novoValor) {
    XmlQueryContext contexto;
    XmlUpdateContext uc;
    XmlModify mod;
    try {
    contexto = envInit.getManager().createQueryContext();
    uc = envInit.getManager().createUpdateContext();
    mod = envInit.getManager().createModify();
    XmlQueryExpression select = envInit.getManager().prepare(queryNode, contexto);
    mod.addUpdateStep(select, novoValor);
    Search search = new Search(envInit,container);
    ArrayList lista = search.searchToArrayList(queryDoc, true);
    if (lista.size() > 0){
         XmlDocument doc = (XmlDocument)lista.get(0);
         XmlValue value = new XmlValue (doc);
         mod.execute(value,contexto, uc); //realiza modficação.*/
         // value.delete();
         // doc.delete();
    //contexto.delete();
    // uc.delete(); 2.4.13 removed
    //mod.delete();
    } catch (XmlException e) {
    e.printStackTrace();
    System.out.println("Erro na update");
    } catch (Throwable e) {
    e.printStackTrace();
    regards,
    - Breno

  • Problem installing DBXML on Ubuntu Server

    I'm trying to to install DBXML on a new Ubuntu Server. I've downloaded the 2.3.10 kit, and untar'd it intp /usr/local/dbxml-2.3.10.
    The output of sh buildall.sh and the contents of config.log are below
    Am I missing something in the server config??
    Thanks,
    ===================
    When I try to buildall.sh, I get the following:
    oaadmin@soa002:/usr/local/dbxml-2.3.10$ sudo sh buildall.sh
    Start DB build: Wed May 30 15:03:52 MDT 2007
    Configuring Berkeley DB
    checking build system type... i686-pc-linux-gnulibc1
    checking host system type... i686-pc-linux-gnulibc1
    checking if building in the top-level or dist directories... no
    checking if --disable-cryptography option specified... no
    checking if --disable-hash option specified... no
    checking if --disable-queue option specified... no
    checking if --disable-replication option specified... no
    checking if --disable-statistics option specified... no
    checking if --disable-verify option specified... no
    checking if --enable-compat185 option specified... no
    checking if --enable-cxx option specified... yes
    checking if --enable-debug option specified... no
    checking if --enable-debug_rop option specified... no
    checking if --enable-debug_wop option specified... no
    checking if --enable-diagnostic option specified... no
    checking if --enable-dump185 option specified... no
    checking if --enable-java option specified... no
    checking if --enable-mingw option specified... no
    checking if --enable-o_direct option specified... no
    checking if --enable-posixmutexes option specified... no
    checking if --enable-pthread_api option specified... no
    checking if --enable-rpc option specified... no
    checking if --enable-smallbuild option specified... no
    checking if --enable-tcl option specified... no
    checking if --enable-test option specified... no
    checking if --enable-uimutexes option specified... no
    checking if --enable-umrw option specified... no
    checking if --with-mutex=MUTEX option specified... no
    checking if --with-tcl=DIR option specified... no
    checking if --with-uniquename=NAME option specified... no
    checking for ar... ar
    checking for chmod... chmod
    checking for cp... cp
    checking for ln... ln
    checking for mkdir... mkdir
    checking for ranlib... ranlib
    checking for rm... rm
    checking for sh... /bin/sh
    checking for strip... strip
    checking for a BSD-compatible install... /usr/bin/install -c
    checking for C compiler default output file name... configure: error: C compiler cannot create executables
    See `config.log' for more details.
    ===================================
    The only config.log I can find is in db-4.5.20/build_unix, and contains:
    This file contains any messages produced by compilers while
    running configure, to aid debugging if configure makes a mistake.
    It was created by Berkeley DB configure 4.5.20, which was
    generated by GNU Autoconf 2.60. Invocation command line was
    $ ../dist/configure prefix=/usr/local/dbxml-2.3.10/install enable-cxx
    ## Platform. ##
    hostname = soa002
    uname -m = i686
    uname -r = 2.6.17-10-generic
    uname -s = Linux
    uname -v = #2 SMP Fri Oct 13 18:45:35 UTC 2006
    /usr/bin/uname -p = unknown
    /bin/uname -X = unknown
    /bin/arch = i686
    /usr/bin/arch -k = unknown
    /usr/convex/getsysinfo = unknown
    /usr/bin/hostinfo = unknown
    /bin/machine = unknown
    /usr/bin/oslevel = unknown
    /bin/universe = unknown
    PATH: /usr/local/sbin
    PATH: /usr/local/bin
    PATH: /usr/sbin
    PATH: /usr/bin
    PATH: /sbin
    PATH: /bin
    PATH: /usr/X11R6/bin
    ## Core tests. ##
    configure:2052: checking build system type
    configure:2070: result: i686-pc-linux-gnulibc1
    configure:2092: checking host system type
    configure:2107: result: i686-pc-linux-gnulibc1
    configure:2144: checking if building in the top-level or dist directories
    configure:2160: result: no
    configure:2244: checking if --disable-cryptography option specified
    configure:2257: result: no
    configure:2261: checking if --disable-hash option specified
    configure:2274: result: no
    configure:2278: checking if --disable-queue option specified
    configure:2291: result: no
    configure:2295: checking if --disable-replication option specified
    configure:2308: result: no
    configure:2312: checking if --disable-statistics option specified
    configure:2325: result: no
    configure:2329: checking if --disable-verify option specified
    configure:2342: result: no
    configure:2346: checking if --enable-compat185 option specified
    configure:2355: result: no
    configure:2358: checking if --enable-cxx option specified
    configure:2367: result: yes
    configure:2370: checking if --enable-debug option specified
    configure:2379: result: no
    configure:2382: checking if --enable-debug_rop option specified
    configure:2391: result: no
    configure:2394: checking if --enable-debug_wop option specified
    configure:2403: result: no
    configure:2406: checking if --enable-diagnostic option specified
    configure:2430: result: no
    configure:2434: checking if --enable-dump185 option specified
    configure:2443: result: no
    configure:2446: checking if --enable-java option specified
    configure:2455: result: no
    configure:2458: checking if --enable-mingw option specified
    configure:2467: result: no
    configure:2470: checking if --enable-o_direct option specified
    configure:2479: result: no
    configure:2482: checking if --enable-posixmutexes option specified
    configure:2491: result: no
    configure:2502: checking if --enable-pthread_api option specified
    configure:2515: result: no
    configure:2526: checking if --enable-rpc option specified
    configure:2535: result: no
    configure:2538: checking if --enable-smallbuild option specified
    configure:2555: result: no
    configure:2558: checking if --enable-tcl option specified
    configure:2567: result: no
    configure:2570: checking if --enable-test option specified
    configure:2579: result: no
    configure:2582: checking if --enable-uimutexes option specified
    configure:2591: result: no
    configure:2594: checking if --enable-umrw option specified
    configure:2603: result: no
    configure:2606: checking if --with-mutex=MUTEX option specified
    configure:2624: result: no
    configure:2638: checking if --with-tcl=DIR option specified
    configure:2648: result: no
    configure:2654: checking if --with-uniquename=NAME option specified
    configure:2667: result: no
    configure:2778: checking for ar
    configure:2794: found /usr/bin/ar
    configure:2805: result: ar
    configure:2878: checking for chmod
    configure:2894: found /bin/chmod
    configure:2905: result: chmod
    configure:2978: checking for cp
    configure:2994: found /bin/cp
    configure:3005: result: cp
    configure:3181: checking for ln
    configure:3197: found /bin/ln
    configure:3208: result: ln
    configure:3281: checking for mkdir
    configure:3297: found /bin/mkdir
    configure:3308: result: mkdir
    configure:3383: checking for ranlib
    configure:3399: found /usr/bin/ranlib
    configure:3410: result: ranlib
    configure:3480: checking for rm
    configure:3496: found /bin/rm
    configure:3507: result: rm
    configure:3689: checking for sh
    configure:3707: found /bin/sh
    configure:3719: result: /bin/sh
    configure:3796: checking for strip
    configure:3812: found /usr/bin/strip
    configure:3823: result: strip
    configure:3865: checking for a BSD-compatible install
    configure:3921: result: /usr/bin/install -c
    configure:4124: checking for C compiler version
    configure:4131: gcc --version >&5
    gcc (GCC) 4.1.2 20060928 (prerelease) (Ubuntu 4.1.1-13ubuntu5)
    Copyright (C) 2006 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    configure:4134: $? = 0
    configure:4141: gcc -v >&5
    Using built-in specs.
    Target: i486-linux-gnu
    Configured with: ../src/configure -v enable-languages=c,c++,fortran,objc,obj-c++,treelang prefix=/usr enable-shared with-system-zlib libexecdir=/usr/lib without-included-gettext enable-threads=posix enable-nls program-suffix=-4.1 enable-__cxa_atexit enable-clocale=gnu enable-libstdcxx-debug enable-mpfr enable-checking=release i486-linux-gnu
    Thread model: posix
    gcc version 4.1.2 20060928 (prerelease) (Ubuntu 4.1.1-13ubuntu5)
    configure:4144: $? = 0
    configure:4151: gcc -V >&5
    gcc: '-V' option must have argument
    configure:4154: $? = 1
    configure:4177: checking for C compiler default output file name
    configure:4204: gcc -O -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
    /usr/bin/ld: crt1.o: No such file: No such file or directory
    collect2: ld returned 1 exit status
    configure:4207: $? = 1
    configure: failed program was:
    | /* confdefs.h. */
    | #define PACKAGE_NAME "Berkeley DB"
    | #define PACKAGE_TARNAME "db-4.5.20"
    | #define PACKAGE_VERSION "4.5.20"
    | #define PACKAGE_STRING "Berkeley DB 4.5.20"
    | #define PACKAGE_BUGREPORT "Oracle Technology Network Berkeley DB forum"
    | /* end confdefs.h. */
    |
    | int
    | main ()
    | {
    |
    | ;
    | return 0;
    | }
    configure:4246: error: C compiler cannot create executables
    See `config.log' for more details.
    ## Cache variables. ##
    ac_cv_build=i686-pc-linux-gnulibc1
    ac_cv_env_CCC_set=
    ac_cv_env_CCC_value=
    ac_cv_env_CC_set=set
    ac_cv_env_CC_value=gcc
    ac_cv_env_CFLAGS_set=
    ac_cv_env_CFLAGS_value=
    ac_cv_env_CPPFLAGS_set=
    ac_cv_env_CPPFLAGS_value=
    ac_cv_env_CPP_set=
    ac_cv_env_CPP_value=
    ac_cv_env_CXXCPP_set=
    ac_cv_env_CXXCPP_value=
    ac_cv_env_CXXFLAGS_set=
    ac_cv_env_CXXFLAGS_value=
    ac_cv_env_CXX_set=set
    ac_cv_env_CXX_value=g++
    ac_cv_env_F77_set=
    ac_cv_env_F77_value=
    ac_cv_env_FFLAGS_set=
    ac_cv_env_FFLAGS_value=
    ac_cv_env_LDFLAGS_set=
    ac_cv_env_LDFLAGS_value=
    ac_cv_env_build_alias_set=
    ac_cv_env_build_alias_value=
    ac_cv_env_host_alias_set=
    ac_cv_env_host_alias_value=
    ac_cv_env_target_alias_set=
    ac_cv_env_target_alias_value=
    ac_cv_host=i686-pc-linux-gnulibc1
    ac_cv_path_ac_pt_db_cv_path_sh=/bin/sh
    ac_cv_path_install='/usr/bin/install -c'
    ac_cv_prog_ac_ct_AR=ar
    ac_cv_prog_ac_ct_CHMOD=chmod
    ac_cv_prog_ac_ct_CP=cp
    ac_cv_prog_ac_ct_LN=ln
    ac_cv_prog_ac_ct_MKDIR=mkdir
    ac_cv_prog_ac_ct_RANLIB=ranlib
    ac_cv_prog_ac_ct_RM=rm
    ac_cv_prog_ac_ct_STRIP=strip
    ac_pt_db_cv_path_sh=/bin/sh
    db_cv_build_cryptography=yes
    db_cv_build_hash=yes
    db_cv_build_queue=yes
    db_cv_build_replication=yes
    db_cv_build_statistics=yes
    db_cv_build_verify=yes
    db_cv_compat185=no
    db_cv_cxx=yes
    db_cv_debug=no
    db_cv_debug_rop=no
    db_cv_debug_wop=no
    db_cv_diagnostic=no
    db_cv_dump185=no
    db_cv_java=no
    db_cv_mingw=no
    db_cv_o_direct=no
    db_cv_path_sh=/bin/sh
    db_cv_posixmutexes=no
    db_cv_pthread_api=no
    db_cv_rpc=no
    db_cv_smallbuild=no
    db_cv_tcl=no
    db_cv_test=no
    db_cv_uimutexes=no
    db_cv_umrw=no
    db_cv_uniquename=no
    ## Output variables. ##
    ADDITIONAL_INCS=''
    ADDITIONAL_LANG=''
    ADDITIONAL_OBJS=''
    ADDITIONAL_PROGS=''
    AR='ar'
    BUILD_TARGET='library_build'
    CC='gcc'
    CCC=''
    CFLAGS='-O'
    CHMOD='chmod'
    CONFIGURATION_ARGS=''
    CONFIGURATION_PATH=''
    CP='cp'
    CPP=''
    CPPFLAGS=' -D_GNU_SOURCE -D_REENTRANT'
    CRYPTO_OBJS=''
    CXX='g++'
    CXXCPP=''
    CXXFLAGS='-O'
    DB_CONST=''
    DB_PROTO1=''
    DB_PROTO2=''
    DB_VERSION_MAJOR='4'
    DB_VERSION_MINOR='5'
    DB_VERSION_PATCH='20'
    DB_VERSION_STRING='"Berkeley DB 4.5.20: (September 20, 2006)"'
    DB_VERSION_UNIQUE_NAME=''
    DEFAULT_LIB=''
    DEFAULT_LIB_CXX=''
    DEFS=''
    ECHO='echo'
    ECHO_C=''
    ECHO_N='-n'
    ECHO_T=''
    EGREP=''
    EXEEXT=''
    F77=''
    FFLAGS=''
    GREP=''
    INSTALLER=''
    INSTALL_DATA='${INSTALL} -m 644'
    INSTALL_LIBS=''
    INSTALL_PROGRAM='${INSTALL}'
    INSTALL_SCRIPT='${INSTALL}'
    INSTALL_TARGET='library_install'
    INT64_FMT=''
    JAR=''
    JAVA=''
    JAVAC=''
    JAVACFLAGS=''
    JMODSUFFIX=''
    KILL=''
    LDFLAGS=''
    LIBCSO_LIBS=''
    LIBJSO_LIBS=''
    LIBOBJS=''
    LIBS=''
    LIBSO_LIBS=''
    LIBTOOL=''
    LIBTSO_LIBS=''
    LIBTSO_MODSUFFIX=''
    LIBTSO_MODULE=''
    LIBXSO_LIBS=''
    LN='ln'
    LN_S=''
    LTLIBOBJS=''
    MAKEFILE_CC=''
    MAKEFILE_CCLINK=''
    MAKEFILE_CXX=''
    MAKEFILE_CXXLINK=''
    MAKEFILE_SOLINK=''
    MAKEFILE_XSOLINK=''
    MKDIR='mkdir'
    MODSUFFIX=''
    OBJEXT=''
    OSDIR=''
    PACKAGE_BUGREPORT='Oracle Technology Network Berkeley DB forum'
    PACKAGE_NAME='Berkeley DB'
    PACKAGE_STRING='Berkeley DB 4.5.20'
    PACKAGE_TARNAME='db-4.5.20'
    PACKAGE_VERSION='4.5.20'
    PATH_SEPARATOR=':'
    POSTLINK=''
    RANLIB='ranlib'
    REPLACEMENT_OBJS=''
    RM='rm'
    RPCGEN=''
    RPC_CLIENT_OBJS=''
    RPC_SERVER_H=''
    SHELL='/bin/bash'
    SOFLAGS=''
    SOSUFFIX=''
    STRIP='strip'
    SWIGCFLAGS=''
    TCL_BIN_DIR=''
    TCL_INCLUDE_SPEC=''
    TCL_LIB_FILE=''
    TCL_SRC_DIR=''
    TCL_TCLSH=''
    TEST_LIBS=''
    UINT64_FMT=''
    ACJNIJAVAC=''
    ac_ct_CC=''
    ac_ct_CXX=''
    ac_ct_F77=''
    bindir='${exec_prefix}/bin'
    build='i686-pc-linux-gnulibc1'
    build_alias=''
    build_cpu='i686'
    build_os='linux-gnulibc1'
    build_vendor='pc'
    cxx_have_stdheaders=''
    datadir='${datarootdir}'
    datarootdir='${prefix}/share'
    db_cv_path_sh='/bin/sh'
    db_int_def=''
    db_seq_decl=''
    db_threadid_t_decl=''
    docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
    dvidir='${docdir}'
    exec_prefix='NONE'
    host='i686-pc-linux-gnulibc1'
    host_alias=''
    host_cpu='i686'
    host_os='linux-gnulibc1'
    host_vendor='pc'
    htmldir='${docdir}'
    includedir='${prefix}/include'
    infodir='${datarootdir}/info'
    int16_decl=''
    int32_decl=''
    int64_decl=''
    inttypes_h_decl=''
    libdir='${exec_prefix}/lib'
    libexecdir='${exec_prefix}/libexec'
    localedir='${datarootdir}/locale'
    localstatedir='${prefix}/var'
    mandir='${datarootdir}/man'
    o=''
    oldincludedir='/usr/include'
    pdfdir='${docdir}'
    pid_t_decl=''
    platform_footer=''
    platform_header=''
    prefix='/usr/local/dbxml-2.3.10/install'
    program_transform_name='s,x,x,'
    psdir='${docdir}'
    sbindir='${exec_prefix}/sbin'
    sharedstatedir='${prefix}/com'
    ssize_t_decl=''
    stddef_h_decl=''
    stdint_h_decl=''
    sysconfdir='${prefix}/etc'
    target_alias=''
    thread_h_decl=''
    u_char_decl=''
    u_int16_decl=''
    u_int32_decl=''
    u_int64_decl=''
    u_int8_decl=''
    u_int_decl=''
    u_long_decl=''
    u_short_decl=''
    uintmax_t_decl=''
    uintptr_t_decl=''
    unistd_h_decl=''
    uudecode=''
    ## confdefs.h. ##
    #define PACKAGE_NAME "Berkeley DB"
    #define PACKAGE_TARNAME "db-4.5.20"
    #define PACKAGE_VERSION "4.5.20"
    #define PACKAGE_STRING "Berkeley DB 4.5.20"
    #define PACKAGE_BUGREPORT "Oracle Technology Network Berkeley DB forum"
    configure: exit 77

    Hi,
    It looks to me like you do not have the required compiler installed on Ubuntu.
    When using gcc/g++, Berkeley DB XML requires at least a 3.x release of gcc.
    http://www.oracle.com/technology/documentation/berkeley-db/xml/ref_xml/xml_unix/intro.html
    Ron

  • WOO! CFMX7, Ubuntu Server, Apache 2.2 FINALLY

    It took three weeks, but I finally got it all figured out.
    Ubuntu server install does not install anything you need.
    There is an ubuntu coldfusion guide, but he did not install on
    ubuntu server.
    If there is interest, I will post a small guide to on how to
    do it. I wrote down all the steps I took, but it's a mess.

    Since it's been 2 months and solosier2 han't replied, I'll
    post how I was able to get CFMX 7.0.2 to run with Apache 2.2.3.
    See what worked for me
    here.
    I came to this thread when I was trying to make it work. So,
    hopefully this will help the next person.

  • Parsed HTML/SSI not working in Web Server 7 on Ubuntu Server 9.10

    Please help. I have SJSWS 7.0u6 on Ubuntu Server 9.10. The HTML parsing is set to parse all HTML files.
    My HTML code is:
    <body>
      <!--#include file="includes/corner.html"-->
      <div id="maincontent">
         <!--#echo var="DATE_GMT"-->
      </div>
    </body>I added the echo command later to rule out an error with my include file. I even took out the include command to rule it out completely. If I "view/page source" from firefox I allways get the code as it is above in its origonal form. The server is completely ignoring the include and the echo.
    In the virtual server settings under content handling / Parsed HTML/SSI I have tried "all HTML" and "executable HTML". Both return the same result, which is no parsing whatsoever. The log is set to "finest" and so far no errors have come up. Please tell me what I am doing wrong, did I miss a step, overlook some extra settings?
    I am happy to provide more detail. Just let me know what you need to see.
    Thank you.
    update: I tested another bare bones html and got the same results, no parsing.
    Seen here : [http://kenbuxton.net/test.html]
    Edited by: Ken_Buxton on Nov 17, 2009 7:53 PM

    Deploy the configuration? Is there something beyond clicking save and restarting the instance? I checked the server.xml config file and the log level was at "info" even though I set it for "finest" in the GUI. I am now getting the finest details in the logs after I changed the server.xml file manualy. Here is what I am getting for test.html. ...
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, process-uri-objects reports: processing objects for URI /test.html
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, process-uri-objects reports: processing object name="default"
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: executing fn="match-browser" browser="*MSIE*" ssl-unclean-shutdown="true" Directive="AuthTrans" magnus-internal="1"
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: fn="match-browser" browser="*MSIE*" ssl-unclean-shutdown="true" Directive="AuthTrans" magnus-internal="1" returned -2 (REQ_NOACTION)
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: executing fn="ntrans-j2ee" name="j2ee" Directive="NameTrans"
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: fn="ntrans-j2ee" name="j2ee" Directive="NameTrans" returned -2 (REQ_NOACTION)
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: executing fn="pfx2dir" from="/mc-icons" dir="/sun/webserver7/lib/icons" name="es-internal" Directive="NameTrans"
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: fn="pfx2dir" from="/mc-icons" dir="/sun/webserver7/lib/icons" name="es-internal" Directive="NameTrans" returned -2 (REQ_NOACTION)
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: executing fn="uri-clean" Directive="PathCheck"
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: fn="uri-clean" Directive="PathCheck" returned 0 (REQ_PROCEED)
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: executing fn="find-pathinfo" Directive="PathCheck"
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: fn="find-pathinfo" Directive="PathCheck" returned -2 (REQ_NOACTION)
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: executing fn="find-index-j2ee" Directive="PathCheck"
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: fn="find-index-j2ee" Directive="PathCheck" returned -2 (REQ_NOACTION)
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: executing fn="find-index" index-names="index.html,home.html,index.jsp" Directive="PathCheck"
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: fn="find-index" index-names="index.html,home.html,index.jsp" Directive="PathCheck" returned -2 (REQ_NOACTION)
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: executing fn="type-j2ee" Directive="ObjectType"
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: fn="type-j2ee" Directive="ObjectType" returned 0 (REQ_PROCEED)
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: executing fn="type-by-extension" Directive="ObjectType"
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: fn="type-by-extension" Directive="ObjectType" returned 0 (REQ_PROCEED)
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: executing fn="force-type" type="text/plain" Directive="ObjectType"
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: fn="force-type" type="text/plain" Directive="ObjectType" returned 0 (REQ_PROCEED)
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: executing method="(GET|HEAD|POST)" type="*~magnus-internal/*" fn="send-file" Directive="Service"
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: method="(GET|HEAD|POST)" type="*~magnus-internal/*" fn="send-file" Directive="Service" returned -1 (REQ_ABORTED)
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: executing fn="error-j2ee" Directive="Error"
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: fn="error-j2ee" Directive="Error" returned -2 (REQ_NOACTION)
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: executing fn="flex-log" Directive="AddLog"
    [19/Nov/2009:10:48:37] finest ( 6266): for host 174.17.99.6 trying to GET /test.html, func_exec reports: fn="flex-log" Directive="AddLog" returned 0 (REQ_PROCEED)

Maybe you are looking for

  • Won't connect to internet, help please

    I am back in my apartment at school and they replaced the cable with just another one, almost the same thing, but the problem is that when i connect the cable straight to my CPU it works fine, but when i plug the cable into my airport express it just

  • Recording to tape from the timeline

    I'm trying to get my sequence onto tape by recording from the timeline.  I'm able to capture footage from camera (Canon XLH1), but when I try to export to tape, my cam is not recognized.  I've checked the manual settings and have checked the control

  • File opened as an old version

    I recently created a file in Illustrator CS6 (Creative Cloud version), and saved it as PDF with illustrator editing capabillities preserved. It saved fine, but when I opened the file in Illustrator CS6 again for more editing today, it gave me an earl

  • 2 "portfolios" in lightroom

    I have been using lightroom for my website   f64architecture.com  for the past 2 years & have been very happy with it. However I now want to split my site into 2 areas, 1)  My business images  & 2) my fine art/personal images. When visitors open my s

  • My 13" MBP froze during the 10.8.5 update.

    My wife's computer has been running on 10.6 until I convinced her to let me update it to 10.8. I bought 10.8, installed it, and it ran fine. After it was done and the computer was set up, I checked for updates to install the latest version of everyth