Getting PetStore to run in WLS 6.1sp3 on Mac OS X 10.2.6?

Hi all!
I've read with great interest all the articles relating to WLS running on OS X.
It's great to read this as I am pretty much the only guy in the entire organisation
here trying to keep using his Mac.
I was able to get WLS admin server to run on my PowerBook running OS X 10.2.6.
However, after stopping the admin server and trying to start the PetStore demo
server, I've got a few exceptions that prevent the server from starting.
So, I was wondering how you people, running WLS 6.1 on OS X have configured your
start scripts. When trying to use the standard jdk that comes with WLS, I'm getting
an exception. When using the Apple 1.3.1 jdk, I'm getting another exception about
a missing 'libmuxer' library. Basically, what set of libraries are you using?
Thanks in advance!
-Laurent.

Thanks for the reply, Mark. I finally figured it out by replacing all references
to the WebLogic provided 1.3.1 jdk by the one provided by Apple and all is well
now!
Thanks!
-Laurent.
"Mark Griffith" <[email protected]> wrote:
All you should need (with 7.0 and 8.1) to start WLS is
"java weblogic.Server"
As long as your have your classpath set.
export CLASSPATH=$WLHOME:$WLHOME/server/lib/weblogic.jar
On my windoze box WLHOME=C:/bea/wls81/weblogic81
Libmuxer is our native socket muxing code, you don't need it to run you'll
just use java muxing.
Sam just posted the libs on another thread.
Any other exceptions?
cheers
mbg
"Laurent Daudelin" <[email protected]> wrote in message
news:3eccefbe$[email protected]..
Hi all!
I've read with great interest all the articles relating to WLS runningon
OS X.
It's great to read this as I am pretty much the only guy in the entireorganisation
here trying to keep using his Mac.
I was able to get WLS admin server to run on my PowerBook running OSX
10.2.6.
However, after stopping the admin server and trying to start the PetStoredemo
server, I've got a few exceptions that prevent the server from starting.
So, I was wondering how you people, running WLS 6.1 on OS X haveconfigured your
start scripts. When trying to use the standard jdk that comes withWLS,
I'm getting
an exception. When using the Apple 1.3.1 jdk, I'm getting anotherexception about
a missing 'libmuxer' library. Basically, what set of libraries areyou
using?
Thanks in advance!
-Laurent.

Similar Messages

  • After downloading Firefox 4.0, I can't get it to run on my system, which is Mac OSX 10.4.11. What can I do?

    I've downloaded Firefox 4.0 three times, but whenever I try to run it, I get a message to the effect that it cannot run on my system. I've read that it doesn't work on OSX 10.3, but my system is a later version. What's up?

    http://www.mozilla.com/en-US/firefox/4.0/system-requirements/
    Mac
    Operating Systems
    * Mac OS X 10.5
    * Mac OS X 10.6
    Recommended Hardware
    * Macintosh computer with an Intel x86 processor
    * 512 MB of RAM
    * 200 MB hard drive space
    For older Macs that aren't supported in Firefox 4.0, try TenFourFox for PowerPC's running Mac 10.4.11 & 10.5.8 . <br />
    http://www.floodgap.com/software/tenfourfox/

  • How Can I get mod_rewrite to run on 10.6.4?

    Hi there,
    I've carried over a local wordpress install for some debug/dev purposes on to my local comp and encountered a few issues in getting permalink/mod_rewrite functions to run cleanly.
    I've noticed there's a number of posts in this forum about this but none of them appear to give a solution so far.
    My setup is as follows:
    /private/etc/apache2/httpd.conf
    /*Module section*/
    *LoadModule rewrite_module libexec/apache2/mod_rewrite.so*
    /* didn't know we needed this but read it on a blog post so gave it a shot*/
    *AccessFilename .htaccess*
    /* in <Directory> sections */
    *Options FollowSymLinks*
    *AllowOverride All*
    /* in <Directory "/Library/WebServer/Documents"> sections */
    *Options Indexes FollowSymLinks MultiViews*
    *AllowOverride All*
    I realise that the AllowOverride All at the <Directory> and <Directory "parent site"> are potentially overkill given that I only want to run the mod_rewrite for a particular user's directory. This then brings me to the specific users conf file (verbose here):
    /Private/etc/Apache2/users/[username].conf
    *<Directory "/Users/[username]/Sites">*
    *Options Indexes MultiViews FollowSymLinks*
    *AllowOverride All*
    *Order allow,deny*
    *Allow from all*
    </Directory>
    I then created a .htaccess in the user's site directory to call-up the mod_rewrite:
    *<IfModule mod_rewrite.c>*
    *Options +FollowSymlinks*
    *RewriteEngine On*
    *RewriteBase /~tariqscherer/*
    *RewriteRule ^index\.php$ - [L]*
    *RewriteCond %{REQUEST_FILENAME} !-f*
    *RewriteCond %{REQUEST_FILENAME} !-d*
    *RewriteRule . /~tariqscherer/index.php [L]*
    </IfModule>
    This code above was the rewrite recommended by WordPress, so I assumed that it would work. However, I do not get any rewrite action occurring whatsoever.
    The Apache error log (/var/log/apache2/error_log) gives me a File does not exist result:
    Mon Sep 06 16:03:55 2010 error client 192.168.1.18 File does not exist: /Users/[username]/Sites/about, referer: http://dasein-im-welt/~*[username]*/
    This error links back to the access log's GET 404 error (/var/log/apache2/access_log):
    192.168.1.18 06/Sep/2010:16:03:55 0200 "GET /~[username]/about/ HTTP/1.1" 404 218
    I've then tried to debug this process a little bit by starting a rewrite log over in the httpd.conf file with the following syntax:
    *RewriteLog /var/log/apache2/rewrite_log*
    *RewriteLogLevel 3*
    And then retrying hoping to trace some of the errors. Much to my surprise the log remains empty so I can only assume that the rewrite is simply not operating at all.
    I then thought I should try a simple rewrite test to ensure that the error wasn't from the wordpress .htaccess cod: and put through the following in my .htaccess file:
    *<IfModule mod_rewrite.c>*
    *Options +FollowSymlinks*
    *RewriteEngine On*
    *#RewriteBase /~tariqscherer/*
    *RewriteRule ^alice\.html$ index.php*
    *#RewriteRule ^index\.php$ - [L]*
    *#RewriteCond %{REQUEST_FILENAME} !-f*
    *#RewriteCond %{REQUEST_FILENAME} !-d*
    *#RewriteRule . /~tariqscherer/index.php [L]*
    </IfModule>
    I expected this rewrite to give me a rewrite over to index.php for an address entry of alice.html. However, no difference in terms of the end result - browser gives me a fail and logs are as follows:
    Access_Log:
    192.168.1.18 06/Sep/2010:16:19:15 0200 "GET /~[username]/alice.html HTTP/1.1" 404 222
    Error_Log:
    Mon Sep 06 16:19:15 2010 error client 192.168.1.18 File does not exist: /Users/[username]/Sites/alice.html
    Oh and the rewrite_log, though created, remains blank.
    I can therefore only assume that the mod_rewrite is simply not being called at any point and not rewriting the http GET requests in any form whatsoever to correct directory.
    My Question therefore is.
    Has anybody managed to get the mod_rewrite running under Mac OS X 10.6.4? Taking into account that:
    1. .htaccess is set by the AccessFile in httpd.conf
    2. AllowOverride All is set in the httpd.conf root <Directory> and <Directory "location"> sections, as well as in the [username].conf file.
    3. FollowSymLinks is also set under all options
    4. +FollowSymLinks is also set as an added precautionary measure in the .htaccess file
    I would be greatful for any help on this whatsoever.
    Tariq Scherer
    PS: the username used on my comp was substituted by [username] above, I hope this can help for anybody else to just substitute the entries out on their own local config or to provide a comparison entry.

    HI All,
    This isn't a solution per se, but in order to overcome the .htaccess rewrite calls limitations I had to:
    1. Rebuild Apache (up to 2.2.16) and explicitly specifying a rebuild with enable-rewrite
    2. Rebuild PHP in order to get a native module going.
    This solution works, I event went as far as just carrying over the exact same config files over to the new Apache install. There seems to be a block in the native Apache binary build that prevents usage of .htaccess (security reasons I presume?).
    The catch, however, is you will get pid locks over the two installs unless you explicit a separate lock file and you won't be able to call up the new Apache install from the preference panel in OS X fashion - need to be a bit patient with the terminal is all.
    For the apache install, you have to make sure you set a prefix location that suits you (and remember the put that prefix then over for the module load in your config as it won't be able to access your old .so modules):
    sudo ./configure --prefix=/usr/local/apache2 --enable-rewrite
    Also note, that when recompiling php with mysql support, a few config options need to be set to disable the cgi build options (not sure why, but it does the trick). The command for the PHP rebuild is as follows:
    ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/usr/local/mysql --disable-cgi
    Kind Regards,
    Tariq Scherer
    http://twentyfoursomething.wordpress.com/

  • I have a packardbell laptop with photoshop elements 8 installed from new. I have used it on several occasions but I cannot get it to run now.  When I open a photo using elements the Adobe box pops up saying that the programme has unexpectedley quit? can a

    I have a packardbell laptop with photoshop elements 8 installed from new. I have used it on several occasions but I cannot get it to run now.  When I open a photo using elements the Adobe box pops up saying that the programme has unexpectedley quit? can anyone help me please as I have several photos to edit before the end of this month. Many thanks for any help

    The "restore disk" is built into the Mac. See About Recovery.
    Need more specifics about what error messages you got while installing Adobe Flash.
    However, you can almost avoid Flash altogether by setting YouTube to play the HTML5 version instead.
    Click the Try something new! link at the bottom of the YouTube page.
    I don't know about the sound issue. Might be hardware as you think. Try other headphones to check.

  • Complete data not getting returned when running IIS (v7.5) commands remotely.

    Hello All,
    I searched quite a number of forums before posting and all that I have come to know is that some have mentioned it to be related to COM. I do not have experience dealing with COM and no idea how I can sort this out. I hope someone can provide guidance on
    these:
    Question 1: Server (2008 R2 Standard) is having 4 websites. Default - Running, WS2 - Stopped, WS3 - Running and WS4 - Running. When I run the command "invoke-command -computername Server1 -Credential domain\User -ScriptBlock
    {import-module 'webAdministration'; get-website}"
    I get this output and then an error:
    name            : Default Web Site
    id              : 1
    serverAutoStart : False
    state           : Stopped
    bindings        : Microsoft.IIs.PowerShell.Framework.ConfigurationElement
    PSComputerName  : Server1
    RunspaceId      : ca8bbb00-4631-4c92-a7c7-3bec8039eaee
    Attributes      : {Microsoft.IIs.PowerShell.Framework.ConfigurationAttribute,
                      Microsoft.IIs.PowerShell.Framework.ConfigurationAttribute,
                      Microsoft.IIs.PowerShell.Framework.ConfigurationAttribute,
                      Microsoft.IIs.PowerShell.Framework.ConfigurationAttribute}
    ChildElements   : {Microsoft.IIs.PowerShell.Framework.ConfigurationElement
                      Microsoft.IIs.PowerShell.Framework.ConfigurationElement
                      Microsoft.IIs.PowerShell.Framework.ConfigurationElement
                      Microsoft.IIs.PowerShell.Framework.ConfigurationElement
                      Microsoft.IIs.PowerShell.Framework.ConfigurationElement,
                      Microsoft.IIs.PowerShell.Framework.ConfigurationElement,
                      Microsoft.IIs.PowerShell.Framework.ConfigurationElement,
                      Microsoft.IIs.PowerShell.Framework.ConfigurationElement...}
    ElementTagName  : site
    Methods         : {Microsoft.IIs.PowerShell.Framework.ConfigurationMethod,
                      Microsoft.IIs.PowerShell.Framework.ConfigurationMethod}
    Schema          : Microsoft.IIs.PowerShell.Framework.ConfigurationElementSchema
    The data is invalid. (Exception from HRESULT: 0x8007000D)
        + CategoryInfo          : NotSpecified: (:) [Get-Website], COMException
        + FullyQualifiedErrorId : System.Runtime.InteropServices.COMException,Microsoft.IIs.PowerShell.Provider.GetWebsite
       Command
    What I have been able to figure out is that it returns complete data for the Default Website and then throws the error. Tried the same command on another server running 2 websites (both in started state) and same results :(
    Question 2: When the same command "Get-Website" is run locally on the server then only 5 columns show by default; Name, ID, State, Physical Path & Bindings. Why then the command when run remotely returns slightly
    more data?
    PS: I have Win7 x64 on my desktop. Tried the commands from x86 as well as x64 shells and same results.

    Hi Yan,
    When I use Enter-PSSession, it works in the same manner as if the command is run locally. Hence the same output as local.
    I am not sure of the exact way to use [Reflection.Assembly]::LoadFile('C:\Windows\System32\inetsrv\Microsoft.Web.Administration.dll') 
    I tried this and get an error:
    invoke-command -Session $session -ScriptBlock invoke-command -Session $session -ScriptBlock {[Reflection.Assembly]::LoadFile('C:\Windows\System32\inetsrv\Microsoft.Web.Administration.dll'); get-website}
    Output:
    GAC    Version        Location                                                   PSComputerName
    True   v2.0.50727     C:\Windows\assembly\GAC_MSIL\Microsoft.Web.Administrati... Server1
    The term 'get-website' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the
    name, or if a path was included, verify that the path is correct and try again.
        + CategoryInfo          : ObjectNotFound: (get-website:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
        + PSComputerName        : Server1
    The version of the dll on the server is 6.1.7601.17514
    Thanks

  • Hi! I purchased my ATV in Miami, but I live in Argentina. I have not been able to get the device running on any TVs. When I plug it in, it briefly shows the apple logo, then a sign saying no signal, check power cords and power source or sthg like that.

    Hi!
    I purchased my AppleTV in Miami, but I live in Argentina.
    I have not been able to get my device running correctly, and altough I've read tons of things online, I still have no solution to my problem.
    Here's the thing: after everything's plugged in and ON, I see the Apple logo briefly, then the TV displays a sign that says no signal, check pwoer cords and power source.
    But everything is plugged in and connected properly, otherwise, I doubt I'd be seeing the apple logo, right?
    I tried changing the HDMI cable, reversing the ends, switching ports, hard resetting the ATV, and trying a different TV. No luck.
    I read there is some issue with Samsung TVs, and most LED and LCD tvs down here are Samsung.
    On the other hand, I cannot return it or exchange it, since I bought it in the states.
    Oh! One of the tvs I tried it on displays a little sign that reads "connected at 1280x720 @60hz", and only THEN, goes to the "no signal" sign.
    Please!!! I am being driven up the walls here.... HELP!!

    Try this:
    Change the Apple TV resolution:
    Press and hold the Menu and Up button on your Apple Remote for six seconds.
    The Apple TV will automatically cycle to the next resolution at approximately 20 second intervals.
    Press Play on the Apple Remote to keep the current resolution or Select to manually cycle to the next resolution.

  • I have a mac osx version 10.6.8 no windows and i am trying to install a program but keep getting can not run in dos mode  ( the disk says on back works on intel mac with parallels or vm fusion) is this program not compatible with my mac?

    i have a mac osx version 10.6.8 no windows installed and i am trying to install a program but keep getting can not run in dos mode  ( the disk says on back works on intel mac with parallels or vm fusion) is this program not compatible with my mac?

    You run Windows in Parallels or Fusion. Then in Windows you install the program.

  • HOW I WAS ABLE TO GET ORACLE/LINUX RUNNING

    Just like some (or should I say most) of you, it took me pains
    (one week at that) to get 8i EE running on Linux.
    Here is how I was able to get it up and running:
    Environment:
    * RedHat 6.0
    * Linux kernel 2.2.12
    * Blackdown JRE (not JDK) 1.1.6v5
    * Mem: 128MB
    Create the linux account 'oracle' and make the account a member
    of the 'dba' group. The 8i docs contradicts itself saying that
    'oracle' should be a member of the 'oinstall' group in one place,
    but later on says that 'oracle' should be a member of the 'dba'
    group in other places. (In the 8.0.5 installation, 'oracle' is a
    member of the 'dba' group, so just follow this tradition).
    I have 2 linux machines. Because the machine where I am
    installing 8i has several other purposes, I ran X on another
    machine and have the OUI display on that other machine, but the
    OUI ran on the machine where I installed 8i.
    From the host running X, I set "xhost +182.212.1.32" (this is
    the IP address of the host where I am installing 8i), telnetted
    to the host where 8i will be installed, logged in as 'oracle',
    did a 'su', mounted the CDROM, exited from root (thereby going
    back to the oracle account), did a "DISPLAY=182.212.1.200:0.0;
    export DISPLAY", "cd /mnt/cdrom", and then did ran the installer
    "./runInstaller".
    If you did not make 'oracle' a member of 'dba', OUI will say "You
    are not a member of the 'dba' group.... blah ...." and will ask
    you the linux group for OSDBA and OSOPER.
    If you DID make 'oracle' a member of the 'dba' group, you will
    not get this prompt at all, and you will be asked to specify the
    linux group that will be responsible for installing/upgrading
    oracle. Specify the group 'oinstall' in this prompt. Basically,
    this prompt will 'chgrp oinstall' the directory
    '$ORACLE_BASE/oraInventory'.
    Cotinue with the installation. You will be prompted to run a
    script under the /tmp/oracle/oraInstroot.sh directory as root.
    Continuing, I specifed a custom install. After almost completing
    the installation, you will be prompted to run the 'root.sh' under
    $ORACLE_HOME as root. Note that this script is not executable, so
    either "chmod 744 root.sh;./root.sh" or "sh ./root.sh".
    At this point, db config assistant will run, but gave me an
    exception, something like "JNLSException: No character sets
    found." This error was not fatal as it did allowed me to
    continue. (Note that I tried setting ORA_NLS33 and NLS_LANG, but
    I still had this exception. However, I have not tried downloading
    i18n-1.1.6-v5-glibc-x86.tar.bz2 from blackdown. But I do not know
    if that will help.). I did not continue with dbassist but exited,
    and exited OUI. The reason was that, after telling dbassist to
    save to scripts, it cannot even save the scripts!!
    Now run dbassist again ("cd $ORACLE_HOME/bin; ./dbassit"). You
    will again get the message "JNSLException: No characters found".
    I specified an OLTP database. Later on, you will be asked if you
    want to use shared server processes (MTS) or dedicated server
    processes. At this point, specify dedicated server processes.
    (Note: this is important. More on this later).
    The SYSTEM datafile need not be initially 175MB. I had mine set
    to 75MB.
    When prompted if you want to create the db now or save to
    scripts, specify save to scripts, and exit dbassist.
    Now "cd $ORACLE_HOME/install". The main script (which is
    sqlSID.sh --- replace SID with the value of ORACLE_SID), will
    simply run other scripts.
    Instead of running the main script, run each of the scripts
    (that the main scripts was supposed to call) manually in the
    order specified by the main scripts. This will help you later on
    point out the specific script which may have problems.
    The first script will start the instance and create the
    database.
    Run that first script.
    Now here lies the importance of specifying "dedicated server
    processes" instead of "shared server processes". If you specified
    "dedicated server processes", the db should now be created, and
    the script will exit without errors. If you specified "shared
    server processes (MTS)", the instance will be mounted but you
    will get the message "ORA-01012: not logged on". The db will
    therefore not be created. I believe the following quote from the
    docs (not included with the linux 8i EE CD, but included
    witht he nt 8i EE CD) says it all:
    =================================================================
    ===========
    Restricted Operations of the Multi-Threaded Server
    Certain administrative activities cannot be performed while
    connected to a
    dispatcher process, including shutting down or starting an
    instance and
    media recovery. An error message is issued if you attempt to
    perform these
    activities while connected to a dispatcher process.
    These activities are typically performed when connected with
    administrator
    privileges. When you want to connect with administrator
    privileges in a
    system configured with multi-threaded servers, you must state in
    your connect
    string that you want to use a dedicated server process
    (SRVR=DEDICATED) instead of a dispatcher process.
    Additional Information:
    See your Oracle operating-system-specific
    documentation or the Net8
    Administrator's Guide for the proper connect
    string syntax.
    =================================================================
    =========
    From the above, you should be able to create a db using "shared
    server processes (MTS)" from scratch (instead of creating a db
    using "dedicated server process" and then later on changing to
    MTS), by modifying your tnsnames.ora file. However, I have not
    done this.
    Now run the remaining scripts that the main script was supposed
    to call. The only other problem I had with the scripts was the
    last script (the one with SIDjava.sh). I had a problem with the
    redo logs, and I got an "end of communication error" in the
    middle of the execution of the last script. I have to run this
    last script twice to make sure it worked.
    I believe the reason for the problem with the last script was
    related to what I found out later on, that all the rollback
    segments were OFFLINE (except that rbs in SYSTEM)!!!
    So probably it is best that, after running the first script, take
    the rollback segments online, before continuing with the other
    scripts.
    After running the scripts and the database created, I then
    applied te 8.1.5.0.1 patch, shutting down the database first.
    (Run svrmgrl, connect internal, shutdown;)
    However, after applying the patch, and starting the database
    again, I still get 8.1.5.0.0 and not 8.1.5.0.1 when loggin
    in using sqlplus or svrmgrl. Maybe the patch should be applied
    first BEFORE creating the db???
    Okay, now I have it running for 3 days now. However, I get this
    error in my alert files:
    OER 536879337 in Load Indicator : Error Code = 570716328 !
    ... when the instance is mounted, and
    Load Indicator not supported by OS
    .... several times.
    I have not been able to solve these remaining issues.
    John Salvo
    null

    This should get you started. I can point you to many places, but
    http://en.wikipedia.org/wiki/Verizon_FiOS
    Pasive Optical Network. Most  customers really don't need to know all the nuts and bolts.
    http://en.wikipedia.org/wiki/BPON
    GOOD LINK Anti-Phish. I never viewed this list. Cool.
    http://www.dslreports.com/faq/16637
    Optical Network Terminal (ONT) is a type of NID used with fiber-to-the-premises applications.
    Various models used.I had one of the first ONT 610X, I now have 612. I also believe they use Motorola ONTs?
    http://en.wikipedia.org/wiki/Optical_Network_Terminal#Optical_network_terminals

  • I was running remote desktop on my old mac pro running 10.4.11.  Upgraded to new pro running 10.6.7 Can I get remote desktop to run on new computer?

    I was running remote desktop on my old mac pro running 10.4.11  Just upgraded to new pro running 10.6.7  Can I get my previous remote desktop to
    run on new computer?
    Thanks

    Are you talking Apple's Remote Desktop software, or Microsoft's?

  • I have a Mac Pro Intel Xeon 3.2 Ghz Quad core (mid 2012) using OSX 10.7.5) and cannot get iDVD to run.

    I have a Mac Pro Intel Xeon 3.2 Ghz Quad core (mid 2012) using OSX 10.7.5) and cannot get iDVD to run. I tried 7.0.4 and 7.1.2, both from Apple software update and both crash during "loading themes". I am reluctant to upgrade OSX from 10.7.5 because I do not want to loose Final Cut Express 4.0.1. Apple Care no longer supports iDVD. I want a version if iDVD that supports Chapter markers as in iDVD 7.?.? that i used with my old (now deceased) Apple Power PC Mac Pro.

    iDVD 7 should work fine with 10.7.5.  Try this basic troubleshooting fix:
    1 - delete the IDVD preference file, com.apple.iDVD.plist, that resides in your
    User/Home/Library/ Preferences folder.
    2 - delete IDVD'S cache file, Cache.db, that is located in your
    User/Home/Library/Caches/com.apple.iDVD folder. 
    3 - launch IDVD and try again.
    NOTE: In Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and press the Return key - 10.7: Un-hide the User Library folder.
    OT

  • Getting error while running Foreign currency valuation

    Hi,
    Thanks in advance
    User getting error while running Foreign Currncy valutaion i.e. Internal error with background job sheduling sapf100.
    Do not have good exposure in Foreign Currecy valutaion please help me out..
    Edited by: kudalamallikarjuna on Oct 12, 2011 4:00 PM

    Dear,
    Once you get the error, please go to SM37, put user ID and appropriate dates and Execute
    System will show all jobs submitted by the user id, check if there is any job which is cancelled, select the line and click on Job log,
    In job log please let us know what is shown there..
    Br,Vivek

  • Getting error while running Perl adcfgclone.pl appsTier

    hi ,
    i m getting error while running Perl adcfgclone.pl appsTier
    error:ksh: Perl: not found
    i check for per and ksh
    which perl
    /usr/bin/perl
    which ksh
    /usr/bin/ksh
    (my os out put for perl ,my os is SunOS testserver 5.10 Generic_137137-09 sun4u sparc SUNW,Ultra-250)
    perl -V
    /appl2/applmgr2/prodora/iAS/Apache/perl/lib/5.00503
    /appl2/applmgr2/prodora/iAS/Apache/perl/lib/site_perl/5.005
    /appl2/applmgr2/prodappl/au/11.5.0/perl
    /usr/perl5/5.8.4/lib/sun4-solaris-64int
    /usr/perl5/5.8.4/lib
    /usr/perl5/site_perl/5.8.4/sun4-solaris-64int
    /usr/perl5/site_perl/5.8.4
    /usr/perl5/site_perl
    /usr/perl5/vendor_perl/5.8.4/sun4-solaris-64int
    /usr/perl5/vendor_perl/5.8.4
    /usr/perl5/vendor_perl
    which i need to set in path
    PATH=$PATH:/usr/local/bin:/usr/ccs/bin:/usr/sfw/bin (like this )
    export PATH
    please help me out

    hi ,
    here is the out put
    # pwd
    /appl2/applmgr2/prodora/iAS/Apache/perl
    # perl -V
    Summary of my perl5 (revision 5 version 8 subversion 4) configuration:
    Platform:
    osname=solaris, osvers=2.10, archname=sun4-solaris-64int
    uname='sunos localhost 5.10 sun4u sparc SUNW,Ultra-2'
    config_args=''
    hint=recommended, useposix=true, d_sigaction=define
    usethreads=undef use5005threads=undef useithreads=undef usemultiplicity=undef
    useperlio=define d_sfio=undef uselargefiles=define usesocks=undef
    use64bitint=define use64bitall=undef uselongdouble=undef
    usemymalloc=n, bincompat5005=undef
    Compiler:
    cc='cc', ccflags ='-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xarch=v8 -D_TS_ERRNO',
    optimize='-xO3 -xspace -xildoff',
    cppflags=''
    ccversion='Sun WorkShop', gccversion='', gccosandvers=''
    intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=87654321
    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
    ivtype='long long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8
    alignbytes=8, prototype=define
    Linker and Libraries:
    ld='cc', ldflags =''
    libpth=/lib /usr/lib /usr/ccs/lib
    libs=-lsocket -lnsl -ldl -lm -lc
    perllibs=-lsocket -lnsl -ldl -lm -lc
    libc=/lib/libc.so, so=so, useshrplib=true, libperl=libperl.so
    gnulibc_version=''
    Dynamic Linking:
    dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-R /usr/perl5/5.8.4/lib/sun4-solaris-64int/CORE'
    cccdlflags='-KPIC', lddlflags='-G'
    Characteristics of this binary (from libperl):
    Compile-time options: USE_64_BIT_INT USE_LARGE_FILES
    Locally applied patches:
    22667 The optree builder was looping when constructing the ops ...
    22715 Upgrade to FileCache 1.04
    22733 Missing copyright in the README.
    22746 fix a coredump caused by rv2gv not fully converting a PV ...
    22755 Fix 29149 - another UTF8 cache bug hit by substr.
    22774 [perl #28938] split could leave an array without ...
    22775 [perl #29127] scalar delete of empty slice returned garbage
    22776 [perl #28986] perl -e "open m" crashes Perl
    22777 add test for change #22776 ("open m" crashes Perl)
    22778 add test for change #22746 ([perl #29102] Crash on assign ...
    22781 [perl #29340] Bizarre copy of ARRAY make sure a pad op's ...
    22796 [perl #29346] Double warning for int(undef) and abs(undef) ...
    22818 BOM-marked and (BOMless) UTF-16 scripts not working
    22823 [perl #29581] glob() misses a lot of matches
    22827 Smoke [5.9.2] 22818 FAIL(F) MSWin32 WinXP/.Net SP1 (x86/1 cpu)
    22830 [perl #29637] Thread creation time is hypersensitive
    22831 improve hashing algorithm for ptr tables in perl_clone: ...
    22839 [perl #29790] Optimization busted: '@a = "b", sort @a' ...
    22850 [PATCH] 'perl -v' fails if local_patches contains code snippets
    22852 TEST needs to ignore SCM files
    22886 Pod::Find should ignore SCM files and dirs
    22888 Remove redundant %SIG assignments from FileCache
    23006 [perl #30509] use encoding and "eq" cause memory leak
    23074 Segfault using HTML::Entities
    23106 Numeric comparison operators mustn't compare addresses of ...
    23320 [perl #30066] Memory leak in nested shared data structures ...
    23321 [perl #31459] Bug in read()
    27722 perlio.c breaks on Solaris/gcc when > 256 FDs are available
    SPRINTF0 - fixes for sprintf formatting issues - CVE-2005-3962
    6663288 Upgrade to CGI.pm 3.33
    REGEXP0 - fix for UTF-8 recoding in regexps - CVE-2007-5116
    Built under solaris
    Compiled at Jul 31 2008 12:07:52
    @INC:
    /usr/perl5/5.8.4/lib/sun4-solaris-64int
    /usr/perl5/5.8.4/lib
    /usr/perl5/site_perl/5.8.4/sun4-solaris-64int
    /usr/perl5/site_perl/5.8.4
    /usr/perl5/site_perl
    /usr/perl5/vendor_perl/5.8.4/sun4-solaris-64int
    /usr/perl5/vendor_perl/5.8.4
    /usr/perl5/vendor_perl
    Thanks &Regard

  • Getting error while running SSRS report in SharePoint 2010

    Hi,
    I am getting below error while running a SSRS reports in SharePoint. Your help will be appreciated
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E)
    Timestamp: Wed, 5 Nov 2014 11:58:42 UTC
    Message: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 503
    Line: 5
    Char: 62123
    Code: 0
    Thanks,
    Manjunath

    Hi,
    According to your post, my understanding is that you get error while running SSRS reports.
    Basically, If the Request Management service is enabled, it manages all incoming requests by evaluating logic rules against the user requests in order to determine what\which action to take and which machine or machines (targets) in the farm should handle
    the request.
    By default the Request time out value for Request Management service are as follows,
    RequestTimeout                    : 00:01:40
    RequestExecutionTimeout       : 01:00:00
    So the error throws from RM service for those reports who take more than 1 minute to generate the report.
    To solve this issue, we can stop the Request Management service.
    Or increase the time out
    value by making use of following PowerShell  script.
    $waUrl = "URLofWEbApp"
    $wa = Get-SPWebApplication $waUrl
    $rmSettings = $wa | Get-SPRequestManagementSettings
    $req=$wa.RequestManagementSettings
    $timeout2= New-TimeSpan -minutes 5
    Sreq.Requesttimeout=$timeout2
    $req.update()
    For more information:
    http://blogs.technet.com/b/sajiths/archive/2014/08/19/ssrs-reports-timed-out-with-39-503-39-error-sharepoint-2013.aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Getting error while running OIM in built purging script OIM_ReconArch.sh

    Getting error while running OIM in built purging script OIM_ReconArch.sh
    bash-3.00$ cat Err_Arch_Recon_2012_11_01_15_36_06.log
    -- Reconciliation Archival Execution Status
    BEGIN OIM_SP_ReconArchival('N','N',200000,'ARCHIVE_SELECT_WITH_CONS_DROP_REC','Both Events','20110101','20111231'); END;
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ORA-06512: at "PREPRD.OIM_SP_RECONARCHIVAL", line 722
    ORA-00942: table or view does not exist
    ORA-01031: insufficient privileges
    ORA-06512: at line 1
    Please Help

    ORA-06512: at "PREPRD.OIM_SP_RECONARCHIVAL", line 722
    ORA-00942: table or view does not exist
    ORA-01031: insufficient privileges
    (1) Check whether the OIM_SP_RECONARCHIVAL table or view exists or not...
    (2) If it exists, check whether the DEV_OIM user has enough privilege to view this table or not...
    If not, give it all privilege by login as sys as sysdba
    GRANT ALL PRIVILEGES TO DEV_OIM;
    COMMIT;

  • Issue with Illustrator CS6 - can't get it to run

    Since a couple of weeks ago, I have an issue with Illustrator CS6 - can't get it to run When starting the application I get the following error:
    "The procedure entry point ?AcquireVarient@ImageInterface@drawbot@dvaui@@QBE?BV?$intrusive_ptr@UImageInterface@drawb ot@dvaui@@@boost@@V?$rational@J@5@@Z could not be located in the dynamic link library D:\Program Files\Contents\Windows\Illustrator.exe."
    I'm running it on Windows 8 (x64). I have multiple other Adobe applications installed, which are running fine. I've tried solving the issue with reinstalling Illustrator - multiple times. My GPU driver is updated to the latest version.

    I have this issue as well on my Mac and called tech support 4 times and they can't fix it. Adobe has really gone down hill in a short amount of time!!
    Only thing that worked (as a temporary fix) is to create a new user and toggle back and forth between two users which is very annoying. Adobe has tried uninstalling, reinstalling, taking over my computer remotely, trashing plugins, verifying permissions but the fact remains that we bought CS6 four weeks ago and Illustrator doesn't work.
    I'm going on Facebook to let others know.....don't buy Adobe, it doesn't work and they don't know how to fix.

Maybe you are looking for

  • Apple's Notes App...

    Hello all, I have a question about Apple's notes App. I've had my 3G iPhone for a couple years now and I've never really used the nots App. Within the last couple months however, I use it all the time for work. The problem I ran into is my notes all

  • AP Invoices/Credit Memo Workflow process using Optura

    Hi, We have a VIM tool Optura that we have implemented for our Workflow approval process where in the invoices/credit memos get parked, then go through a workflow approval process and finally get posted. These invoices/credit memos at the time when t

  • Referencing values in Array Collection?

    I'm using a Remote Object to pass an argument to a CFC. I then query a table according to the value of the argument passed in ('where' clause). I return a single record result as a query in Flex (event.result) and set it as an Array Collection, examp

  • TS4425 Why do I get the message "there's no photos in this album"

    Why do I get the message "there's no photos in this album"?

  • ISU Contract replication to CRM

    Hi .. We have replicated Connection object & Pod of ISU to CRM, however we are not able to replicate ISU Contracts to crm, Please advice what settings are needed for same.