Outdated ghostscript in OEL-5.2

I would appreciate if someone could explain why Oracle is late more than 30 days (11-JUN-2008) by updating the ghostscript package (8.5.2-9.1 => 8.5.2-9.3) ???
Actual OEL-5.2 version (outdated):
Feb 28 2008     ghostscript-8.15.2-9.1.el5_1.1.i386          A PostScript(TM) interpreter and renderer.
Feb 28 2008     ghostscript-devel-8.15.2-9.1.el5_1.1.i386     Files for developing applications that use ghostscript.
Feb 28 2008     ghostscript-gtk-8.15.2-9.1.el5_1.1.i386          A GTK-enabled PostScript(TM) interpreter and renderer.
Actual RHEL-5.2 version:
Jun 11 2008     ghostscript-8.15.2-9.3.el5.i386.rpm
Jun 11 2008     ghostscript-devel-8.15.2-9.3.el5.i386.rpm
Jun 11 2008     ghostscript-gtk-8.15.2-9.3.el5.i386.rpmThe actual version in OEL-5.2 is outdated more than 3 months (28-FEB-2008 : 11-JUN-2008).

DNS lookup is configured as outlined in the previous reply. But, looking at your /etc/hosts file:
10.103.10.125 ; oen11g.grid.com oen11g I would remove the semicolon.
Btw, the hosts file is also somewhat different in Linux since it puts the name of the server at the same line of localhost.
The Oracle installer expects it there.. e.g.: 127.0.0.1 gird.example.com grid localhost.localdomain localhost
You can use e.g. export  ORACLE_HOSTNAME=grid.example.com to work-around the issue.

Similar Messages

  • Package install error on OEL 4...

    OEL 4 Update 6 32-bit on AMD Athlon 64 X2 (Home Desktop PC)
    Hi All,
    I am installing Oracle Enterprise Linux 4 and when the package installation begins after sometime I got the following error:
    There was an error installing <package_name>. This can indicate media failure, lack of disk space, and/or hardware problems. This is a fatal error and your install will be aborted. Please verify your media and try your install again.
    Initially, it failed on the ghostscript package. So then I went back and didn't select to install the graphics packages. The second time it was the foomatic package. I'm not sure why it is doing this. I have a brand new system (everything) and I am trying to install it on a brand new 200GB SATA hard drive. I checked my install CD's and they all passed the test. I even checked my memory with memtest86.
    Any suggestions would help.
    Thanks

    New hardware can also be broken. A little less unlikely than old hardware, but still a possibility.
    I think your conclusion is a little unlikely, because:
    -If your session is busy installing the packages, it means you've done partitioning, at least one partition or logical volume has gotten a filesystem.
    -The first package which gets installed is (don't know for sure, I'm doing this from memory) either the "filesystem" package or the "glibc" package. If your hardware is incompatible, it would very likely fail at the first package, not at some package during the install.
    That means that -probably- something else is going wrong. To get a solution, you need to know what is going wrong, which is in most cases on one of the screens, or in the installation log file. (I have to redo an installation to find out where the installation logfiles are put, perhaps someone else on this forum knows which logfile is created during installation. Most probably this is in a filesystem which is destined to become /var/log if the system is installed)

  • GPL Ghostscript PKGBUILD in AUR

    http://aur.archlinux.org/packages.php?d … s=0&SeB=nd
    I've already uploaded it, although I should have checked with you folks first. Hussam was kind enough to guide me through its creation, though.
    Please tell me if you see something out of place, or if the package doesn't work.
    BTW, it should replace ghostscript package, but for some reason it fails to do so. The install would simply abort telling me the ghostscript is needed but this package and that package. I have included the provides, replaces, and conflicts lines, but that didn't work... Any thoughts?
    Besides that, the PKGBUILD is a heavily modified version of the original ghostscript PKGBUILD, so there are some traces of the old package, which ultimately don't make a difference (or so I believe).
    The reason why I needed this package is that ghostscript package (ESP Ghostscript) is
    1. outdated compared to GPL
    2. supposedly lacks features that GPL version has
    3. depreciated by most Scribus users

    SchaduwBlink wrote:
    I had a compile error with your PKGBUILD. I found out why. Apparently Ghostscript-GPL depends on gtk. There is a way to disable that, but I have a patch that updates the dependency to GTK2, well, because 2 is better than 1.
    I don't know much about PKGBUILDs yet, but I managed to hack in the patches:
    Heheh, I'm still green, too. But I'm new to the whole package building thing anyway, so you do have a nice head start right there.
    source=(ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/GPL/gs854/ghostscript-${pkgver}-gpl.tar.gz
    ghostscript-afpl-8.54-cups-lib.patch
    ghostscript-afpl-8.54-big-cmap-post.patch
    ghostscript-afpl-8.54-ps2epsi-afpl.diff
    ghostscript-afpl-8.54-rinkj.patch
    ghostscript-afpl-8.54-destdir.diff
    ghostscript-afpl-8.54-gtk2.patch
    ghostscript-afpl-8.54-segfault.patch)
    I don't know much about patching. However, those patches seem to be for AFPL GS, which uses a different license...
    SchaduwBlink wrote:I don't know how to list the md5sums in a PKGBUILD, so I didn't get those. :oops:
    Basically you
    md5sum filename
    and copy/append the output to
    md5sums=('md5sum1 md5sum2 md5sum3...')
    line. I think you need to supply those only for files listed under source=(...) line.
    build() {
    cd ${startdir}/src/ghostscript-${pkgver}-gpl
    # patch -p1 < ../patch1 || return 1
    patch -p0 -i ../ghostscript-afpl-8.54-cups-lib.patch || return 1
    patch -p1 -i ../ghostscript-afpl-8.54-big-cmap-post.patch || return 1
    # #128650, #128645, http://bugs.ghostscript.com/show_bug.cgi?id=688703
    patch -p1 -i ../ghostscript-afpl-8.54-ps2epsi-afpl.diff || return 1
    patch -p1 -i ../ghostscript-afpl-8.54-rinkj.patch || return 1
    patch -p1 -i ../ghostscript-afpl-8.54-destdir.diff || return 1
    # already fixed inSVN, http://bugs.ghostscript.com/show_bug.cgi?id=688702
    patch -p1 -i ../ghostscript-afpl-8.54-gtk2.patch || return 1
    # fixed inSVN http://bugs.ghostscript.com/show_bug.cgi?id=688721
    patch -p1 -i ../ghostscript-afpl-8.54-segfault.patch || return 1
    export GS_FONTMAP="/usr/share/fonts/Type1:/usr/share/fonts"
    ./configure --prefix=/usr --enable-dynamic --enable-threads --with-ijs
    --with-jbig2dec --with-jasper --with-x
    Very nice... but again, I don't know if those patches are supposed to be included in GPL Ghostscript.
    SchaduwBlink wrote:The patches ... well, they can be found at those bug locations but I did a search and the Gentoo cvs had them all right there in on location, plus a few more that I don't know what they do. You may be interested in them. Also, you might want to click on the parent directory link and look at the ebuild, it has info on how to use the other patches, including one that adds support for a printer that I do not have. Also, the ebuild has the sed lines needed to disable support completely for GTK.
    Uh... ebuilds are a bit over my head. At least at this moment. You see, I was not going to actually maintain the package. I just wanted to make a good working PKGBUILD and have it in AUR so others can take over if interested. I just needed GPL GS so I had no choice but to build it myself.
    Yeah, I have GTK so I would have never thought to check for it. The Ghostscript docs mention no dependencies... at all
    SchaduwBlink wrote:Is it possible to detect if a person has a package with a PKGBUILD? Like, see if gtk2 is installed, and if so patch and if not, then do the sed lines to disable gtk completely?
    I think if pacman -Qs pkgname returns output, it means a person has pkgname package. So if there's a bash thing that can do such checks, you can know if the package is present. But I don't know how.
    SchaduwBlink wrote:
    Anyways, the folder that has all the patches:
    http://viewcvs.gentoo.org/viewcvs.py/ge … gpl/files/
    These patches seem to work alright. It built. You may want to look in them and see if you would like to include them and if the pathes are correct.
    Well, if it builds, I think it can be considered a quick and dirty working version of the PKGBUILD. Until proven it is also elegant and correct, that is. I'm just unsure about the licenses. As I said, I have no capacity to check the patches myself. But if you know what they do, and if they work, you may supply us with a working PKGBUILD, and I'll upload it... or you may upload it yourself. I don't know how AUR functions in such cases... i.e., if multiple users are allowed to submit fixes for a single package.
    SchaduwBlink wrote:Cheers, and thanks again for your time on Ghostscript-GPL. I can't live without it.
    No prob. Glad I saved one life with this package. If you want, you can take over the maintenance, since I don't know if I can manage it properly.

  • Problem with Fresh Install of OEL 6.3 x86_64 over old OEL 6.0 x32

    Dear Experts,
    After selecting packages for fresh installation of OEL 6.3 x86_64 over old OEL 6.0 32-bit, it gives me the following warning
    Some of the packages you have selected for install are missing dependencies. You can exit the installation, go back and change your package selections, or continue installing these packages without their dependencies.
    Details
    lvm2-2.02.83-3.el6.i686 requires lvm2-libs = 2.02.83-3.el6
    kernel-uek-2,6,39-200.24.1.el6uek.x86_64 requires kernel-uek-firmware = 2.6.39-200.24.1.el6uek
    lvm2-3.02.72-8.el6.i686 requires lvm2-libs = 2.03.72-8.el6
    gdb conflicts with elfutilsHow to avoid this warning?
    Best Regards
    Mahmoud

    Hi Dude,
    Thank you for your response.
    I didn't choose upgrade. I chose Fresh Installation.
    Sorry for not giving background about the problem
    The OEL 6.0 x32 was installed on a server with 64bit architecture, so the power of the server is not utilized well.
    I want to completely replace the OEL 6.0 (32 bit) system with OEL 6.3 (64 bit)
    Just I choose the mount point of /root and /boot and leave the all partitions with no formatting to save the old data
    The above warning in the first post appears. How to avoid it?
    Regards
    Mahmoud

  • Page can not be Displayed in EBS R12 64bit - OEL 5.4 64bit

    Hi Hussein,
    I have just installed EBS R12 (12.0.4) 64 bit on OEL 5.4 64bit, for our new client.
    The installation was successfull in general, but as usual I hit with this "Page Can Not Be Displayed" error and the client side ie browser.
    I can startup and shutdown the DbTier with status "0".
    I can startup and shutdown the AppsTier with status "0" (well it shows this overall status at the end, but I see some error with "OHS")
    This the sample log of the AppsTier:
    [applprod1@rdbms2 ~]$ ./startAPP
    You are running adstrtal.sh version 120.13.12000000.3
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adopmnctl.sh start
    script returned:
    You are running adopmnctl.sh version 120.4.12000000.3
    Starting Oracle Process Manager (OPMN) ...
    opmnctl: opmn started.
    adopmnctl.sh: exiting with status 0
    adopmnctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/app                                             l/admin/log/adopmnctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adapcctl.sh start
    script returned:
    You are running adapcctl.sh version 120.6.12000000.2
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    opmnctl: opmn is already running.
    opmnctl: starting opmn managed processes...
    ================================================================================
    opmn id=rdbms2.ficsd.com:6200
        0 of 1 processes started.
    ias-instance id=VIS_rdbms2.rdbms2.ficsd.com
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
        HTTP_Server/HTTP_Server/HTTP_Server/
    Error
    --> Process (index=1,uid=399901443,pid=2395)
        failed to start a managed process after the maximum retry limit
        Log:
        /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/ora/10.1.3/opmn/HTTP_Server~1
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl                                             /admin/log/adapcctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adoacorectl.sh start
    script returned:
    You are running adoacorectl.sh version 120.11.12000000.2
    Starting OPMN managed OACORE OC4J instance  ...
    adoacorectl.sh: exiting with status 0
    adoacorectl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/a                                             ppl/admin/log/adoacorectl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adformsctl.sh start
    script returned:
    You are running adformsctl.sh  version 120.12.12000000.3
    Starting OPMN managed FORMS OC4J instance  ...
    adformsctl.sh: exiting with status 0
    adformsctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/ap                                             pl/admin/log/adformsctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adoafmctl.sh start
    script returned:
    You are running adoafmctl.sh version 120.6.12000000.2
    Starting OPMN managed OAFM OC4J instance  ...
    adoafmctl.sh: exiting with status 0
    adoafmctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adoafmctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adalnctl.sh start
    script returned:
    adalnctl.sh version 120.3
    Checking for FNDFS executable.
    Starting listener process APPS_VIS.
    adalnctl.sh: exiting with status 0
    adalnctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adalnctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adcmctl.sh start
    script returned:
    You are running adcmctl.sh version 120.14
    Starting concurrent manager for VIS ...
    Starting VIS_1001@VIS Internal Concurrent Manager
    Default printer is noprint
    adcmctl.sh: exiting with status 0
    adcmctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adcmctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/jtffmctl.sh start
    script returned:
    You are running jtffmctl.sh version 120.3
    Validating Fulfillment patch level via /u02/applprod1/VIS/apps/apps_st/comn/java/classes
    Fulfillment patch level validated.
    Starting Fulfillment Server for VIS on port 9300 ...
    jtffmctl.sh: exiting with status 0
    .end std out.
    .end err out.
    All enabled services for this node are started.
    adstrtal.sh: Exiting with status 0
    adstrtal.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adstrtal.log for more information ...As you can see, the last had overall status code "0"
    But there is this error:
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    opmnctl: opmn is already running.
    opmnctl: starting opmn managed processes...
    ================================================================================
    opmn id=rdbms2.ficsd.com:6200
    0 of 1 processes started.
    ias-instance id=VIS_rdbms2.rdbms2.ficsd.com
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    HTTP_Server/HTTP_Server/HTTP_Server/
    Error
    --> Process (index=1,uid=399901443,pid=2395)
    failed to start a managed process after the maximum retry limit
    Log:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/ora/10.1.3/opmn/HTTP_Server~1
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adapcctl.txt for more information ...
    But it says status 0 too, does this cause the "web page can not be displayed"?
    Please Help........................
    Thanks a lot in advance

    Did you remove the lock files as suggested before?Not yet, I am not at the client right now, I will go there tomorrow morning. I am just practising here in our office test instance :)
    The access log file has:
    127.0.0.1 - - [01/Oct/2009:21:57:20 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:57:40 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:58:00 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:58:20 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:58:40 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:59:00 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:59:20 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:59:40 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:22:00:00 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:22:00:20 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:22:00:40 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:22:01:00 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"And the error log file:
    [Thu Oct  1 08:42:44 2009] [notice] Oracle-Application-Server-10g/10.1.3.4.0 Oracle-HTTP-Server configured -- resuming normal operations
    [Thu Oct  1 08:42:44 2009] [notice] Accept mutex: fcntl (Default: fcntl)
    [Thu Oct  1 08:50:51 2009] [warn] [client 192.168.1.170] oc4j_socket_recvfull timed out
    [Thu Oct  1 08:50:51 2009] [error] [client 192.168.1.170] [ecid: 1254357949:192.168.1.170:24084:0:3,0] mod_oc4j: request to OC4J rel12.ebiztech.biz:21500 failed: Connect failed
    [Thu Oct  1 09:28:40 2009] [notice] Oracle-Application-Server-10g/10.1.3.4.0 Oracle-HTTP-Server configured -- resuming normal operations
    [Thu Oct  1 09:28:40 2009] [notice] Accept mutex: fcntl (Default: fcntl)
    [Thu Oct  1 09:29:58 2009] [error] [client 192.168.1.100] [ecid: 1254360598:192.168.1.170:27679:0:2,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 09:51:22 2009] [error] [client 192.168.1.101] [ecid: 1254361882:192.168.1.170:27679:0:11,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 09:51:26 2009] [error] [client 192.168.1.101] [ecid: 1254361886:192.168.1.170:28180:0:13,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 09:51:43 2009] [error] [client 192.168.1.101] [ecid: 1254361903:192.168.1.170:28256:0:17,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 09:52:55 2009] [error] [client 192.168.1.101] [ecid: 1254361975:192.168.1.170:27678:0:17,0] Directory index forbidden by rule: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/
    [Thu Oct  1 11:40:43 2009] [error] [client 192.168.1.101] [ecid: 1254368443:192.168.1.170:28256:0:53,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 12:08:25 2009] [error] [client 192.168.1.101] [ecid: 1254370105:192.168.1.170:28256:0:66,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 12:08:28 2009] [error] [client 192.168.1.101] [ecid: 1254370108:192.168.1.170:27677:0:59,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 13:05:48 2009] [error] [client 192.168.1.101] [ecid: 1254373548:192.168.1.170:28179:0:127,0] Directory index forbidden by rule: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/
    [Thu Oct  1 13:06:56 2009] [error] [client 192.168.1.101] [ecid: 1254373616:192.168.1.170:28178:0:226,0] Directory index forbidden by rule: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/
    [Thu Oct  1 13:06:56 2009] [error] [client 192.168.1.101] [ecid: 1254373616:192.168.1.170:28178:0:227,0] File does not exist: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Thu Oct  1 13:06:56 2009] [error] [client 192.168.1.101] [ecid: 1254373616:192.168.1.170:28178:0:228,0] File does not exist: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gifThe above error normal? Its just my test instance and the users seem have no problem? or I am just not aware of.
    Thanks

  • Weird siebel 8.0 console mode installation problem on OEL 4

    Hi There,
    When I tried to install Siebel 8.0 SIA build on Oracle Enterprise Linux (OEL 4), I encountered a weird problem. It is a sandbox for QA to do testing, everything is on the same machine: oracle database 10.2.0.3, gateway, siebel server and SWSE. I installed oracle database, and make sure the database connection is fine, then I did the following :
    1) run install by command "./setuplinux -is:javaconsole -console", it compeleted fine.
    2) go to gateway directory, source cfgenv.sh
    3) run "ssincfgw -is:javaconsole -console" to do gateway server, enterprise and SWSE logical profile configuration. Gateway configuration is fine, gateway started up successfully. But during enterprise configuration, it throws out a bunch of error messages like :
    Error creating Parameter:MaxEntrTasks for Comp:TxnProc in CompGroup:Remote
    Strict Flag set to FALSE, continuing with the next Object...
    Error creating Parameter:MaxEntrTasks for Comp:RepAgent in CompGroup:Remote
    Strict Flag set to FALSE, continuing with the next Object...
    Error creating Component:MsgBroadcastMgr in CompGroup:CommMgmt
    Strict Flag set to FALSE, continuing with the next Object...
    SBL-ADM-02071: Enterprise server siebel not found in gateway server
    But at the end, it still shows "Execution Successful!"
    The SWSE logical profile configuration went through fine
    4) go to siebel server directory and source cfgenv.sh
    5) launch the ssincfgw in siebsrvr/bin directory to config siebel server, it also throws a bunch of error messages like:
    Error creating Parameter:AllowAnonUsers for Comp:SMObjMgr_enu in CompGroup:MktgOM
    Strict Flag set to FALSE, continuing with the next Object...
    Error creating Parameter:AllowAnonUsers for Comp:eMarketObjMgr_enu in CompGroup:MktgOM
    Strict Flag set to FALSE, continuing with the next Object...
    Error creating Parameter:AllowAnonUsers for Comp:eEventsObjMgr_enu in CompGroup:MktgOM
    Strict Flag set to FALSE, continuing with the next Object...
    But again, at the end it still shows "Execution Successful!".
    6) go to siebsrvr directory, source siebenv.sh
    7) Launch srvrmgr in command line mode:
    srvrmgr /g $GATEWAY /e $SIEBEL_ENTERPRISE /u $USERNAME /p $PASSWD
    and it shows "connected to 0 server"
    In the SiebSrvr.log file, it shows " SBL-SCC-00025: No value found in the Gateway. Default value in the repository is used."
    In the sw_cfg_util.log file, it shows "SBL-SVR-03005: No server connect string for Siebel Component servermgr in Siebel Enterprise siebel, Siebel Server sdc60002sems".
    The weirdest part is, if I clean up and uninstall everything, run the install and configure in GUI mode, give the same parameters, I don't get any error messages and siebel server can be up and running fine.
    I searched the forum and found people have reported the same error message during enterprise configuration, but says it does not affect them from bring up the siebel server. Since I'm developing an automation to do the installation, I cannot use GUI mode to install. I have to make the command line console mode work and then record the response file for silent install. Does anyone know what might cause my siebel server fail to be up and running ? Thanks a lot for any suggestions and helps.

    hi,
    Make sure that your network uses DNS naming.
    This error occurs when a machine is not correctly configured to use DNS naming. The default fully qualified host and domain name presented during installation is not correct.
    To successfully install, you need to provide a fully qualified domain name that consists of a local host name along with its domain name.
    for example yoursystem is a host name and yourdomain.com is a fully qualified domain name.
    regards,
    saravanan

  • I downloaded firefox from website it installs but then when i go to a page it says my web browser is outdated.

    I just downloaded the new Firefox because i was checking my email in yahoo and it had a tab saying ugrade to new firefox and i've always liked Firefox. after it installs and is done, i went to my at&t account and it said my browser is outdated. i've uninstalled the application and redone it a few times but it's not fixing it and when i look at the settings and look for new update it says i have the most up to date version. It has done to me also when trying to watch video's on youtube. Please help me make this work. I have window vista.
    Thank you

    Your System Details list shows that you override the user agent to make Firefox identify as Firefox/3.6.11
    *general.useragent.override: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.11) Gecko/20101012 Firefox/3.6.11
    See:
    *https://support.mozilla.org/kb/Finding+your+Firefox+version
    *https://support.mozilla.org/kb/websites-say-firefox-outdated-or-incompatible
    You can delete possible user.js and numbered prefs-##.js files and rename (or delete) the prefs.js file to reset all prefs to the default value including prefs set via user.js and prefs that are no longer supported in the current Firefox release.
    *http://kb.mozillazine.org/Preferences_not_saved
    *http://kb.mozillazine.org/Resetting_preferences

  • Need help badly. project file wont open. saying damaged file or may contain outdated elements. please help

    project file wont open. damaged file or contains outdated elements message. i believe its an XML error but i dont know how to fix it. please help

    As a happy user of the Matrox RT.X2 for many years, and later an equally happy user of a Matrox MXO2, I can say from experience that it is highly unlikely that this problem has anything to do with the Matrox hardware!
    Can you open a new blank project, and save it?
    If you cannot import your faulty project into a new project, can you import the sequence from your faulty project?
    Have you tried clearing the Media Cache, clearing your preferences, etc. - all among the techniques used to resurrect a Premiere Pro project that has gone bad???

  • After downloading the "new version" of Java 6 times, my plugin-check page states that it has disabled my "outdated version" and asks for me to upgrade. What do?

    Background:
    I have had this problem for several months, now. This problem began when an update came for Java on the Firefox Plugin-check. I promptly installed the new Java update. But the Firefox update wouldn't register that I downloaded it, even after I refreshed the page. So, I got rid of the old Java, and downloaded the new Java again. When the page continued to display the same message it had before, I downloaded it a few more times. Finally, Firefox stopped saying that I was out of date. Then a few weeks later maybe, I check Firefox Plugin, and on the page it says that I am outdated in Java. So I downloaded Java again. But Java was still in the list, with red and said that it needed to be updated. I restarted the computer. Then, I restarted Mozilla Firefox with no add-ons. When Java still appeared that it needed to be updated, I gave up and didn't do a thing more about it.
    Problem:
    Today I decided to check my plugins. Java was not in update the list, and at the top a banner stated, "Missing JAVA? For your safety, Firefox has disabled your outdated version of Java. Please upgrade to the latest version." I clicked "upgrade to the latest version" and was led to the Java page. I clicked the download button. My cache stated that this was the (6) download of that same Java plugin (see background). I chose to re-download it anyways. But Firefox still insists that I have not downloaded it.
    Question:
    Do I need to go to the control panel of Java and change something? Do I need to fix some setting on Firefox? Should I disable Java altogether, delete all Java-related files on my computer, and start all over with Java? What should I do?

    Try using http://ninite.com/java/ninite.exe to install Java. Please note that even though you download it you have to double click it to get it to run and install.

  • I'm using a 2007 MacBook Pro and having a problem updating to IOS 6. Is this possible on my device or is my computer too outdated for the IOS 6 update?

    I aquired my used MacBook Pro when entering college three years ago. When the IOS 7 iphone update came out yesterday I updated my iphone. After the update I attempted to sync my iphone to itunes on my MacBook Pro. When attempting to do this I recieved a pop-up that stated I would not be able to sync my iphone with IOS 7 to itunes until I downloaded itunes version 11.
    I then visited the itunes site to download this version of itunes. When attempting the update, I recived a pop-up that stated I was unable to download this version of itunes because my MacBook Pro does not have IOS 6 installed.
    I am not sure how to install IOS 6 or if my computer is able to update to IOS 6 since it was made in 2007. I occasionally have difficulties updating other programs because my computer is outdated and I was wondering if IOS 6 is the same.
    Thanks for your help.

    It sounds like it is not allowing you to install the newest version of iTunes because you do not have OSX 10.6.8 installed. Click on the  -> About This Mac and check the version number. If it is anything less than 10.6 you need to purchase Snow Leopard from Apple.
    http://store.apple.com/us/product/MC573Z/A/mac-os-x-106-snow-leopard

  • Tiling or slicing large images in tables? Completely outdated?

    I'm working through the XHTML tutorials on Lynda.com
    The instructor does a demo of slicing a large image with sections that have animated .gifs. He slices the static portions and slices the animated portions and then combines them in a 3 slice x 3 slice table.
    He says "I still prefer to do this with tables, since it's what it was designed for."
    I know tables are outdated, but I'm not sure if it's in all respects. Like if I was going to do a data table, I certainly would use tables...
    Im not sure when this video was made, but is it still in practice and a good practice?
    He then shows a similar demo of how to combine slices using CSS. Is this outdated too? Are people still slicing large images?

    Unlike print design where everything is static and unchanging, web pages need to be flexible and web accessible to accommodate all users, displays and devices.
    Image slices have their plusses and minuses.  Occasionally, you may need them to create a flexible container that resizes to content.
         3 image slices in a CSS layout ~
         http://alt-web.com/DEMOS/Image-slices-in-a-CSS-based-layout.shtml
    That said, you can add visual interest to web pages without a lot of images using CSS.
         2-image web page design ~
         http://alt-web.com/TEMPLATES/2-image-web-design.shtml
    Finally, have a look at CSS Zen Garden where the power of CSS is demonstrated.
    Each page contains identical HTML markup but with wildly different styles.
    Hopefully this will inspire you to move away from tables and use CSS for primary layouts.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How to set up DNS on OEL ?

    Hello buddy:
    How can I set up DNS on OEL ? Just for install 11g R2 RAC

    You can use "system-config-network" command to configure your DNS configuration.

  • Transfer to new PC: The project could not be loaded, it may be damaged or contain outdated elements

    The Problem
    I have transferred a large and functioning Premiere Pro project to a more powerful PC but am unable to run it, stopped by the error message "The project could not be loaded, it may be damaged or contain outdated elements".
    Facts
    The new PC has a 6-core processor and a different hard drive configuration but the operating system on both is Windows 7 and both PCs host up-to-date Premiere Pro CS6 (as part of Adobe Production Premium). The PCs are networked and Premiere Pro on the old PC can successfully load and run the project file located on the new PC, proving that the transferred file is not damaged. Also, preceding versions of the same project generate the same error message when run on the new PC except, very oddly, for earlier versions saved on or before 28 June 2011, when the project was only a fifth of its current size; those versions load correctly. Contemporary notes show that the editing carried out that day was simple timeline editing, ie no After Effects etc (that came later), and the project has worked fine then and since.
    So I don't have a damaged project file and don't know what "outdated elements" means.
    Help
    Any help solving this problem would be much appreciated.

    Hi Vinay
    As suggested I renamed the additional folder, created a new project, set 'Custom' editing mode, 'Microsoft AVI' as the preview format with 'Uncompressed' codec.
    Unfortunately the results were similar to before: On importing the original project into the new project I was sequentially asked for the locations of various files, including After Effects .aep files. The final file location request, for an mp3 audio file, was followed by lots of conforming and indexing. During this process the 'Where is the file XXX.mp3? window stayed locked open. Eventually, with all conforming etc finished, this window was still open and locked. Clicking anywhere on the screen caused a 'ding' and another, smaller, box opened, listing three .aep files. This box asked no questions and gave no options for selecting a file location so, with the topmost file highlighted, I just clicked 'ok' and the box disappeared, leaving the 'Where is the file XXX.mp3?' box still open.
    The importing process took about 30 minutes. I waited another 10 minutes, in case something was happening in the background, but with the Task Manager CPU usage value sitting on 0 or 1%, I used it to shut down the project.
    For what it is worth, I created a simple new project on the old PC – just a few video clips and transitions in a single sequence (no After Effects etc). This project was then transferred to the new PC and it opened successfully.
    Again I remain grateful to you for this and any more advice.
    Best regards
    Dave

  • Outdated ATI drivers for T400 crash upcoming Firefox 4 and IE 9

    I have a T400 running 32-bit Windows 7. I have downloaded the latest graphics drivers from the support page for my graphic card: ATI Mobility Radeon HD 3400 Series.
    The drivers seem to be outdated though, they date 24/08/2009 and have the following version number: 8.641.1.1000.
    Firefox 4 and Internet Explorer 9 (both previews) crashes when hardware acceleration is used. I contacted both Mozilla and Microsoft and they both point to the graphic drivers. Is there any plan to release a newer driver?
    Bug report Mozilla:
    https://bugzilla.mozilla.org/show_bug.cgi?id=573013
    Solved!
    Go to Solution.

    If I'm not mistaken Firefox 4 and IE9 are both BETA. Meaning your going to get issues. That is why users testing BETA's are to report there issue. So I do not see why they are pointing the finger back to the GPU driver.
    IT Specialist and Consultant
    Lenovo Tablet Evangelist
    Current Machines: IdeaCentre A300, ThinkPad Tablet, IdeaPad U410, and Yoga 3 Pro Touch
    Deutsche Community   Comunidad en Español
    Lenovo - the latest in DOtabs, DOpads, DOcentre's, DOstations and DOservers!

  • Telnet session not working in OEL -5

    Telnet session not working in OEL -5
    ==============================
    1. Installed xinetd and telnet-server packages on the box.
    2. Enabled the xinetd service.
    # service xinetd start
    # chkconfig xinetd on
    Telnet still not working. Please help.
    Lily.

    Re-ran the /etc/init.d/xinetd restart command. Telnet cannot connect and this is what I get:
    Unencrypted connection refused. Goodbye.
    Below is the telnet.cfg
    ==================
    # default: on
    # description: The telnet server serves telnet sessions; it uses \
    #     unencrypted username/password pairs for authentication.
    service telnet
         flags          = REUSE
         socket_type     = stream
         wait          = no
         user          = root
         server          = /usr/sbin/in.telnetd
         log_on_failure     += USERID
         disable          = no
    ===================

Maybe you are looking for