Ntlmaps not running after recent update. (FIXED)

FIXED - Ended up re-writing MAKEPKG, depends, modified patches file and new MD5 sums to build on Python 2.7.  Instructions below for anyone who needs them. Cheers - Arkay.
Hi All,
I use ntlmaps in conjunction with corkscrew to create ssh tunnels out through my work proxy to my home network.  It's always worked perfectly fine until a recent pacman -Syu.
From looking into it as much as I can it appears that Python 3 has been pulled into the mix where ntlmaps appears only to work with python 2.
In the original effort to fix it I updated to the latest MAKEPKG in the AUR which also doesn't seem to work with either version of Python.
I've attempted to debug the issues in Python though my knowledge of the language is sorely lacking.
The initial error I get is:
File "/usr/bin/ntlmaps", line 31
print 'NTLM authorization Proxy Server v%s' % conf['GENERAL']['VERSION']
^
SyntaxError: invalid syntax
But the code block above appears ok to me.  On further investigation (running it line by line in interactive mode), it appeared to be the includes causing the issue at which point I found dos line endings on all the code in the site-python ntlmaps code.  After removing all of them and converting back to unix eol's (didn't seem to really make a difference), I still get the same syntax errors.  Further looking finds includes to libraries which possibly no longer exist or are depreciated in python 3. "threads" seems to be the main offender, according to the doco it is depreciated but should still work (tm).
I'm pretty much at a loss as to what to do next.  I've tried swapping to cntlm but for some reason our proxy won't allow the connections through the way ntlmaps does.
I also just tried to re-install it with aurget.  The makepkg worked but the install script failed with:
Byte compiling python modules...
error: command failed to execute correctly
Looking into that now too...
Any help would be much appreciated.  Perhaps someone else can attempt to install and run it on their system.
Cheers,
Arkay.
P.S.  My system is i686, recently updated.
P.P.S.  Apologies to the mods.  This should most likely be in the PKGBUILD forms... Please move and remove this P.P.S
Last edited by arkay (2010-10-26 01:00:09)

Ok.  For some reason I haven't (yet) been able to get the PKGBUILD working with python 3.
I have however updated everything to work as expected with python 2.7 (specifically ntlmaps-0.9.9.0.1 under python2 2.7-2).
Here's the relevant bits for anyone who would like to build against 2.7 instead (if you have problems with 3).
Filename: PKGBUILD
# Contributor: Graziano <[email protected]>
# Maintainer: John Gerritse <[email protected]>
pkgname=ntlmaps
pkgver=0.9.9.0.1
pkgrel=5
pkgdesc="'NTLM Authorization Proxy Server' (APS) is a proxy software that allows you to authenticate via an MS Proxy Server using the proprietary NTLM protocol."
url="http://ntlmaps.sourceforge.net/"
license="GPL"
arch=('i686' 'x86_64')
depends=('python2')
backup=('etc/conf.d/ntlmaps')
install=$pkgname.install
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/${pkgname}-${pkgver}.tar.gz patches ntlmaps.install ntlmaps.rc)
md5sums=('7ee0a00d5446f39ebbe5f0f90465986e'
'0ba42ac958b124b8e635c1524b26138e'
'a78770387e22c14a37bfdaee25c6594a'
'602132fda99e27efdd636a946e034d6b')
build() {
PYTHONVER=`python2 -c 'import sys;print(sys.version[0:3])'`
cd $srcdir/$pkgname-$pkgver/
patch -Np1 -i ../patches
install -D -m 600 server.cfg $pkgdir/etc/conf.d/$pkgname
PYDEST_SITE=$pkgdir/usr/lib/python$PYTHONVER/site-packages
mkdir -p $PYDEST_SITE/$pkgname
cp -a lib/* $PYDEST_SITE/$pkgname
install -m 644 __init__.py $PYDEST_SITE/$pkgname/__init__.py
install -D -m 755 main.py $pkgdir/usr/bin/$pkgname
install -D -m 755 ../ntlmaps.rc $pkgdir/etc/rc.d/ntlmaps
echo $pkgname > $PYDEST_SITE/$pkgname.pth
echo "echo $pkgname > $PYDEST_SITE/$pkgname.pth"
Filename: ntlmaps.install
# This is a default template for a post-install scriptlet. You can
# remove any functions you don't need (and this header).
# arg 1: the new package version
pre_install() {
/bin/true
# arg 1: the new package version
post_install() {
echo "Byte compiling python modules..."
python2 /usr/lib/python2.7/compileall.py >/dev/null 2>&1
python2 -O /usr/lib/python2.7/compileall.py >/dev/null 2>&1
# arg 1: the new package version
# arg 2: the old package version
pre_upgrade() {
/bin/true
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
echo "Byte compiling python modules..."
python2 /usr/lib/python2.7/compileall.py >/dev/null 2>&1
python2 -O /usr/lib/python2.7/compileall.py >/dev/null 2>&1
# arg 1: the old package version
pre_remove() {
/bin/true
# arg 1: the old package version
post_remove() {
/bin/true
op=$1
shift
$op $*
Filename: ntlmaps.rc
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
case "$1" in
start)
PID=`pidof -o %PPID /usr/bin/ntlmaps`
stat_busy "Starting ntlmaps"
if [ -z "$PID" ]; then
/usr/bin/ntlmaps > /var/log/ntlmaps.log 2>&1 &
fi
if [ ! -z "$PID" -o $? -gt 0 ]; then
stat_fail
else
add_daemon ntlmaps
stat_done
fi
stop)
PID=`pidof -o %PPID /usr/bin/python2 /usr/bin/ntlmaps`
stat_busy "Stopping ntlmaps"
[ ! -z "$PID" ] && kill $PID &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
rm_daemon ntlmaps
stat_done
fi
restart)
$0 stop
sleep 1
$0 start
echo "usage: $0 {start|stop|restart}"
esac
Filename: patches
diff -Naur ntlmaps-0.9.9.0.1/__init__.py ntlmaps-0.9.9.0.1_new//__init__.py
--- ntlmaps-0.9.9.0.1/__init__.py 2005-06-10 13:49:35.000000000 +1000
+++ ntlmaps-0.9.9.0.1_new//__init__.py 2010-10-25 12:49:03.820614080 +1100
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python2
# This file is Copyright 2004 Darryl A. Dixon <[email protected]>
# and is part of 'NTLM Authorization Proxy Server',
@@ -20,10 +20,10 @@
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
-import os, sys
+#import os, sys
-ntlmaps_dir = os.path.dirname(os.path.abspath(__file__))
-ntlmaps_libdir = ntlmaps_dir + '/lib'
-sys.path.append(ntlmaps_libdir)
+#ntlmaps_dir = os.path.dirname(os.path.abspath(__file__))
+#ntlmaps_libdir = ntlmaps_dir + '/lib'
+#sys.path.append(ntlmaps_libdir)
-del os, sys
+#del os, sys
diff -Naur ntlmaps-0.9.9.0.1/lib/config.py ntlmaps-0.9.9.0.1_new//lib/config.py
--- ntlmaps-0.9.9.0.1/lib/config.py 2005-06-10 13:46:43.000000000 +1000
+++ ntlmaps-0.9.9.0.1_new//lib/config.py 2010-10-25 12:51:35.847799575 +1100
@@ -52,7 +52,7 @@
the config file. Otherwise the function falls back to
'server.cfg' in the current directory. """
- configFileName = configFileDir+'server.cfg'
+ configFileName = configFileDir+'ntlmaps'
optionsList, notUsedArguments = getopt.getopt(argv[1:], 'c:')
diff -Naur ntlmaps-0.9.9.0.1/main.py ntlmaps-0.9.9.0.1_new//main.py
--- ntlmaps-0.9.9.0.1/main.py 2006-01-27 12:35:00.000000000 +1100
+++ ntlmaps-0.9.9.0.1_new//main.py 2010-10-25 12:58:02.445983916 +1100
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#! /usr/bin/python2
# This file is part of 'NTLM Authorization Proxy Server'
# Copyright 2001 Dmitry A. Rozmanov <[email protected]>
@@ -18,17 +18,16 @@
# Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
-import __init__
import sys
-import server, config, config_affairs
+from ntlmaps import server, config, config_affairs
# config affairs
# look for default config name in lib/config.py
-conf = config.read_config(config.findConfigFileNameInArgv(sys.argv, __init__.ntlmaps_dir+'/'))
+conf = config.read_config(config.findConfigFileNameInArgv(sys.argv, '/etc/conf.d/'))
conf['GENERAL']['VERSION'] = '0.9.9.0.1'
Save each of the code blocks (cut/paste into an editor) with the filenames given into a directory.  Update/check the md5sums in the PKGBUILD for each (dunno how to upload files into a thread so you'll have to check the sums match after pasting/saving and I don't yet have AUR access).  Then run makepkg.  You should end up with a working ntlmaps for python2.7.
Cheers,
Arkay.
Last edited by arkay (2010-10-26 03:40:20)

Similar Messages

  • HT2693 My UPAD lite does not start after recent update. I have lots of info in it. Can anybody help me to get it back. Can I get the update out somehow? Thanks

    My UPAD lite does not start after recent update. I have lots of info in it. Can anybody help me to get it back? Can I somehow undo the update? Thanks

    "UPAD lite?"
    I expect that you mean some version of iPad.
    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until the screen blacks out or you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.

  • LiveUpdate 6-not running after last update

    application not running after start win7x64, but I did not set anything and not even start
    pls. test application
    main PC:
    moth. H97
    CPU: Corei-5
    VGA: GTX 560Ti
    thx

    Hi,
    I am pretty sure you want to know what forum's experienced users think about Live Update, don't you?
    Live Update is terrible, and in most cases it's better to remove it and forget about it. It's alright to keep it installed and run to check for updates but a lot better and safer to install them manually (yourself) from MSI's product page. And forget about updating BIOS. It's as good as smashing the BIOS chip with the hammer  MFlash or Forum's tool is much safer and more efficient.
    What updates did it do? What drivers/utilities do you have installed from the CD/MSI's page?

  • Safari not running after ios8 update for ipad

    I updated my Ipad with Retina display with ios8 lately and noticed that safari is not running after update. whenever i try to open it it just pop open and close immediately and automatically.
    There was no problem of this kind before the update.
    Any solution??

    If the above doesn't work:
    (A) Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.
    (B) Try reset all settings
    Settings>General>Reset>Reset All Settings
    Note: Data will not be affected but settings for Wi-Fi, FaceTime, Message, Home Sharing will be reset

  • My imessage is not Working after recent update

    My daughters iMessage &amp; FaceTime no longer work after recent update, can anybody help please?

    It's mostly a server issue because millions of users are trying to do the same. Apple's servers get bogged down. Try waiting a bit - a day - before trying again. You can also check out this for other things to try.

  • Possible fix for Gmail not syncing after recent update

    Hey all,
    I've seen at least one person on the forums who's had issues with their Gmail not syncing after the latest update. I thought I would pass along my solution to the problem in case it worked for others. After I updated to the latest version of the iPhone software a couple of days ago, my mail accounts from Gmail were behaving strangely. For one thing, all of my saved e-mails on the iPhone were deleted. For another, it no longer received any e-mail from those accounts. Finally, I decided to test it out by creating a new e-mail account on my iPhone to sync with a disused Gmail address that I had not yet set up for IMAP on my phone. To my surprise, it worked perfectly! Then, after I checked the details of the new e-mail account with those of my existing accounts, I discovered that the incoming server port number was incorrect on the other accounts. It was 995 when it ought to have been 993. When I corrected the port numbers, all of the accounts synced perfectly. I hope that might work for someone else. It was at least worth a post on the forums, I figured. Have a wonderful St. Patrick's day, everyone!

    Fantastic! Worked a treat - thanks!
    Lucy

  • MacBook fan constantly running after recent updates

    Ever since I installed the QuickTime/FrontRow/iTunes update of the other day, my MacBook's fan has been running constantly. I have rebooted, reset the SMC, checked Activity Monitor for any rogue processes, reinstalled the updates via the downloads from Apple, etc., and found nothing out of the ordinary. I installed iStat Pro's Dashboard widget to monitor the speed, and it shows it as running from 5300 - 5800 RPM regularly even with nothing intense going on. This doesn't seem normal, as before the fan would only come on when I was doing something CPU-intensive. Any ideas?

    I finally found my issue, it was NOT the recent update (at least on my machine) but my printer queue.
    When I print from my MacBook I do so wirelessly through a printer I connect to a different Mac just for this purpose. BUT, this time I disconnected the Printer from the other machine apparently before two of my jobs had been able to print. Thus, for the last three days each time I turned my Mac on it would endlessly look for the printer and attempt to print. This could be seen under Process ID 0, called "_PrintJobMgr".
    THE FIX:
    All I needed to do was go to System Preferences -> Print & Fax-> then delete any open jobs.
    So, this was my fault, but it would be nice if the software was smart enough to kill these jobs on its own.

  • WSUS 3.0 SP2 will not run after installing update 2720211

    http://support.microsoft.com/kb/2720211
    The update was installed and server rebooted.  Now the WSUS console on Server 2008 SP2 will not run.  "Error: Connection Error.  An error occurred trying to connect to WSUS server."
    The update service and IIS are both running.
    When checking for updates from clients, they  show a message saying their update software needs to be upgraded, but they fail updating.
    I was going to uninstall the update, but there is no option to uninstall the update from the WSUS server.
    What are options to fix this?

    This page helped alot. Let me recap for others on the interwebs.
    Cause:
    - Applied KB2720211 to a WSUS 3.0 SP2 server thats running on Windows 2008 64 bit server with local SQL db.
    What happened:
    - I could no longer sync my WSUS server with the interwebs.
    - clients could still connect to WSUS and I could still open the WSUS console.
    - Uninstalled WSUS, left DB and downloads and reinstalled WSUS in attempt to fix broken syncing.
    - Clients could now no longer sync with WSUS server. (They got Windows Update error code 800B0001).
    Solution:
    - Googled, found this page.
    - Followed just these last few steps that Chucker2 posted.
    Extract necessary files from 2720211 installer
    Download the KB2720211 installer for your architecture from Microsoft (http://support.microsoft.com/kb/2720211)
    Extract WUSSetup.msp from the installer by running the installer with the /extract parameter (example: "WSUS-KB2720211-x64.exe /extract")
    With 7-zip, open WUSSetup.msp and extract "PCW_CAB_SUS".
    With 7-zip, open "PCW_CAB_SUS" and extract "DbCert", "DbCertDll", and "DbCertSql".
    Rename those files to "WSUSSignDb.cer", "WSUSSignDb.dll", and "WSUSSignDb.sql", respectively.
    On your WSUS server, navigate to "C:\Windows\SYSMSI\SSEE\MSSQL.2005\MSSQL\SchemaSig" and copy the extracted "WSUSSignDb.cer" and "WSUSSignDb.dll" to it. Make a backup copy of the two existing versions, just in case.
    On your WSUS server, navigate to "C:\Program Files\Update Services\Database" and copy the extracted "WSUSSignDb.sql" to it. Make a backup copy of any existing versions of the file.
    Reinstalled 2720211
    PROBLEM FIXED AND CLIENTS COULD ALL SYNCH AGAIN.
    Thanks Chucker 2.
    ps. Susan Bradley stop polluting every WSUS post on the interwebs with your constant links to WSUS KB2720211 : Common issues
    encountered and how to fix them
    this is the best solution. after reboot the problem is solved .
    kailash

  • Lightening to HDMI not working after recent update

    I recently updated my Ipad and now my Lightening to HDMI adapter does not seem to work.  It was working fine up until the most recent update.   I know that the HDMI cable works and all the other connections are fine b/c it works fine when plugged into our blu-ray player. 
    Has anyone else had this problem, or does anyone know how to fix this issue?

    What recent update?  The last Epson R220 update for non intel Macs was 08/19/10:  http://www.epson.com/cgi-bin/Store/support/supDetail.jsp?oid=60202&prodoid=58654 761&BV_UseBVCookie=yes&infoType=Downloads&platform=Macintosh&x=21&y=13
    What happens when you click on the EPSON Printer Utility which should be inside the Utility folder?  Have you tried repairing permissions and restarting your computer?  Have you read Epson's user manual and/or contacted their tech support?
    I also have the R220 model.  Besides using their drivers, I also use the Gimp drivers:  http://gimp-print.sourceforge.net/MacOSX.php

  • Firefox will not open after recent update of all computer lab servers, Windows server 2008 R2, Multipoint 2011

    All 3 computer lab servers were recently updated and rebooted. Java was updated as well to 7u21. Now all 3 do not respond when Firefox icon is clicked, from any thin-client or remote desktop session/user. There is no popup error, just an hour-glass for about 5 seconds and then nada. IE is fine. I can't tell if it was the java update or a windows security update, and I'm not seeing anything in the error logs

    It is possible that your security software (firewall, anti-virus) blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls

  • M4b files will not sync after recent update

    I recently updated the software on my ipod touch 4th gen. After updating, I tried to sync my playlists, but not all of the files would sync. After some investigation, I figured out that the files that wouldn't sync were audio books in m4b format. They synced just fine before the update. What is the problem here?

    Thank you for the response, I have not tried a restore, won't that wipe out everything on the phone? Leaving on vacation and don't have time to start over, I'll have to try this after I get back if the next response does not solve the problem.

  • Apper not working after recent update

    Hi everyone,
    with today's update of pacman, apper stopped working, any solution to get it back and running? I get this in the terminal:
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    enumFromString ( Role ) : converted "" to "UnknownRole" , enum id 0
    enumFromString ( Group ) : converted "" to "UnknownGroup" , enum id 1
    enumFromString ( Filter ) : converted "" to "UnknownFilter" , enum id 3
    Error, cannot create transaction proxy
    QDBusError("com.trolltech.QtDBus.Error.InvalidObjectPath", "Invalid object path: Process /usr/lib/dbus-1.0/dbus-daemon-launch-helper received signal 5")
    Error, cannot create transaction proxy
    QDBusError("com.trolltech.QtDBus.Error.InvalidObjectPath", "Invalid object path: Process /usr/lib/dbus-1.0/dbus-daemon-launch-helper received signal 5")
    and in the GUI i get "an error occured" for everything, no package list, no nothing.
    Thanks.
    Edit: it started to work after a forced repo update today.
    Last edited by LyCC (2013-04-06 07:19:42)

    At my computer, there was a problem with the configuration file of pacman (/etc/pacman.conf). Do something with pacman in the terminal, and see if there is an warning message of pacman. After I updated the configuration file, the problem with Apper was gone.
    When solved, please change the subject with [SOLVED].

  • Help!! Muse is not responding after recent update.

    Muse application is not responding...I tried to uninstall and install again...still same. Please help!!!
    Thanks

    Zak,
    Our IT specialist did tell me that he checked the website and it is available on Webroot's whitelist (as of the end of last week).  He doesn't think that the virus/thread update has reached our network at this time.  He manually cleared MuseOobeCall.exe and Muse.exe on our side, uninstalled and reinstalled Muse on my machine, and everything works great now.  He thinks that we are not running on their latest virus/thread info.  I hope that this helps.  I wish that I could provide more details, but I don't have access to any of this information.
    Best regards,
    Derek Alford
    Marketing Specialist
    E-Ring, Inc.<http://www.eringcrm.com/eringwebsite/er_home.aspx>
    3015 Windward Plaza Suite 575
    Alpharetta, GA 30005
    1-877-553-7464
    678-240-2750 x3207
    [email protected]<mailto:[email protected]>

  • Safari will not run after new update

    I just ran the updates for my MacBook and after wards Safari will not open (I am using Firefox). The problem report said it might be AcidSeach plug in. I have no idea what that is. Can someone help? Thanks!
    Process: Safari [434]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0.3 (5531.9)
    Build Info: WebBrowser-55310900~1
    Code Type: X86 (Native)
    Parent Process: launchd [95]
    Date/Time: 2009-09-29 15:19:13.516 -0400
    OS Version: Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000020
    Crashed Thread: 0
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x9119c688 objc_msgSend + 24
    1 com.pozytron.AcidSearch 0x0058bb5e +[ASAppLoader load] + 489
    2 libobjc.A.dylib 0x91194bdf callloadmethods + 214
    3 libobjc.A.dylib 0x9118e0d3 load_images + 98
    4 dyld 0x8fe02e38 dyld::notifySingle(dyldimagestates, mach_header const*, char const*, long) + 328
    5 dyld 0x8fe0e7cf ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int) + 287
    6 dyld 0x8fe0e8c9 ImageLoader::runInitializers(ImageLoader::LinkContext const&) + 57
    7 dyld 0x8fe02202 dyld::runInitializers(ImageLoader*) + 34
    8 dyld 0x8fe0bbdd dlopen + 605
    9 libSystem.B.dylib 0x904102c2 dlopen + 66
    10 com.apple.CoreFoundation 0x90851403 _CFBundleDlfcnLoadBundle + 307
    11 com.apple.CoreFoundation 0x90851d27 _CFBundleLoadExecutableAndReturnError + 567
    12 com.apple.Foundation 0x94d151d3 _NSBundleLoadCode + 259
    13 com.apple.Foundation 0x94d1493b -[NSBundle loadAndReturnError:] + 331
    14 com.apple.Foundation 0x94d147ea -[NSBundle load] + 42
    15 com.apple.Foundation 0x94d147ad -[NSBundle principalClass] + 45
    16 net.culater.SIMBL 0x0054c2ac +[SIMBL loadBundle:] + 570
    17 net.culater.SIMBL 0x0054ba02 +[SIMBL loadBundleAtPath:] + 269
    18 net.culater.SIMBL 0x0054b8b8 +[SIMBL installPlugins:] + 332
    19 com.apple.Foundation 0x94ce842a nsnotecallback + 106
    20 com.apple.CoreFoundation 0x9088547a __CFXNotificationPost + 362
    21 com.apple.CoreFoundation 0x90885753 _CFXNotificationPostNotification + 179
    22 com.apple.Foundation 0x94ce5680 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    23 com.apple.Foundation 0x94ceeed8 -[NSNotificationCenter postNotificationName:object:] + 56
    24 com.apple.AppKit 0x950fd277 -[NSApplication finishLaunching] + 515
    25 com.apple.AppKit 0x950fccd7 -[NSApplication run] + 83
    26 com.apple.AppKit 0x950ca1d8 NSApplicationMain + 574
    27 com.apple.Safari 0x00002c92 0x1000 + 7314
    Thread 1:
    0 libSystem.B.dylib 0x904491fa pread$UNIX2003 + 10
    1 com.apple.WebCore 0x9652005f sqlite3PagerAcquire + 3055
    2 com.apple.WebCore 0x9652c2ea checkTreePage + 234
    3 com.apple.WebCore 0x9652c662 checkTreePage + 1122
    4 com.apple.WebCore 0x9652cafa checkTreePage + 2298
    5 com.apple.WebCore 0x96588b46 sqlite3Step + 13014
    6 com.apple.WebCore 0x965926bf sqlite3_step + 79
    7 com.apple.WebCore 0x962c3d3b WebCore::IconDatabase::checkIntegrity() + 155
    8 com.apple.WebCore 0x95d72cb9 WebCore::IconDatabase::performOpenInitialization() + 73
    9 com.apple.WebCore 0x95d70beb WebCore::IconDatabase::iconDatabaseSyncThread() + 235
    10 libSystem.B.dylib 0x90438155 pthreadstart + 321
    11 libSystem.B.dylib 0x90438012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x90407286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9040ea7c mach_msg + 72
    2 com.apple.CoreFoundation 0x908a3e7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x908a4aa8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x910c5264 CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x90438155 pthreadstart + 321
    6 libSystem.B.dylib 0x90438012 thread_start + 34
    Thread 3:
    0 com.apple.CoreFoundation 0x908bb949 CFStringGetLength + 41
    1 com.apple.CoreFoundation 0x908c8352 CFStringCompare + 18
    2 com.apple.CoreText 0x945911d5 TCFSortedArray::InsertUnique(void const*) const + 111
    3 com.apple.CoreText 0x94590618 TDescriptorSourceImp::AddDescriptor(__CTFontDescriptor const*) const + 154
    4 com.apple.CoreText 0x9459e22e TDescriptorSourceImp::UpdateFontDescriptors() const + 140
    5 com.apple.CoreText 0x9459dfc0 TDescriptorSourceImp::SynchronizeDescriptors() const + 106
    6 com.apple.CoreText 0x945a42df TDescriptorSourceImp::CopyAvailableFamilyNames() const + 29
    7 com.apple.CoreText 0x945a42ae CTFontDescriptorCopyAvailableFontFamilyNames + 34
    8 com.apple.AppKit 0x95304f43 -[NSFontManager availableFontFamilies] + 127
    9 com.pozytron.AcidSearch 0x00594f2c -[PZFontView setUpFontMenu] + 90
    10 com.apple.Foundation 0x94ce8dfd -[NSThread main] + 45
    11 com.apple.Foundation 0x94ce89a4 _NSThread__main_ + 308
    12 libSystem.B.dylib 0x90438155 pthreadstart + 321
    13 libSystem.B.dylib 0x90438012 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xa016d0a0 ebx: 0x005978aa ecx: 0x9119d64c edx: 0x00000000
    edi: 0x00353350 esi: 0x00353600 ebp: 0xbfffec38 esp: 0xbfffec08
    ss: 0x0000001f efl: 0x00010286 eip: 0x9119c688 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000020
    Binary Images:
    0x1000 - 0x278ff2 com.apple.Safari 4.0.3 (5531.9) <bc4118cf33711aa425d1d0132bff092e> /Applications/Safari.app/Contents/MacOS/Safari
    0x2d8000 - 0x2e7ffc SyndicationUI ??? (???) <41a700c51ee0df16399861e1417fca54> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x54a000 - 0x54cfff +net.culater.SIMBL 0.8.2 (8) /Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL
    0x572000 - 0x5a6fe7 +com.pozytron.AcidSearch ??? (0.7b4) /Library/Application Support/SIMBL/Plugins/AcidSearch.bundle/Contents/MacOS/AcidSearch
    0x119c6000 - 0x11bcdfef com.apple.RawCamera.bundle 2.1.0 (474) <48a574d3b3269c8dbdc38d6f67879317> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x90008fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x90009000 - 0x90028ffa libJPEG.dylib ??? (???) <50b881dd5a5795d38405c9c88c2806fa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x90029000 - 0x90054fe7 libauto.dylib ??? (???) <4f3e58cb81da07a1662c1f647ce30225> /usr/lib/libauto.dylib
    0x90055000 - 0x900e2ff7 com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9034c000 - 0x90370fff libxslt.1.dylib ??? (???) <adfe90a3d564d824d5ae0fa6df8d6c3f> /usr/lib/libxslt.1.dylib
    0x90371000 - 0x90371ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90372000 - 0x90405ff3 com.apple.ApplicationServices.ATS 3.7 (???) <ee62ba9c0a4c8e23dd52f867c03ca5a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90406000 - 0x9056dff3 libSystem.B.dylib ??? (???) <ae47ca9b1686b065f8ac4d2de09cc432> /usr/lib/libSystem.B.dylib
    0x90663000 - 0x90663ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90664000 - 0x90669fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9066a000 - 0x906f1ff7 libsqlite3.0.dylib ??? (???) <aaaf72c093e13f34b96e2688b95bdb4a> /usr/lib/libsqlite3.0.dylib
    0x907bc000 - 0x907ccfff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <9a71429c74ed6ca43eb35e1f78471b2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x907cd000 - 0x907fffff com.apple.LDAPFramework 1.4.5 (110) <58ae8640d81410ce76afaf5e007d4e59> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90800000 - 0x90818ff7 com.apple.CoreVideo 1.6.0 (20.0) <587c9c8966070a7d50276db35e1c76aa> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90831000 - 0x90964fe7 com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90965000 - 0x9099bfef libtidy.A.dylib ??? (???) <736e56b453bb1324125d72cc3bfd3aed> /usr/lib/libtidy.A.dylib
    0x9099c000 - 0x9099cff8 com.apple.ApplicationServices 34 (34) <e9cd7c823062c4382d89e3c9997f4739> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9099d000 - 0x90a85ff3 com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90a86000 - 0x90b67ff7 libxml2.2.dylib ??? (???) <9a5d410de57c87f71e2d530a1859b897> /usr/lib/libxml2.2.dylib
    0x90b9b000 - 0x90b9bffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1bce4a22b6a5cc7055d0938ddad269b2> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90b9c000 - 0x90bdcfff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x90bdd000 - 0x90f7afef com.apple.QuartzCore 1.5.8 (1.5.8) <18113e06d296230d63a63b58baf35f55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x91006000 - 0x91024ff3 com.apple.DirectoryService.Framework 3.5.6 (3.5.6) <48d78074835db0d5fe5b632991c21b1b> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91025000 - 0x91097fff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x91098000 - 0x910c1fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x910c2000 - 0x91169fec com.apple.CFNetwork 438.14 (438.14) <5f9ee0430b5f6319f18d9b23e777e0d2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91187000 - 0x91267fff libobjc.A.dylib ??? (???) <3ca288b625a47bbcfe378158e4dc328f> /usr/lib/libobjc.A.dylib
    0x9126d000 - 0x9126ffff com.apple.securityhi 3.0 (30817) <020419ad33b8638b174e1a472728a894> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91270000 - 0x9127ffff libsasl2.2.dylib ??? (???) <5b0f9eaa4bde9c19c9288afaf7396067> /usr/lib/libsasl2.2.dylib
    0x91280000 - 0x91451ffb com.apple.security 5.0.5 (36371) <1f7f48b36bc90d114220cc81e4e4694f> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91452000 - 0x91462ffc com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91463000 - 0x9146fffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91470000 - 0x91477fe9 libgcc_s.1.dylib ??? (???) <28a7cbc3a5ca2982d124668306f422d9> /usr/lib/libgcc_s.1.dylib
    0x914ca000 - 0x91888fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91889000 - 0x91939fff edu.mit.Kerberos 6.0.13 (6.0.13) <e3baa3d7b3ca7fa92082958af0b36973> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91947000 - 0x91e18fbe libGLProgrammability.dylib ??? (???) <d5cb4e7997a873cd77523689e6749acd> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91e19000 - 0x92229fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92279000 - 0x9228effb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9228f000 - 0x92297fff com.apple.DiskArbitration 2.2.1 (2.2.1) <ba64dd6ada417b5e7be736957f380bca> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x92298000 - 0x922d2ffe com.apple.securityfoundation 3.0.2 (36131) <dd2a4d1a4f50b82923d7cfc5df10455d> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x922d3000 - 0x9240bfe7 com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9240c000 - 0x92554ff7 com.apple.ImageIO.framework 2.0.6 (2.0.6) <7f73ef328c8e8566f3f204b5a540a7f0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92555000 - 0x92594fef libTIFF.dylib ??? (???) <801873cbd85ba7bdfe7646fe97a54ca3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92595000 - 0x925e4fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x925e5000 - 0x9290bfe2 com.apple.QuickTime 7.6.4 (1327.73) <96515f6a2d628cd2105c7082295199b5> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9290c000 - 0x9293bfe3 com.apple.AE 402.3 (402.3) <dba512e47f68eea1dd0ab35f596edb34> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9388d000 - 0x938beffb com.apple.quartzfilters 1.5.0 (1.5.0) <01090d7204c55b32a6a11199fa0d2e2b> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x938bf000 - 0x938f9fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x938fa000 - 0x939b4fe3 com.apple.CoreServices.OSServices 228 (228) <bc83e97f6888673c33f86652677c09cb> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x939b5000 - 0x939c0fe7 libCSync.A.dylib ??? (???) <94faf3571527a99d0a8809024aa9e1be> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x939c1000 - 0x939c1ffe com.apple.quartzframework 1.5 (1.5) <49afd7e7e3b2cad89cfaf2ac8c67c8a4> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x939c2000 - 0x939c2ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x939c3000 - 0x939c3ff8 com.apple.Cocoa 6.5 (???) <e9318c93615b27231498bbe585b8da98> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x939c4000 - 0x93a3eff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <9ae833544b8249984c07544dbe6a97fa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93a4b000 - 0x93af2feb com.apple.QD 3.11.56 (???) <b66ab22356d5e0a15b35c11e57bba404> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93af3000 - 0x93b2afff com.apple.SystemConfiguration 1.9.2 (1.9.2) <41d5aeffefc6d19d471f51ae0b15024f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x93b2b000 - 0x93b2bffa com.apple.CoreServices 32 (32) <2760719f7a81e8c2bdfd15b0939abc29> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93b2c000 - 0x93bb6fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <a6edef2d49ffdee3b01010b7e6edac1f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x93bb7000 - 0x93c92fe7 com.apple.WebKit 5531 (5531.9) <36112647223b999a033bc2f740277948> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93c93000 - 0x93f9bfe7 com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93f9c000 - 0x93fb8ff3 libPng.dylib ??? (???) <271373dd41f56369a3dfca0ed2be579a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93fb9000 - 0x93fbbff5 libRadiance.dylib ??? (???) <aefd52482869bb5010672679d151167e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x93fbc000 - 0x94039feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9403a000 - 0x94063fff libcups.2.dylib ??? (???) <764c74a71785aa10f3cac2eae06f372b> /usr/lib/libcups.2.dylib
    0x94064000 - 0x94220ff3 com.apple.QuartzComposer 2.1 (106.13) <dc04566811ab9c5316d1a622f42da8ba> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x94233000 - 0x94237fff libGIF.dylib ??? (???) <3c7100e80b7f7ca8809cf9512c1a6004> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9423b000 - 0x94279fff libGLImage.dylib ??? (???) <2e570958595e0c9c3a289158223b39ee> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94412000 - 0x94478ffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x94479000 - 0x9448ffff com.apple.DictionaryServices 1.0.0 (1.0.0) <7e9ff586b5c9d02b09e2a5527d98524f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94496000 - 0x94496ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x94497000 - 0x944a5ffd libz.1.dylib ??? (???) <545ca09467025f77131cfac09d8b9375> /usr/lib/libz.1.dylib
    0x944a6000 - 0x944abfff com.apple.CommonPanels 1.2.4 (85) <3b64ef0de184d09c6f99a1a7e77e42be> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x944e1000 - 0x94523fef com.apple.NavigationServices 3.5.2 (163) <7f4f1766414a511bf5bc68920ac85a88> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x94524000 - 0x94533ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <a2f7a163a74c134f6f17d497423436fe> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94534000 - 0x9458dff7 libGLU.dylib ??? (???) <64d010e31d7596bd8f9edc6e027d1d0c> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9458e000 - 0x945e8ff7 com.apple.CoreText 2.0.4 (???) <c7a222be1b51a9954eae716adbd5626a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x945e9000 - 0x9473bff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9473c000 - 0x948bcfff com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94a21000 - 0x94a2afff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <6a6518b392d3d41ace3dcea69d6809d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94b0e000 - 0x94c14ff7 com.apple.PubSub 1.0.4 (65.11) <ef090a992adb71fb01ddfef90754ca49> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x94c15000 - 0x94c1ffeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <caa41909dcb5a18a94bc68cd13999bd5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94c20000 - 0x94cd7ff3 com.apple.QTKit 7.6.4 (1327.73) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94cd8000 - 0x94cdcfff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x94cdd000 - 0x94cddffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94cde000 - 0x94f5afe7 com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94fce000 - 0x94ffbfeb libvDSP.dylib ??? (???) <f39d424bd56a0e75d5c7a2280a25cd76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94ffc000 - 0x950c3ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x950c4000 - 0x958c2fef com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x958c3000 - 0x958e1fff libresolv.9.dylib ??? (???) <0e26b308654f33fc94a0c010a50751f9> /usr/lib/libresolv.9.dylib
    0x95955000 - 0x959e2ff7 com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x959e3000 - 0x95a2cfef com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95a2d000 - 0x95a45fff com.apple.openscripting 1.2.8 (???) <a888b18c8527f71629702ed8dce9c877> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x95a46000 - 0x95a90fe1 com.apple.securityinterface 3.0.3 (36953) <0d481914378ffb037dd26144af5a1aa2> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95a91000 - 0x95aaeff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x95aaf000 - 0x95be8ff7 libicucore.A.dylib ??? (???) <dd8aa51c356e79ef8cdfa341a0d69f5b> /usr/lib/libicucore.A.dylib
    0x95bf3000 - 0x95c50ffb libstdc++.6.dylib ??? (???) <6106b1f2b0b303b06ae476253dbb5f3f> /usr/lib/libstdc++.6.dylib
    0x95c51000 - 0x95cd0ff5 com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x95cd1000 - 0x95d64fff com.apple.ink.framework 101.3 (86) <dfa9debcd7537849d228021d1d9c0f63> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95d65000 - 0x95d6bfff com.apple.print.framework.Print 218.0.3 (220.2) <8c541d587e4068a5fe5a5ce8ee208516> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95d6c000 - 0x95d6dffc libffi.dylib ??? (???) <596e0dbf626b211741cecaa9698f271b> /usr/lib/libffi.dylib
    0x95d6e000 - 0x965fafff com.apple.WebCore 5531 (5531.9) <fdb731afe66ea9ae2f4580dead0b5b53> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x965fb000 - 0x966adffb libcrypto.0.9.7.dylib ??? (???) <8ac6abef4b3bb125c8bf84634421bcee> /usr/lib/libcrypto.0.9.7.dylib
    0x966ae000 - 0x966b5ffe libbsm.dylib ??? (???) <5582985a86ea36504cca31788bccf963> /usr/lib/libbsm.dylib
    0x966b6000 - 0x96707ff7 com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96708000 - 0x96715fe7 com.apple.opengl 1.5.10 (1.5.10) <e7d1198d869f45f09251f9697cbdd192> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96716000 - 0x96719fff com.apple.help 1.1 (36) <175489f8adf287b3ebd259362b0292c0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96727000 - 0x96729ffd com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x967ce000 - 0x96aa8ff3 com.apple.CoreServices.CarbonCore 786.11 (786.14) <d5cceb2fe9551d345d40dd1ecf409ec2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96ad2000 - 0x96c62fff com.apple.JavaScriptCore 5531 (5531.5) <3679fe16241dae6f730a39c16c04e30f> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x96c63000 - 0x96c6aff7 libCGATS.A.dylib ??? (???) <fb7677501dd491ea5520291045153069> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x96cb0000 - 0x97350fef com.apple.CoreGraphics 1.409.4 (???) <b9a8a94c430d3b6f9ed7e2e4f0aad02c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x97351000 - 0x973adff7 com.apple.htmlrendering 68 (1.1.3) <a9f65fa1c4668dc7c49af5bf7d5287ad> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x973ae000 - 0x9742bfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9742c000 - 0x974f7fef com.apple.ColorSync 4.5.3 (4.5.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x974f8000 - 0x974f8fff com.apple.Carbon 136 (136) <ec1d4184925e652dbe1b9200a5a552ec> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97536000 - 0x9755afeb libssl.0.9.7.dylib ??? (???) <1ffdb9ff23c05f6205233e3f2956f82e> /usr/lib/libssl.0.9.7.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Greetings,
    Your problem is caused by AcidSearch, which is incompatible with 10.5.8 (or, at least the version you're
    running isn't compatible). You need to remove it from this folder:
    /Library/Application Support/SIMBL/Plugins/
    Then try restarting Safari to see if the crashing continues. If not, then your problem is solved.

  • J2EE SERVER 0 not running after ADS Update

    Hi Experts,
    I have updated ADS patch 10 in our server, but ADS update terminated after that J2ee server not comming up. Please find the Log file.
    trc file: "D:\usr\sap\MID\DVEBMGS01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID17582250
    pid         : 2588
    system name : MID
    system nr.  : 01
    started at  : Tue Dec 22 13:58:33 2009
    arguments       :
           arg[00] : D:\usr\sap\MID\DVEBMGS01\exe\jlaunch.exe
           arg[01] : pf=D:\usr\sap\MID\SYS\profile\MID_DVEBMGS01_mvglqas
           arg[02] : -DSAPINFO=MID_01_server
           arg[03] : pf=D:\usr\sap\MID\SYS\profile\MID_DVEBMGS01_mvglqas
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=1201
           arg[06] : -DSAPSYSTEM=01
           arg[07] : -DSAPSYSTEMNAME=MID
           arg[08] : -DSAPMYNAME=mvglqas_MID_01
           arg[09] : -DSAPPROFILE=D:\usr\sap\MID\SYS\profile\MID_DVEBMGS01_mvglqas
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 2540] Tue Dec 22 13:58:33 2009
    [Thr 2540] *** WARNING => INFO: Unknown property [instance.box.number=MIDDVEBMGS01mvglqas] [jstartxx.c   841]
    [Thr 2540] *** WARNING => INFO: Unknown property [instance.en.host=mvglqas] [jstartxx.c   841]
    [Thr 2540] *** WARNING => INFO: Unknown property [instance.en.port=3202] [jstartxx.c   841]
    [Thr 2540] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\instance.properties]
    -> ms host    : mvglqas
    -> ms port    : 3902
    -> OS libs    : D:\usr\sap\MID\DVEBMGS01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : mvglqas
    -> ms port    : 3902
    -> os libs    : D:\usr\sap\MID\DVEBMGS01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID17582200 : D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID17582250 : D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID17582200           : D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] ID17582250           : D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\instance.properties
    [Thr 2540] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 2540] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 2560] JLaunchRequestFunc: Thread 2560 started as listener thread for np messages.
    [Thr 704] WaitSyncSemThread: Thread 704 started as semaphore monitor thread.
    [Thr 2540] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 2540] CPIC (version=700.2006.09.13)
    [Thr 2540] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13-x64
    [Thr 2540] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\MID\DVEBMGS01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID17582250]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_13-x64
    -> java parameters    : -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine. services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : D:\usr\sap\MID\DVEBMGS01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\MID\DVEBMGS01\exe\jstartup.jar;D:\usr\sap\MID\DVEBMGS01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 2540] JLaunchISetDebugMode: set debug mode [no]
    [Thr 5060] JLaunchIStartFunc: Thread 5060 started as Java VM thread.
    [Thr 5060] *** WARNING => Using non-standard VM option 'services.ts.jts.ots.PortableInterceptor.JTSInitializer' [jhvmxx.c     1007]
    [Thr 5060] [JHVM_PrepareVMOptions] use java parameters set by profile parameter
         Java Parameters: -Xss2m
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djco.jarm=1
    -> arg[  4]: -XX:MaxPermSize=256M
    -> arg[  5]: -XX:PermSize=256M
    -> arg[  6]: -XX:NewSize=171M
    -> arg[  7]: -XX:MaxNewSize=171M
    -> arg[  8]: -XX:+DisableExplicitGC
    -> arg[  9]: -verbose:gc
    -> arg[ 10]: -Xloggc:GC.log
    -> arg[ 11]: -XX:+PrintGCDetails
    -> arg[ 12]: -XX:+PrintGCTimeStamps
    -> arg[ 13]: -Djava.awt.headless=true
    -> arg[ 14]: -Dsun.io.useCanonCaches=false
    -> arg[ 15]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 16]: -XX:SurvivorRatio=2
    -> arg[ 17]: -XX:TargetSurvivorRatio=90
    -> arg[ 18]: -Djava.security.policy=./java.policy
    -> arg[ 19]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 20]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 21]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 22]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.
    -> arg[ 24]: services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 25]: -Dsys.global.dir=D:\usr\sap\MID\SYS\global
    -> arg[ 26]: -Dapplication.home=D:\usr\sap\MID\DVEBMGS01\exe
    -> arg[ 27]: -Djava.class.path=D:\usr\sap\MID\DVEBMGS01\exe\jstartup.jar;D:\usr\sap\MID\DVEBMGS01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 28]: -Djava.library.path=C:\j2sdk1.4.2_13-x64\jre\bin\server;C:\j2sdk1.4.2_13-x64\jre\bin;C:\j2sdk1.4.2_13-x64\bin;D:\usr\sap\MID\DVEBMGS01\j2ee\os_libs;C:\oracle\MVS\102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies\;D:\usr\sap\MID\SYS\exe\uc\NTAMD64\sappfpar.exe;D:\usr\sap\MID\SYS\exe\uc\NTAMD64
    -> arg[ 29]: -Dmemory.manager=1024M
    -> arg[ 30]: -Xmx1024M
    -> arg[ 31]: -Xms1024M
    -> arg[ 32]: -DLoadBalanceRestricted=no
    -> arg[ 33]: -Djstartup.mode=JCONTROL
    -> arg[ 34]: -Djstartup.ownProcessId=2588
    -> arg[ 35]: -Djstartup.ownHardwareId=T1140933696
    -> arg[ 36]: -Djstartup.whoami=server
    -> arg[ 37]: -Djstartup.debuggable=no
    -> arg[ 38]: -Xss2m
    -> arg[ 39]: -DSAPINFO=MID_01_server
    -> arg[ 40]: -DSAPSTART=1
    -> arg[ 41]: -DCONNECT_PORT=1201
    -> arg[ 42]: -DSAPSYSTEM=01
    -> arg[ 43]: -DSAPSYSTEMNAME=MID
    -> arg[ 44]: -DSAPMYNAME=mvglqas_MID_01
    -> arg[ 45]: -DSAPPROFILE=D:\usr\sap\MID\SYS\profile\MID_DVEBMGS01_mvglqas
    -> arg[ 46]: -DFRFC_FALLBACK=ON
    -> arg[ 47]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 48]: -DSAPSTARTUP=1
    -> arg[ 49]: -DSAPSYSTEM=01
    -> arg[ 50]: -DSAPSYSTEMNAME=MID
    -> arg[ 51]: -DSAPMYNAME=mvglqas_MID_01
    -> arg[ 52]: -DSAPDBHOST=mvglqas
    -> arg[ 53]: -Dj2ee.dbhost=mvglqas
    Unrecognized option: services.ts.jts.ots.PortableInterceptor.JTSInitializer
    [Thr 5060] *** ERROR => JHVM_LoadJavaVM: Cannot create Java VM (rc=-1) [jhvmxx.c     542]
    [Thr 5060] *** ERROR => Cannot load Java VM (server) (rc=-1) [jlnchxxi.c   752]
    [Thr 5060] **********************************************************************
    ERROR => Java VM initialization failed.
    Please see SAP Note 943602 , section 'Java VM initialization issues'
    for additional information and trouble shooting.
    [Thr 5060] JLaunchCloseProgram: good bye (exitcode = -1)
    Thanks  in Advance
    Jose H

    Hi Markus,
    I have changed the heap size but the status is same.
    when i am trying to open the Visula Admin
    "Default" its shows
    "Unable to lookup connection default
    http://<host>:8101/msgserver/text/logon return empty list of connection parameter
    I ihave created the new connection with port 50104 user name J2EE_ADMIN and give the password
    I got the other error End of stream reached unexpectly during input from socket [addr=/local ip, port=50104,localport=2485]
    find the trace file
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[./log/defaultTrace.trc]/>
    <!PATTERN[defaultTrace.trc]/>
    <!FORMATTER[com.sap.tc.logging.ListFormatter]/>
    <!ENCODING[Cp1252]/>
    <!FILESET[0, 20, 10485760]/>
    <!PREVIOUSFILE[defaultTrace.19.trc]/>
    <!NEXTFILE[defaultTrace.1.trc]/>
    <!LOGHEADER[END]/>
    #1.5#001AA00F0673000000000015000000FC000470C650D48281#1249896968781#System.err##System.err#######Thread[Thread-1,5,main]##0#0#Error##Plain###com.sap.engine.frame.core.configuration.ConfigurationLockedException: Cannot lock Configuration; it is already locked.
         at com.sap.engine.core.configuration.impl.ServerEnvironment.addLock(ServerEnvironment.java:316)
         at com.sap.engine.core.configuration.impl.ServerEnvironment.addLock(ServerEnvironment.java:340)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.openConfiguration(ConfigurationCache.java:756)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:734)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:693)
         at com.sap.engine.core.cache.impl.spi.storage.DBStorage.<init>(DBStorage.java:64)
         at com.sap.engine.core.cache.impl.CacheManagerImpl.init(CacheManagerImpl.java:223)
         at com.sap.engine.core.Framework.loadSingleManager(Framework.java:560)
         at com.sap.engine.core.Framework.loadManagers(Framework.java:254)
         at com.sap.engine.core.Framework.start(Framework.java:188)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.boot.FrameThread.run(FrameThread.java:61)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: com.sap.engine.frame.core.locking.LockException: Cannot lock [2009081015060876500000mvglqas.....................17582250, !J2EE_CONFIGURATION_MANAGER, 94d735ee/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@, X]; it is in use by another owner. The lock collision occurred with user <internal>.
         at com.sap.engine.core.locking.impl3.LockingManagerImpl.lockInternal(LockingManagerImpl.java:257)
         at com.sap.engine.core.locking.AbstractLockingManagerImpl.lock(AbstractLockingManagerImpl.java:421)
         at com.sap.engine.core.locking.AbstractLockingManagerImpl.lock(AbstractLockingManagerImpl.java:441)
         at com.sap.engine.core.locking.ServerInternalLockingImpl.lock(ServerInternalLockingImpl.java:42)
         at com.sap.engine.core.configuration.impl.ServerEnvironment.addLock(ServerEnvironment.java:312)
         ... 15 more
    #1.5#001AA00F0673002200000000000000FC000470C6520CD509#1249896989250#com.sap.caf.um.metadata.imp.MetaDataTools##com.sap.caf.um.metadata.imp.MetaDataTools.MetaDataTools()#######SAPEngine_System_Thread[impl:5]_46##0#0#Info#1#/System/Server#Plain###sap.com caf/um/metadata/imp MAIN_APL70VAL_C 935484#
    #1.5#001AA00F0673002B00000000000000FC000470C652194CAA#1249896990078#com.sap.caf.um.relgroups.imp.persistence.DataSource##com.sap.caf.um.relgroups.imp.persistence.DataSource.DataSource()#######SAPEngine_System_Thread[impl:5]_20##0#0#Info#1#/System/Server#Plain###sap.com caf/um/relgroups/imp MAIN_APL70VAL_C 935567#
    #1.5#001AA00F0673002C00000001000000FC000470C652196EC5#1249896990078#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.RFCRuntimeInterfaceImpl.newProperties(int prcs, int conn)#######SAPEngine_System_Thread[impl:5]_36##0#0#Error#1#/System/Server#Java###enter  newProperties()##
    #1.5#001AA00F0673002B00000002000000FC000470C6522C2655#1249896991328#com.sap.caf.um.relgroups.imp.principals.RelGroupFactory##com.sap.caf.um.relgroups.imp.principals.RelGroupFactory.RelGroupFactory()#######SAPEngine_System_Thread[impl:5]_20##0#0#Info#1#/System/Server#Plain###sap.com caf/um/relgroups/imp MAIN_APL70VAL_C 935567#
    #1.5#001AA00F0673003800000000000000FC000470C6522E45DE#1249896991468#com.sap.engine.services.iiop.server##com.sap.engine.services.iiop.server.PICurrentImpl#######SAPEngine_System_Thread[impl:5]_65##0#0#Error##Plain###
    java.lang.NullPointerException
         at com.sap.engine.services.iiop.internal.interceptors.PICurrentImpl.getThreadSlotTable(PICurrentImpl.java:85)
         at com.sap.engine.services.iiop.internal.giop.ClientRequest.<init>(ClientRequest.java:66)
         at com.sap.engine.services.iiop.server.portable.Delegate_1_2$ClientRequest_1_2.<init>(Delegate_1_2.java:41)
         at com.sap.engine.services.iiop.server.portable.Delegate_1_2.createRequestLocal(Delegate_1_2.java:32)
         at com.sap.engine.services.iiop.server.portable.Delegate.createRequest(Delegate.java:370)
         at com.sap.engine.services.iiop.server.portable.Delegate.request(Delegate.java:170)
         at org.omg.CORBA.portable.ObjectImpl._request(ObjectImpl.java:431)
         at com.adobe.service._FontManagerStub.getAdobeServerFontDirectory(_FontManagerStub.java:18)
         at com.adobe.document.XMLFormService.getFontDirectories(Unknown Source)
         at com.adobe.document.XMLFormService.onStartService(Unknown Source)
         at com.adobe.service.Service.start(Service.java:387)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    Looking for your urgetnt response
    Thanks & Regards
    Jose H

Maybe you are looking for

  • I am having problems with recent update of adobe digital editions

    I tried to download an open book from library and when I tried to transfer to my Kobo I got message "CE-COPY-NOTALLOWED"no permission to copy book.  When I tried to return it I got Message Ë-BAD-LOAN-ID"   I have downloaded other books with no proble

  • Why is my eyedropper missing from my InDesign CS6 toolbar?

    I have searched and searched, and can't find it anywhere.  If has disappeared from my Toolbar, is there some way to restore it?  Another place I can find it?  I'm operating Yosemite on a new (within the past year) iMac. Thank you! --BILL

  • Using iWeb to build a Blog for an existing non-MobileMe Site

    I have a large, existing website that is hosted on One World Hosting (OWH). I have liked creating blogs using iWeb. 1. Is there a way for me to create a blog using iWeb and then upload it and embed it into my OWH website? 2. That website was largely

  • Export report in text format

    Hi. I am still downloading the trial ver of cr 2008, but I would to know urgently that if it is possible to export report in utf-8 text format given the data is retrieved from ms/sql table in ucs-2 format Many Tks

  • Q10 crashing my computer

    Hello.  I recently got a Q10.  I downloaded BB Link to transfer some of my data ... as you know it won't transfer all of it.  I did this and all seemed to go as well as expected.  a Few days later when I plugged my phone back into my computer, it cra