When running the netsat command as a non-root user

I get the following error:
test@testserver1# netstat -i
ip open: Permission denied
can't open mib stream: Bad file number
test@testserver1# which netstat
/bin/netstat
test@testserver1# ls -al /bin/netstat
-r-xr-sr-x 1 root sys 55180 Jan 6 2004 /bin/netstat
test@testserver1#
test@testserver1# ls -ald /bin
lrwxrwxrwx 1 root root 9 Nov 9 2002 /bin -> ./usr/bin
test@testserver1#
test@testserver1# ls -ald /usr
drwxr-xr-x 40 root sys 1024 Nov 21 09:45 /usr
test@testserver1# ls -ald /usr/bin
drwxr-xr-x 4 root bin 9216 Oct 2 23:53 /usr/bin
test@testserver101#
Support Team

You don't say what OS, but in Solaris 8 make sure:
ls -l /devices/pseudo/ip@0:ip
crw-rw---- 1 root sys 3, 0 May 3 2006 /devices/pseudo/ip@0:ip
And in 10:
$ ls -l /devices/pseudo/ip@0:ip
crw-rw-rw- 1 root sys 3, 0 Jan 10 14:31 /devices/pseudo/ip@0:ip
It's worth learning truss or dtrace, you can debug file open failures like this quite easily and quickly.

Similar Messages

  • Running as non-root user

    How do I run the application server instance as non-root user on port <= 1024?
    I am using Sun One Application Server 7.0
    Thanks in advance
    Sri.

    Two options:
    1) Start an instance using the root user, but configure the instance to switch to a non-root user upon startup. Use the "User" directive in the init.conf file of an instance to specify the user
    http://docs.sun.com/source/816-7155-10/crinit.html#17116
    You should also see the "Run As" setting of an instance in the administrative GUI.
    2) Via the ndd command, you can set the smallest non-priveleged port number. See ndd documentation concerning the following setting:
    tcp_smallest_nonpriv_port
    Once you make the ndd setting, you can use a non-root user to listen on a port number that is equal to or greater than the value of the tcp_smallest_nonpriv_port setting.
    Chris

  • Running VMware Server 2 services as a non-root user

    Hello,
    I have switched from VirtualBox to VMware Server 2 on my Arch64 server and the transition has been relatively painless. I am at the point now where I want to run VMware's services as a non-root user account (I have a service account called "svc-vmadmin" that I'd like to use). I'm generally not comfortable running services as root, but at the same time I'm conscious of the time and effort required vs. overall benefits.
    I've done the usual Google searches and even checked the VMware Server 2 user guide and the VMware community, but I can't find specific details on how to achieve this.
    Is this even plausible in a Linux environment? I used to run VMware Server 1 under the SYSTEM account on Windows Server, so I'm hopinga similar thing can be done on Arch.
    I would greatly appreciate any information or personal experience that fellow Archers can share.
    Thanks,
    Thom

    System services are handled by launchd.
    If you look in /System/Library/LaunchDaemons/ you'll see a plist file for each service including org.isc.named.plist, the plist for named.
    If you edit this file you'll see it's an XML document that describes the service and how the OS should handle it, including the part:
    <key>ProgramArguments</key>
    <array>
    <string>/usr/sbin/named</string>
    <string>-f</string>
    </array>
    Just append another entry in the array that says <string>-u nobody</string> (or whatever username you want to run as.

  • LdapList as none root user

    Hi,
    I am running into a strange issue that when I issue an ldaplist command through a "none root user", the system indicates the following error :
    ldaplist: LDAP configuration problem (Unable to load configuration '/var/ldap/ldap_client_file' ('').)
    When I issue the same command as root, I have no issues doing so.
    I already tried to change the permissions on the ldap config files, though that did not help.
    I am using DS5.2 on solaris9.
    Thanks for helping out here.
    -Ives-

    Just found the issue.
    In fact the problem was that the /var/run/ldap_cache_door did not have read access for others.
    Adapted that file solved the problem.
    -Ives-

  • [SOLVED]Xorg won't work for my non root user

    I installed Arch Linux 2009.08 x86_64 Core inside Sun VirtualBox 3.0.8 and got up to the part of the Beginners' Guide that tells me to test X and it can never work for my non root user. Funny thing is, I tried running it as root and it worked even though my root user has no ~/.xinitrc file. Running startx or xinitrc as my non root user I get a small (maybe 400x600) white terminal but can't use my mouse or keyboard.
    After looking over the guide and doing a step I forgot and adding in all of the extra stuff the guide says might help I can use my mouse and keyboard in my non root users' small white terminal but X still won't start properly with xterm even though I put 'exec exterm' in my non root users' ~/.xinitrc file. Please help. Thanks for any help guys.
    Last edited by keiichi (2009-10-23 12:34:50)

    schuay wrote:
    keiichi wrote:After looking over the guide and doing a step I forgot and adding in all of the extra stuff the guide says might help I can use my mouse and keyboard in my non root users' small white terminal....
    I don't get it .. this sounds like xterm is starting up successfully (xterm is a small white terminal). Easiest way to get X up and running (imo) is
    sudo pacman -S gnome gdm xorg xf86-input-evdev
    sudo /etc/rc.d/hal start
    sudo /etc/rc.d/gdm start
    I didn't know that's what xterm was, thanks for telling me. Noob mistake.

  • Non-root user can't start Apache on port 443

    Today I've been attempting to get SSL working for my Oracle Applications 11i (11.5.10.2) installation and I just hit a small problem. I've followed all of the Oracle literature I've come across, which instructed me to create a new (non-root) user to own the database tier and the applications tier. I've also followed the instructions for configuring SSL ([Doc 123718.1|https://metalink2.oracle.com/metalink/plsql/f?p=130:14:6976756808231635106::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,123718.1,1,1,1,helvetica]) and the SSL wizard in OAM defaults to the standard HTTPS port (443). However, because 443 is a privileged port, a non-root user cannot bind to it. In other words, the Oracle literature itself has led me to an impossible situation. This is what I see in the Apache error log:
    [Fri May 15 15:05:03 2009] [crit] (13)Permission denied: make_sock: could not bind to port 443
    At this point, I see two choices:
    1. Run the application tier services as root.
    2. Change the SSL port to something greater than 1024 (i.e. 4443).
    I'm leaning towards option #2, since option #1 negates the advantage of using a non-root user to begin with. Does anyone have any other suggestions? Does Oracle have any recommendations for this scenario?

    Hi,
    You just need to start Apache as root (not all the application services). For Option 1, the application tier files should be owned by applmgr/oracle user (not root), and for Option 2, you do not need to change the port (though it is valid option). Just follow the steps in the following document.
    Note: 356080.1 - How to run Apache on Port 80 in Apps 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=356080.1
    BTW, this is mentioned in the document "if you have chosen port 443 (or any port under 1024) for your SSL port, you will have to start Apache as root".
    Regards,
    Hussein

  • There is a non-root user account

    I got the warning "there is a non-root user account with the UID 0 in your system" on installing some software and on running in the terminal... dscl . -list /Users UniqueID , there are indeed 2 users with UID 0, root and me who is admin too. Also cannot log in to keychain - related?

    does this help?
    Problem description:
    there is a non-root user account with the UID 0 in your system
    EtreCheck version: 2.1.8 (121)
    Report generated 16 March 2015 5:27:55 pm AEST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (20-inch, Mid 2007) (Verified)
        iMac - model: iMac7,1
        1 2.4 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR2 SDRAM 667 MHz ok
            BANK 1/DIMM1
                2 GB DDR2 SDRAM 667 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        ATI,RadeonHD2600 - VRAM: 256 MB
            iMac 1680 x 1050
    System Software: ℹ️
        OS X 10.10.2 (14C1510) - Time since boot: 2:2:38
    Disk Information: ℹ️
        WDC WD3200AAJS-40RYA0 disk0 : (320.07 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 284.97 GB (77.06 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            BOOTCAMP (disk0s4) /Volumes/BOOTCAMP : 34.25 GB (8.40 GB free)
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Lexar USB Flash Drive 16.02 GB
            Lexar (disk2s1) /Volumes/Lexar : 16.01 GB (5.72 GB free)
        Logitech Optical USB Mouse
        Iomega USB to ATA/ATAPI bridge 1 TB
            EFI (disk1s1) <not mounted> : 210 MB
            iMac Backup (disk1s2) /Volumes/iMac Backup : 536.87 GB (11.27 GB free)
            PowerBook Backup (disk1s3) /Volumes/PowerBook Backup : 107.37 GB (81.42 GB free)
            FREE SPACE (disk1s4) /Volumes/FREE SPACE : 355.48 GB (345.34 GB free)
        Microsoft Microsoft Wireless Optical Desktop® 1.00
        Apple Computer, Inc. IR Receiver
        Apple Inc. Bluetooth USB Host Controller
    Configuration files: ℹ️
        /etc/sysctl.conf - Exists
        /etc/launchd.conf - Exists
        /etc/hosts - Count: 30
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/Parallels Desktop.app
        [not loaded]    com.parallels.kext.hidhook (9.0 24172.951362) [Click for support]
        [not loaded]    com.parallels.kext.hypervisor (9.0 24172.951362) [Click for support]
        [not loaded]    com.parallels.kext.netbridge (9.0 24172.951362) [Click for support]
        [not loaded]    com.parallels.kext.usbconnect (9.0 24172.951362) [Click for support]
        [not loaded]    com.parallels.kext.vnic (9.0 24172.951362) [Click for support]
            /Applications/Popcorn.app
        [not loaded]    com.roxio.TDIXController (1.3) [Click for support]
            /Library/Extensions
        [loaded]    com.sophos.kext.sav (9.2.50 - SDK 10.8) [Click for support]
        [loaded]    com.sophos.nke.swi (9.2.50 - SDK 10.8) [Click for support]
            /System/Library/Extensions
        [loaded]    com.Cycling74.driver.Soundflower (1.5.2) [Click for support]
        [not loaded]    com.cisco.nke.ipsec (2.0.1) [Click for support]
        [not loaded]    com.wire.USBEthernetController (1.0.5) [Click for support]
    Startup Items: ℹ️
        CiscoVPN: Path: /System/Library/StartupItems/CiscoVPN
        ChmodBPF: Path: /Library/StartupItems/ChmodBPF
        Startup items are obsolete in OS X Yosemite
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.Maps.pushdaemon.plist
        [killed]    com.apple.recentsd.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        8 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.awdd.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.icloud.findmydeviced.plist
        [killed]    com.apple.softwareupdated.plist
        [killed]    com.apple.wdhelper.plist
        [failed]    org.postfix.master.plist [Click for details]
        5 processes killed due to memory pressure
    Launch Agents: ℹ️
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [not loaded]    com.protemac.LoginTrapAgentLoginSession.plist [Click for support]
        [failed]    com.protemac.LoginTrapAgentUserSession.plist [Click for support] [Click for details]
        [running]    com.sophos.uiserver.plist [Click for support]
        [loaded]    org.macosforge.xquartz.startx.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.barebones.authd.plist [Click for support]
        [failed]    com.google.GoogleML.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.sophos.common.servicemanager.plist [Click for support]
        [loaded]    org.macosforge.xquartz.privileged_startx.plist [Click for support]
    User Launch Agents: ℹ️
        [failed]    fm.last.lastfmhelper.plist [Click for support] [Click for details]
        [loaded]    uk.co.markallan.clamxav.freshclam.plist [Click for support]
    User Login Items: ℹ️
        Garmin Express Service    UNKNOWN  (missing value)
        Mail    Application  (/Applications/Mail.app)
        ClamXav Sentry    UNKNOWN  (missing value)
        ClamXav Sentry    UNKNOWN  (missing value)
        Dropbox    Application  (/Applications/Dropbox.app)
        ClamXav Sentry    Application  (/Applications/ClamXav (506).app/Contents/Resources/ClamXav Sentry.app)
        ClamXav Sentry    Application  (/Applications/ClamXav (506).app/Contents/Resources/ClamXav Sentry.app)
        Activity Monitor    Application  (/Applications/Utilities/Activity Monitor.app)
        ClamXav Sentry    Application  (/Applications/ClamXav (506).app/Contents/Resources/ClamXav Sentry.app)
    Internet Plug-ins: ℹ️
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.4.4.2 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        DivXBrowserPlugin: Version: 1.3 [Click for support]
        Flash Player: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        iPhotoPhotocast: Version: 7.0
        QuickTime Plugin: Version: 7.7.3
        NP_2020Player_IKEA: Version: 5.0.94.0 - SDK 10.6 [Click for support]
        GarminGpsControl: Version: 4.2.0.0 - SDK 10.8 [Click for support]
        JoostPlugin: Version: 0.13.3 [Click for support]
        ContentUploaderPlugin: Version: 1.2 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
    User internet Plug-ins: ℹ️
        RealPlayer Plugin: Version: Unknown [Click for support]
    Safari Extensions: ℹ️
        AdBlock
        Dictionary
        ClickToFlash
        Open in Internet Explorer
        Auto Refresh
        Exposer
    3rd Party Preference Panes: ℹ️
        RCDefaultApp
        DivX  [Click for support]
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        Growl  [Click for support]
        Java  [Click for support]
        MacFUSE  [Click for support]
        Perian  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            PowerBook Backup: Disk size: 107.37 GB Disk used: 25.95 GB
            FREE SPACE: Disk size: 355.48 GB Disk used: 10.13 GB
            Macintosh HD: Disk size: 284.97 GB Disk used: 207.90 GB
        Destinations:
            iMac Backup [Local]
            Total size: 536.87 GB
            Total number of backups: 194
            Oldest backup: 2011-03-06 01:10:38 +0000
            Last backup: 2015-03-16 06:51:32 +0000
            Size of backup disk: Too small
                Backup size 536.87 GB < (Disk used 243.99 GB X 3)
    Top Processes by CPU: ℹ️
             9%    mds
             7%    mds_stores
             3%    WindowServer
             2%    InterCheck
             0%    launchd
    Top Processes by Memory: ℹ️
        425 MB    firefox
        258 MB    Image Capture Extension
        176 MB    SophosScanD
        172 MB    InterCheck
        159 MB    Finder
    Virtual Memory Information: ℹ️
        70 MB    Free RAM
        1.59 GB    Active RAM
        1.55 GB    Inactive RAM
        513 MB    Wired RAM
        32.57 GB    Page-ins
        225 MB    Page-outs
    Diagnostics Information: ℹ️
        Mar 16, 2015, 04:16:48 PM    /Library/Logs/DiagnosticReports/InterCheck_2015-03-16-161648_[redacted].cpu_res ource.diag [Click for details]
        Mar 16, 2015, 03:20:40 PM    Self test - passed
        Mar 16, 2015, 01:08:31 PM    /Library/Logs/DiagnosticReports/InterCheck_2015-03-16-130831_[redacted].cpu_res ource.diag [Click for details]
        Mar 15, 2015, 11:05:11 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/garcon_2015-03-15-110511_[reda cted].crash
        Mar 15, 2015, 10:42:18 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/Finder_2015-03-15-104218_[reda cted].crash
        Mar 14, 2015, 05:39:47 PM    /Library/Logs/DiagnosticReports/InterCheck_2015-03-14-173947_[redacted].cpu_res ource.diag [Click for details]
        Mar 9, 2015, 06:29:04 PM    /Library/Logs/DiagnosticReports/Kernel_2015-03-09-182904_[redacted].panic [Click for details]
        Mar 14, 2015, 01:37:46 PM    /Library/Logs/DiagnosticReports/InterCheck_2015-03-14-133746_[redacted].cpu_res ource.diag [Click for details]
        Feb 27, 2015, 06:25:50 PM    /Library/Logs/DiagnosticReports/Kernel_2015-02-27-182550_[redacted].panic [Click for details]

  • Getting the below error when running the Baseline.grf for the first time

    I am getting the below error when running the Baseline.grf for the first time.
    Appreciate your support in resolving it.
    Error below:
    INFO [main] - *** CloverETL framework/transformation graph, (c) 2002-2012 Javlin a.s, released under GNU Lesser General Public License ***
    INFO [main] - Running with CloverETL library version 3.2.1 build#63 compiled 04/01/2012 12:53:21
    INFO [main] - Running on 4 CPU(s), OS Windows 7, architecture amd64, Java version 1.6.0_20, max available memory for JVM 901120 KB
    INFO [main] - Loading default properties from: defaultProperties
    INFO [main] - Graph definition file: graph/Baseline.grf
    INFO [main] - Graph revision: 1.114 Modified by: mkressirer Modified: Thu Apr 12 13:27:18 EDT 2012
    INFO [main] - Checking graph configuration...
    INFO [main] - Graph configuration is valid.
    INFO [main] - Graph initialization (Baseline)
    INFO [main] - [Clover] Initializing phase: 0
    INFO [main] - [Clover] phase: 0 initialized successfully.
    INFO [main] - register MBean with name:org.jetel.graph.runtime:type=CLOVERJMX_1306871483270_0
    INFO [WatchDog] - Starting up all nodes in phase [0]
    INFO [WatchDog] - Successfully started all nodes in phase!
    INFO [RUN_GRAPH1_0] - Running graph ./graph/InitDataStore.grf in the same instance.
    INFO [RUN_GRAPH1_0] - Checking graph configuration...
    INFO [RUN_GRAPH1_0] - Graph configuration is valid.
    INFO [RUN_GRAPH1_0] - Graph initialization (InitDataStore)
    INFO [RUN_GRAPH1_0] - [Clover] Initializing phase: 0
    WARN [RUN_GRAPH1_0] - WS messenger cleanup failed.
    java.lang.NullPointerException
         at org.apache.axis2.client.Stub.cleanup(Stub.java:134)
         at com.opensys.cloveretl.component.WebServiceClient.free(Unknown Source)
         at org.jetel.graph.Phase.free(Phase.java:487)
         at org.jetel.graph.TransformationGraph.freeResources(TransformationGraph.java:681)
         at org.jetel.graph.TransformationGraph.free(TransformationGraph.java:955)
         at org.jetel.graph.runtime.PrimitiveAuthorityProxy.executeGraph(PrimitiveAuthorityProxy.java:149)
         at org.jetel.component.RunGraph.runGraphThisInstance(RunGraph.java:511)
         at org.jetel.component.RunGraph.runSingleGraph(RunGraph.java:409)
         at org.jetel.component.RunGraph.execute(RunGraph.java:302)
         at org.jetel.graph.Node.run(Node.java:414)
         at java.lang.Thread.run(Thread.java:619)
    WARN [RUN_GRAPH1_0] - Some graphs wasn't executed (because graph "./graph/InitDataStore.grf" finished with error).
    WARN [RUN_GRAPH1_0] - Some graph(s) finished with error.
    ERROR [WatchDog] - Graph execution finished with error
    ERROR [WatchDog] - Node RUN_GRAPH1 finished with status: ERROR caused by: Graph './graph/InitDataStore.grf' failed!
    ERROR [WatchDog] - Node RUN_GRAPH1 error details:
    org.jetel.exception.JetelException: Graph './graph/InitDataStore.grf' failed!
         at org.jetel.component.RunGraph.execute(RunGraph.java:324)
         at org.jetel.graph.Node.run(Node.java:414)
         at java.lang.Thread.run(Thread.java:619)
    INFO [WatchDog] - [Clover] Post-execute phase finalization: 0
    INFO [WatchDog] - [Clover] phase: 0 post-execute finalization successfully.
    INFO [WatchDog] - Execution of phase [0] finished with error - elapsed time(sec): 2
    ERROR [WatchDog] - !!! Phase finished with error - stopping graph run !!!
    INFO [WatchDog] - -----------------------** Summary of Phases execution **---------------------
    INFO [WatchDog] - Phase# Finished Status RunTime(sec) MemoryAllocation(KB)
    INFO [WatchDog] - 0 ERROR 2 20132
    INFO [WatchDog] - ------------------------------** End of Summary **---------------------------
    WARN [exNode_0_1306871483270_RUN_GRAPH1] - Attempt to unregister non-registered thread in the ContextProvider.
    ./graph/InitDataStore.grf: Execution of graph failed! Error during graph initialization: Phase 0 can't be initilized.
    INFO [WatchDog] - WatchDog thread finished - total execution time: 2 (sec)
    INFO [main] - Freeing graph resources.
    ERROR [main] - Execution of graph failed !

    It can't find an Endeca specific class when running via the clover command line utility. Thus, the classpath being set in that shell script is not incorporating the .jar files where the endeca-specific classes are packaged. I would start by adding an line to see what your classpath is set to. There are actually already some lines of shell script in clover that you can uncomment to see what .jars are getting loaded:
    #echo $CLOVER_LIB/*
    for i in $CLOVER_LIB/*.jar $CLOVER_LIB/*.zip; do
         LOCAL_CLASSPATH="$LOCAL_CLASSPATH:$i"
    done;
    #for i in `ls $CLOVER_LIB/*.jar`; do
    #echo $i
    #done;
    You could also echo LOCAL_CLASSPATH to see what is getting set there. At the end of the day, you will need the endeca-specific jars to load which can be found here: /Endeca/Discovery/2.3.0/Integrator/plugins/com.endeca.latitude_1.0.0/*
    HTH,
    Dan
    http://branchbird.com

  • Problem in running servlets over the net & in non-root user mode(FC-4)

    I have installed Tomcat 5.0.28 and it is running
    successfully in Fedora core 4,I wrote a servlet,to access a mysql database and it is running correctly,but when i logged
    onto non-root user, when i call the servlet through the
    html page i get "page not found error" .This is happening even when i do it from other system.
    I thank in advance if any could help me in this case

    Did you try using %20 instead of a space?  I know it works for URLs...worth a shot.

  • My MacBook Air becomes unresponsive when logging in, and I decided to reinstall OS X Lion. When running the installer from OS X Recovery, it gave the error message "An error occurred while preparing the installation. Try running this application again."

    My MacBook Air becomes unresponsive when logging in, and I decided to reinstall OS X Lion. When running the installer from OS X Recovery, it gave the error message "An error occurred while preparing the installation. Try running this application again."
    Checking in the log revealed the following error:
    Can not connect to /var/run/systemkeychaincheck.socket: No such file or directory
    Error!! Error Domain=NSURLErrorDomain Code=-1202 "UNTRUSTED_CERT_TITLE" UserInfo=0x1086bec80 {NSLocalizedDescription=UNTRUSTED_CERT_TITLE, NSLocalizedFailureReason=UNTRUSTED
    The rest of the line is cutted off. Does anyone know what went wrong and how to fix it ?

A: my MacBook Air becomes unresponsive when logging in, and I decided to reinstall OS X Lion. When running the installer from OS X Recovery, it gave the error message "An error occurred while preparing the installation. Try running this application again."

I encountered the same exact problem when I attempted to re-installed OSX Lion on an old laptop. The date was set back in 2000, which rendered the certificate obsolete. Here's how I fixed it:
From the recovery menu, select the Terminal application. Run the 'date' command to confirm the date is wrong, then set the correct date using this command: date {month}{day}{hour}{minute}{year}
e.g. date 1219195613
Exit terminal (type exit). Retry the installation.

I encountered the same exact problem when I attempted to re-installed OSX Lion on an old laptop. The date was set back in 2000, which rendered the certificate obsolete. Here's how I fixed it:
From the recovery menu, select the Terminal application. Run the 'date' command to confirm the date is wrong, then set the correct date using this command: date {month}{day}{hour}{minute}{year}
e.g. date 1219195613
Exit terminal (type exit). Retry the installation.

  • Error when running  the ant task

    Hi,
    I got an error when running the ant from jdeveloper .I was running the to build my J2EE module which is build in Java 1.4 . I have changed my java home to JDK 1.4 and then run the ant build i got the following error .The class and ejbc compilation is completing nicely but the error is happening at jar creation .Please help me . One more thing ,when i run the ant task from the command prompt ,it is working fine .
    AuditSearchVO), audit(com.ibsplc.iRes.audit.vo.BaseAuditVO)] >
    [java] java.io.IOException: CreateProcess: javac -nowarn -classpath D:\applns\bea\jdk142_08\jre\lib\rt.jar;D:\applns\bea\jdk142_08\jre\lib\i18n.jar;D:\applns\bea\jdk142_08\jre\lib\sunrsasign.jar;D:\applns\bea\jdk142_08\jre\lib\jsse.jar;D:\applns\bea\jdk142_08\jre\lib\jce.jar;D:\applns\bea\jdk142_08\jre\lib\charsets.jar;D:\applns\bea\jdk142_08\jre\classes;D:\Project\Development\aiRES1.7\classes;D:\Project\Development\aiRES1.7\ibase.jar;D:\applns\bea\weblogic81\server\lib\weblogic.jar;D:\applns\bea\weblogic81\server\lib\wlcipher.jar;D:\applns\bea\weblogic81\server\lib\jsafeFIPS.jar;D:\applns\bea\weblogic81\server\lib\webservices.jar;D:\applns\bea\weblogic81\server\lib\xmlx.jar;D:\applns\bea\weblogic81\server\lib\jconn2.jar;D:\applns\bea\weblogic81\server\lib\jConnect.jar;D:\applns\bea\weblogic81\server\lib\EccpressoAsn1.jar;D:\applns\bea\weblogic81\server\lib\EccpressoCore.jar;D:\applns\bea\weblogic81\server\lib\EccpressoJcae.jar;D:\applns\bea\weblogic81\server\lib\ant\ant.jar;D:\applns\bea\weblogic81\server\lib\ant\optional.jar;D:\applns”
    [java]      at java.lang.Win32Process.create(Native Method)
    [java]      at java.lang.Win32Process.<init>(Win32Process.java:66)
    [java]      at java.lang.Runtime.execInternal(Native Method)
    [java]      at java.lang.Runtime.exec(Runtime.java:566)
    [java]      at java.lang.Runtime.exec(Runtime.java:491)
    [java]      at java.lang.Runtime.exec(Runtime.java:457)
    [java]      at weblogic.utils.Executable.exec(Executable.java:227)
    [java]      at weblogic.utils.Executable.exec(Executable.java:156)
    [java]      at weblogic.utils.Executable.exec(Executable.java:142)
    [java]      at weblogic.utils.compiler.CompilerInvoker.execCompiler(CompilerInvoker.java:249)
    [java]      at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.java:428)
    [java]      at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:328)
    [java]      at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:336)
    [java]      at weblogic.ejb20.ejbc.EJBCompiler.doCompile(EJBCompiler.java:270)
    [java]      at weblogic.ejb20.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:476)
    [java]      at weblogic.ejb20.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:397)
    [java]      at weblogic.ejbc20.runBody(ejbc20.java:517)
    [java]      at weblogic.utils.compiler.T

    Hi,
    I got an error when running the ant from jdeveloper .I was running the to build my J2EE module which is build in Java 1.4 . I have changed my java home to JDK 1.4 and then run the ant build i got the following error .The class and ejbc compilation is completing nicely but the error is happening at jar creation .Please help me . One more thing ,when i run the ant task from the command prompt ,it is working fine .
    AuditSearchVO), audit(com.ibsplc.iRes.audit.vo.BaseAuditVO)] >
    [java] java.io.IOException: CreateProcess: javac -nowarn -classpath D:\applns\bea\jdk142_08\jre\lib\rt.jar;D:\applns\bea\jdk142_08\jre\lib\i18n.jar;D:\applns\bea\jdk142_08\jre\lib\sunrsasign.jar;D:\applns\bea\jdk142_08\jre\lib\jsse.jar;D:\applns\bea\jdk142_08\jre\lib\jce.jar;D:\applns\bea\jdk142_08\jre\lib\charsets.jar;D:\applns\bea\jdk142_08\jre\classes;D:\Project\Development\aiRES1.7\classes;D:\Project\Development\aiRES1.7\ibase.jar;D:\applns\bea\weblogic81\server\lib\weblogic.jar;D:\applns\bea\weblogic81\server\lib\wlcipher.jar;D:\applns\bea\weblogic81\server\lib\jsafeFIPS.jar;D:\applns\bea\weblogic81\server\lib\webservices.jar;D:\applns\bea\weblogic81\server\lib\xmlx.jar;D:\applns\bea\weblogic81\server\lib\jconn2.jar;D:\applns\bea\weblogic81\server\lib\jConnect.jar;D:\applns\bea\weblogic81\server\lib\EccpressoAsn1.jar;D:\applns\bea\weblogic81\server\lib\EccpressoCore.jar;D:\applns\bea\weblogic81\server\lib\EccpressoJcae.jar;D:\applns\bea\weblogic81\server\lib\ant\ant.jar;D:\applns\bea\weblogic81\server\lib\ant\optional.jar;D:\applns”
    [java]      at java.lang.Win32Process.create(Native Method)
    [java]      at java.lang.Win32Process.<init>(Win32Process.java:66)
    [java]      at java.lang.Runtime.execInternal(Native Method)
    [java]      at java.lang.Runtime.exec(Runtime.java:566)
    [java]      at java.lang.Runtime.exec(Runtime.java:491)
    [java]      at java.lang.Runtime.exec(Runtime.java:457)
    [java]      at weblogic.utils.Executable.exec(Executable.java:227)
    [java]      at weblogic.utils.Executable.exec(Executable.java:156)
    [java]      at weblogic.utils.Executable.exec(Executable.java:142)
    [java]      at weblogic.utils.compiler.CompilerInvoker.execCompiler(CompilerInvoker.java:249)
    [java]      at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.java:428)
    [java]      at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:328)
    [java]      at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:336)
    [java]      at weblogic.ejb20.ejbc.EJBCompiler.doCompile(EJBCompiler.java:270)
    [java]      at weblogic.ejb20.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:476)
    [java]      at weblogic.ejb20.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:397)
    [java]      at weblogic.ejbc20.runBody(ejbc20.java:517)
    [java]      at weblogic.utils.compiler.T

  • Seeing the Loupe Info when using the "L" command

    Anyone found a way to see the Loupe Info data (ISO, Fs top etc etc) when applying the "L" command to darken the background out, leaving just the image onscreen?
    Reason being I often do a run thru of images from a shoot in "L" mode, but would really like to know the settings I used to shoot?
    Any thoughts
    Thanks in advance

    Open Preview Application.
    Select you image.
    Click on Tools and select Adjust Size:
    Enter the desired parameters:
    Ciao.

  • Invalid group section error when running report containing command.

    The error is the following (displayed in Dutch, spent some time changing the language settings, but still CR persists in showing the message in my mother tongue, but the gist of it is: invalid group section or something like that) Process error: Ultimo.Services.ReportService.Core.ReportingException: Error creating export file: LtapList02-01.rpt ---> CrystalDecisions.CrystalReports.Engine.InvalidArgumentException: Deze groepssectie kan niet worden afgedrukt omdat het voorwaardeveld van de sectie niet bestaat of ongeldig is. Maak de sectie op om een ander voorwaardeveld te kiezen. Fout in bestand LtapList02-01 {DEE4EF1C-A138-4AE9-8C64-EF8389263782}.rpt: Ongeldige groepsvoorwaarde. ---> System.Runtime.InteropServices.COMException: Deze groepssectie kan niet worden afgedrukt omdat het voorwaardeveld van de sectie niet bestaat of ongeldig is. Maak de sectie op om een ander voorwaardeveld te kiezen. Fout in bestand LtapList02-01 {DEE4EF1C-A138-4AE9-8C64-EF8389263782}.rpt: Ongeldige groepsvoorwaarde.  at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext)  at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)  --- End of inner exception stack trace ---  at CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e)  at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)  at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)  at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)  at CrystalDecisions.CrystalReports.Engine.ReportDocument.Export(ExportOptions options) etc. The command is phrased thus: select * from {?DatabaseSchemaPrefix}applfn_LtapStructure(). The error is somehow associated with the parameter used in this command. If I remove it and replace it by the value used when running the report, the report runs successfully. Also, strangely, when I define a default value for the parameter in the command and programmatically add a value for it by the method call parameterFieldDefinition.CurrentValues.AddValue(), also the report will run flawlessly. Without the default value it will fail. But when I want to run the command without a value for the parameter (parameterFieldDefinition.CurrentValues.AddValue("")), so for it to be empty, while a default value is defined for it too, also, running the report will result in an error. My question is: has anyone ever seen this type of thing happening? And is there a solution?

    Hi
         Is it a Date Parameter., ! if so, look for format it is taking. because u said report runs well when default value is assigned. Hope, most probably the problem will be related to data format.
    and
    try to provide details regarding CR version and all., will be helpful to others to help you.

  • Error message when running the FSPCCURR - PS/Fin MultiCurrency Process

    error message when running the FSPCCURR - PS/Fin MultiCurrency Process
    =====================================================
    2011-03-21-17.21.39.660000 INFO(5870,1) PI(785156) Program(FSPCGLMC) GL MultiCurrency processing has begun.
    2011-03-21-17.21.40.820000 INFO(5870,4) PI(785156) Program(FSPCSTEP) Beginning processing, Step CURPER in Group NONREVAL for Business Unit NAMER.
    2011-03-21-17.30.14.520000 INFO(5870,4) PI(785156) Program(FSPCSTEP) Beginning processing, Step USD_USD in Group NONREVAL for Business Unit NAMER.
    2011-03-21-17.30.53.000000 SEVERE ERROR IN PGM:(5870,58) PI(785156) Program(FSPCPROC) Edit journal fails for Business Unit NAMER and Step USD_USD.

    Hi 841037,
    We are facing this same issue in our environment. We are on FSCM 9.1 bundle #24.Please let me know how you resolved this issue at your end. Any help or pointers regarding this issue is highly appreciated. Thanks.

  • Error in the Informatica when running the DAC load( Prebuilt Analytics)

    Hi All,
    Please help me with the below issue with the informatica i am getting when running the DAC load:
    Below are the details:
    SELECT F0006.MCMCU,F0006.MCSTYL,F0006.MCCO,F0006.MCAN8,F0006.MCDL01,F0006.MCRP06,F0006.MCUPMJ,F0006.MCUPMT,F0006.MCUSER,F0101.ABAN8,F0101.ABLNGP, F0101.ABEFTB,F0101.ABUPMJ,F0101.ABUPMT,F0116.ALAN8,F0116.ALEFTB,F0116.ALADD1,F0116.ALADD2,F0116.ALADD3,F0116.ALADD4,
    F0116.ALADDZ,F0116.ALCTY1,F0116.ALCOUN,F0116.ALADDS,F0116.ALCTR,F0116.ALUPMJ,F0116.ALUPMT,
    CAST(F0006.MCRP08 AS CHAR(10)) AS FLEX_ATTRIB_1_CHAR ,
    CAST(F0006.MCRP10 AS CHAR(10)) AS FLEX_ATTRIB_2_CHAR,
    CAST(F0006.MCRP19 AS CHAR(10)) AS FLEX_ATTRIB_3_CHAR,
    CAST(F0006.MCRP08 AS CHAR(10)) AS FLEX_ATTRIB_4_CHAR,
    CAST(F0006.MCRP13 AS CHAR(10)) AS FLEX_ATTRIB_5_CHAR,
    CAST(F0006.MCRP14 AS CHAR(10)) AS FLEX_ATTRIB_6_CHAR,
    CAST(NULL AS CHAR(10)) AS FLEX_ATTRIB_7_CHAR,
    CAST(F0006.MCRP01 AS CHAR(10)) AS FLEX_ATTRIB_8_CHAR,
    CAST(F0006.MCRP15 AS CHAR(10)) AS FLEX_ATTRIB_9_CHAR,
    CAST(F06.MCRP16 AS CHAR(10)) AS FLEX_ATTRIB_10_CHAR,---------------------------Table name should be F0006
    CAST(F0006.MCRP12 AS CHAR(10)) AS FLEX_ATTRIB_11_CHAR,
    CAST(F0006.MCRP27 AS CHAR(10)) AS FLEX_ATTRIB_12_CHAR,
    CAST(F0006.MCRP21 AS CHAR(10)) AS FLEX_ATTRIB_13_CHAR,
    CAST(F0006.MCRP03 AS CHAR(10)) AS FLEX_ATTRIB_14_CHAR,
    CAST(F0006.MCRP13 AS CHAR(10)) AS FLEX_ATTRIB_15_CHAR,
    CAST(F0006.MCRP23 AS CHAR(10)) AS FLEX_ATTRIB_16_CHAR,
    CAST(F0006.MCRP21 AS CHAR(10)) AS FLEX_ATTRIB_17_CHAR,
    CAST(F0006.MCRP24 AS CHAR(10)) AS FLEX_ATTRIB_18_CHAR,
    CAST(F0006.MCRP19 AS CHAR(10)) AS FLEX_ATTRIB_19_CHAR,
    CAST(NULL AS CHAR(10)) AS FLEX_ATTRIB_20_CHAR,
    CAST(F0006.MCRP12 AS CHAR(10)) AS STATE_REGION,
    CAST(F0006.MCRP04 AS CHAR(10)) AS COUNTRY_REGION,
    '0' AS X_CUSTOM
    FROM F0006
    LEFT OUTER JOIN F0101 ON
    F0101.ABAN8 = F0006.MCAN8
    LEFT OUTER JOIN F0116 ON
    F0116.ALAN8 = F0006.MCAN8 AND
    F0116.ALEFTB=F0101.ABEFTB
    As mentioned in the SQL the table name should be F0006 instead F06, I have checked the Source Qualifier transformation and below is the SQL issued
    SELECT F0006.MCMCU,F0006.MCSTYL,F0006.MCCO,F0006.MCAN8,F0006.MCDL01,F0006.MCRP06,F0006.MCUPMJ,F0006.MCUPMT,F0006.MCUSER,F0101.ABAN8,F0101.ABLNGP, F0101.ABEFTB,F0101.ABUPMJ,F0101.ABUPMT,F0116.ALAN8,F0116.ALEFTB,F0116.ALADD1,F0116.ALADD2,F0116.ALADD3,F0116.ALADD4,
    F0116.ALADDZ,F0116.ALCTY1,F0116.ALCOUN,F0116.ALADDS,F0116.ALCTR,F0116.ALUPMJ,F0116.ALUPMT,
    CAST($$FLEX_ATTRIB_1_CHAR AS CHAR(10)) AS FLEX_ATTRIB_1_CHAR ,
    CAST($$FLEX_ATTRIB_2_CHAR AS CHAR(10)) AS FLEX_ATTRIB_2_CHAR,
    CAST($$FLEX_ATTRIB_3_CHAR AS CHAR(10)) AS FLEX_ATTRIB_3_CHAR,
    CAST($$FLEX_ATTRIB_4_CHAR AS CHAR(10)) AS FLEX_ATTRIB_4_CHAR,
    CAST($$FLEX_ATTRIB_5_CHAR AS CHAR(10)) AS FLEX_ATTRIB_5_CHAR,
    CAST($$FLEX_ATTRIB_6_CHAR AS CHAR(10)) AS FLEX_ATTRIB_6_CHAR,
    CAST($$FLEX_ATTRIB_7_CHAR AS CHAR(10)) AS FLEX_ATTRIB_7_CHAR,
    CAST($$FLEX_ATTRIB_8_CHAR AS CHAR(10)) AS FLEX_ATTRIB_8_CHAR,
    CAST($$FLEX_ATTRIB_9_CHAR AS CHAR(10)) AS FLEX_ATTRIB_9_CHAR,
    CAST($$FLEX_ATTRIB_10_CHAR AS CHAR(10)) AS FLEX_ATTRIB_10_CHAR,
    CAST($$FLEX_ATTRIB_11_CHAR AS CHAR(10)) AS FLEX_ATTRIB_11_CHAR,
    CAST($$FLEX_ATTRIB_12_CHAR AS CHAR(10)) AS FLEX_ATTRIB_12_CHAR,
    CAST($$FLEX_ATTRIB_13_CHAR AS CHAR(10)) AS FLEX_ATTRIB_13_CHAR,
    CAST($$FLEX_ATTRIB_14_CHAR AS CHAR(10)) AS FLEX_ATTRIB_14_CHAR,
    CAST($$FLEX_ATTRIB_15_CHAR AS CHAR(10)) AS FLEX_ATTRIB_15_CHAR,
    CAST($$FLEX_ATTRIB_16_CHAR AS CHAR(10)) AS FLEX_ATTRIB_16_CHAR,
    CAST($$FLEX_ATTRIB_17_CHAR AS CHAR(10)) AS FLEX_ATTRIB_17_CHAR,
    CAST($$FLEX_ATTRIB_18_CHAR AS CHAR(10)) AS FLEX_ATTRIB_18_CHAR,
    CAST($$FLEX_ATTRIB_19_CHAR AS CHAR(10)) AS FLEX_ATTRIB_19_CHAR,
    CAST($$FLEX_ATTRIB_20_CHAR AS CHAR(10)) AS FLEX_ATTRIB_20_CHAR,
    CAST($$STATE_REGION AS CHAR(10)) AS STATE_REGION,
    CAST($$COUNTRY_REGION AS CHAR(10)) AS COUNTRY_REGION,
    '0' AS X_CUSTOM
    FROM F0006
    LEFT OUTER JOIN F0101 ON
    F0101.ABAN8 = F0006.MCAN8
    LEFT OUTER JOIN F0116 ON
    F0116.ALAN8 = F0006.MCAN8 AND
    F0116.ALEFTB=F0101.ABEFTB
    The error code and error message in the workflow monitor says:
    Message Code: VAR_27028
    Message: Use override value [F06.MCRP16] for mapping parameter:[mplt_BC_SDE_JDE_InternalOrganization_BusinessUnits.$$FLEX_ATTRIB_10_CHAR].
    Some how it is overridng all the values so please let me know what i can do.
    Thanks in Advance

    Oracle Support

  • Maybe you are looking for

    • I can't re install iTunes on Windows Vista- itunes error 7/Windows error 5.

      I have updated my computer with Service Pack 1 & 2 for Windows Vista.  For some reason Itunes was deleted and when I try to reinstall it I get a message "iTunes was not installed correctly. Error 7, Windows error 5"  I have done the following to try

    • How to easily add Facebook, Digg, Twitter, Share (for email links) to page...

      Hello, I would like to add a few of those Facebook "Like", Digg, Twitter, etc. buttons to a client's page. I looked at Facebook and I think I can get the code there for Facebook; but, do I have to do this for each site? Or, is there someplace where I

    • WBS in Account assignment of Sales Contract

      Dear Experts, I am going through an old sales cotnract in VA43, and i came accross the account assignment tab where there is WBS field. When does a sales guy use that. I thought it was only used for projects and ultimately an asset.Please advice coz

    • Ability to Queue Rather than "Open" Hundreds of Files

      Problem: I have 500 JPEG files to edit in Photoshop.  I cannot "open" more than 200 files at once for editing. Solution: Make a "Queue" option to allow me to queue as many files as I desire.  Only one file will be open at a time for editing, and when

    • How to use  EXIT_SAPLEBND_002 form class M06E0004

      hi    my problem is my client want that if user do any changes in a released PO , then release should get revert. currently it is reverting only on when Quantity Increases . i gone through many threads but not able to solve this . but come to know th