Configtool -- Secure Store Lib not properly set

when i open Config tool it will give pop like connect to database when i click yes it is giving error and when i click no  and check in sec store lib the path is like this \hostnamescssapmn/SIDSYSglobalsecuritylib. Every  time when i open the configtool i am phasing this error, every time i have to change the path of scure store lib.
ragards,
jagadish

Hi,
Please check config.properties at the location j2ee\configtool.
This has the path maintained for the secure store lib file along with other parameters.
Usually the contents are :
#Generated by Config Tool
rdbms.maximum_connections=5
system.name=
secstorefs.keyfile=
secstorefs.secfile=
secstorefs.lib=
rdbms.driverLocation=
rdbms.connection=
rdbms.initial_connections=1
Make sure above parameters are correctly configured. The error should not occur then.
Regards,
Snehal

Similar Messages

  • Secure store lib dir does not exist - unable to open config tool

    Hi we are using NW 7.0 with windows 2005 (AS java).
    when i click on configtool in central instance it says
    Error occured while working with configuration( scanning)
    Msg: Error occured : secure store lib Dir does not exist :
    server\sapmnt\SID\SYS\global\security\lib\tools
    please suggest
    Thanks
    KK

    HI ,
    Was config tool working earlier?
    Please check if direcories sapmnt & saploc exist are you are able to access them.Check permission on it.
    May be your windows server got patched and some security policy got changed.Worth a revisiting and checking.
    Other thing you can try is take a backup of bootstrap.properties file and modify the location of library from 
    server\sapmnt\J2EE\sys\global\security\lib\tools to \usr\sap\J2EE\sys\global\security\lib in the bootstrap file.
    Regards,
    Ashutosh

  • Secure store Lib Dir doesn't exits

    Hi,
    I have installed local java engine.but its not gettting started.
    when i try to open configtool,its asking do you want to use default DB settings?
    when i say yes,its trowing error.
    Error occured while working with configuration
    msg: Secure store lib dir doesnot exist. gives the path.  //.......sys/global/security/lib/tools
    could you please tell me how to resolve it.

    Hello,
    is the directory //.......sys/global/security/lib/tools actually created
    on the unix filesystem and are the required files there ?
    I can remember one case, where an unplanned shutdown of the LPAR
    caused some files from the filesystem to "disappear".
    The files were found in the lost+found directory.
    You can search for the files using command find / -type f -name <filename>
    When you found out you can copy it across using the cp command.
    Hope this was useful.
    Kind regards,
    Andreas

  • Secure Store lib Dir does not exist

    My system: Enterprise Portal 6.0 in Windows 2003 R2 in SCS-instance in MSCS Cluster
    Having moved all ressources to node 2 I can no longer start my appl.server on node 1, since it searches for the Secure Store on P:, which is only available on node 2.
    I would like to update the path of the Secure Store to an UNC-path. Problem is that the only reference to P:\ I can find (and therefore makes sense to change) is in <DIR_INSTANCE>\j2ee\cluster\<node>\cfg\kernel\ConfigurationManager.properties, where node is dispatcher or server[012] (4 locations). Other relevant files point to the UNC-path already.
    I can see all files in ..\cfg\kernel is updated at the time of my last attempt to start the appl.server, so I suppose the P:\ reference is stored elsewhere...but where?
    BR Lars

    No, haven't checked environment variables. In my opinion none is needed. Please elaborate on which variables you're referring to.

  • Configtool Secure Store JDBC password - Error while connecting to DB

    Hi All
    I was following the note 701654 which asked to update the config tool secure store pssword. I changed the JDBC password too instead admin password alone. Now the problem is the config tool is not able to connect to the database and this lead to the jcontrol.exe to be stopped. We tried to give back the DB password we remembered unfortunately none of them worked. Please guide me to get around this.
    Should I need to change the DB password if so please let me know the procedure and the places I need to do the change.
    Thanks, Raj

    The problem was fixed. I changed the DB password directly in the SQL server and updated it in the secure store and it worked.
    Note 997510 gave a good idea on the error and the solutions.
    Thanks, Raj

  • EP 7.1 with CE 7.1 not properly set up?

    Hi,
    We've installed a CE 7.1 with EP 7.1.
    Now I want to create systems (connections to ERP, PI), SSO and JCo connections on the portal.
    Problem is that the KeyStoreManager menue/ link (Systemadministration/Systemconfiguration/KeyStoreManager) is missing.
    Furthermore the Content Administration/ Web Dynpro: page/ iview is not displayed, I get a runtime error instead. I wanted to create the JCo's there.
    The connection tests fail for all systems.
    I've done this work many times before on EP 6 and never had these problems.
    It looks like the portal itself has not been set up properly or many objects like iviews are missing.
    I've been looking for the iView Administration.keyStoreManager for instance and it seems not to exist within our portal.
    Or have all these things changed in EP 7.1 and I just have to learn from scratch?
    Thanks for your advice!
    Karsten

    Hi,
           You can access the keystorage using the below link:
    http://<hostname>:<port>/nwa/key-storage
    The webdynpro administration page should be accessible the regular way using the URL http://<hostname>:<port>/webdynpro/welcome
    If you are not able to display it, it could be an authorization issue. Make sure the j2ee_admin user has all the requried roles assigned.
    Thanks,
    Sai.

  • Sharepoint 2013 Secure Store will not start. Stuck on "starting"

    Since applying the December 2014 CU I have been unable to start my Secure Store Service.  When I try to start the service in Central Admin it just goes to a "starting" state and just stays like that forever.  If I try to access the Service
    Application I get this message: Cannot complete this action as the Secure Store Shared Service is not responding. Please contact your administrator
    I am not really seeing any errors that I can run down, any ideas what I can do

    Hi,
    For troubleshooting your issue, you can run the PowerShell Script as below:
    add-pssnapin MIcrosoft.SharePoint.Powershell
    Function MatchComputerName($computersList, $computerName)
    If ($computersList -like "*$computerName*") { Return $true; }
    foreach ($v in $computersList) {
    If ($v.Contains("*") -or $v.Contains("#")) {
    # wildcard processing
    foreach ($item in -split $v) {
    $item = $item -replace "#", "[\d]"
    $item = $item -replace "\*", "[\S]*"
    if ($computerName -match $item) {return $true;}
    $secureStoreServiceInstances = Get-SPServiceInstance | ? {$_.GetType().Equals([Microsoft.Office.SecureStoreService.Server.SecureStoreServiceInstance])}
    $secureStoreServiceInstance = $secureStoreServiceInstances | ? {MatchComputerName $_.Server.Address "Server Name"}
    Write-HOst $secureStoreServiceInstance.Status
    $secureStoreServiceInstance.Provision()
    Reference:
    http://georgetowndctechie.blogspot.com/2013/12/fix-secure-store-service-stuck-on.html
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Autodetection not properly setting up wacom tablet

    I have a tablet PC, and recently upgraded to xserver 1.6.  X would freeze on startup roughly 50% of the time until (based on this thread) I removed xorg.conf (except for DontZap).  Now X doesn't freeze on start, but the tablet is only being partially detected.
    I can use it to move the cursor fine.  The eraser does not work.
    'xsetwacom list dev' does not detect any devices.  This means I can't get or set any properties, recalibrate, rotate, or any other goodies.
    output of 'xinput list' seems to indicate that it's being set up as some kind of generic plug-and-play device.
    "Virtual core pointer" id=0 [XPointer]
    Num_buttons is 32
    Num_axes is 2
    Mode is Relative
    Motion_buffer is 256
    Axis 0 :
    Min_value is -1
    Max_value is -1
    Resolution is 0
    Axis 1 :
    Min_value is -1
    Max_value is -1
    Resolution is 0
    "Virtual core keyboard" id=1 [XKeyboard]
    Num_keys is 248
    Min_keycode is 8
    Max_keycode is 255
    "TPPS/2 IBM TrackPoint" id=2 [XExtensionPointer]
    Num_buttons is 32
    Num_axes is 2
    Mode is Relative
    Motion_buffer is 256
    Axis 0 :
    Min_value is -1
    Max_value is -1
    Resolution is 1
    Axis 1 :
    Min_value is -1
    Max_value is -1
    Resolution is 1
    "ThinkPad Extra Buttons" id=3 [XExtensionKeyboard]
    Num_keys is 248
    Min_keycode is 8
    Max_keycode is 255
    "PnP Device (WACf008)" id=4 [XExtensionKeyboard]
    Num_keys is 248
    Min_keycode is 8
    Max_keycode is 255
    Num_buttons is 32
    Num_axes is 6
    Mode is Absolute
    Motion_buffer is 256
    Axis 0 :
    Min_value is 0
    Max_value is 24576
    Resolution is 2540
    Axis 1 :
    Min_value is 0
    Max_value is 18432
    Resolution is 2540
    Axis 2 :
    Min_value is 0
    Max_value is 255
    Resolution is 1
    Axis 3 :
    Min_value is -64
    Max_value is 63
    Resolution is 1
    Axis 4 :
    Min_value is -64
    Max_value is 63
    Resolution is 1
    Axis 5 :
    Min_value is 0
    Max_value is 1023
    Resolution is 1
    "AT Translated Set 2 keyboard" id=5 [XExtensionKeyboard]
    Num_keys is 248
    Min_keycode is 8
    Max_keycode is 255
    "Macintosh mouse button emulation" id=6 [XExtensionPointer]
    Num_buttons is 32
    Num_axes is 2
    Mode is Relative
    Motion_buffer is 256
    Axis 0 :
    Min_value is -1
    Max_value is -1
    Resolution is 1
    Axis 1 :
    Min_value is -1
    Max_value is -1
    Resolution is 1
    "Video Bus" id=7 [XExtensionKeyboard]
    Num_keys is 248
    Min_keycode is 8
    Max_keycode is 255
    Here's Xorg.0.log.  This used to have separate sections for Stylus/Eraser/Cursor all being set up.
    X.Org X Server 1.6.1
    Release Date: 2009-4-14
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.29-ARCH i686
    Current Operating System: Linux malachite 2.6.29-ARCH #1 SMP PREEMPT Fri Apr 17 12:46:01 UTC 2009 i686
    Build Date: 15 April 2009 11:09:10AM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Thu Apr 23 16:07:36 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) No Layout section. Using the first Screen section.
    (==) No screen section available. Using defaults.
    (**) |-->Screen "Default Screen Section" (0)
    (**) | |-->Monitor "<default monitor>"
    (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    (**) Option "DontZap" "no"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (II) Loader magic: 0x1a40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (--) using VT number 7
    (--) PCI:*(0@0:2:0) Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller rev 12, Mem @ 0xf8100000/1048576, 0xe0000000/268435456, I/O @ 0x00001800/8
    (--) PCI: (0@0:2:1) Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller rev 12, Mem @ 0xf8200000/1048576
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (==) Matched intel for the autoconfigured driver
    (==) Assigned the driver to the xf86ConfigLayout
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.6.3
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ,
    965GM, 965GME/GLE, G33, Q35, Q33,
    Mobile Intel® GM45 Express Chipset,
    Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41
    (II) Primary Device is: PCI 00@00:02:0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 0.1.0
    ABI class: X.Org Video Driver, version 5.0
    (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    (==) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (II) intel(0): Integrated Graphics Chipset: Intel(R) 965GM
    (--) intel(0): Chipset: "965GM"
    (--) intel(0): Linear framebuffer at 0xE0000000
    (--) intel(0): IO registers at addr 0xF8100000
    (WW) intel(0): libpciaccess reported 0 rom size, guessing 64kB
    (==) intel(0): Using EXA for acceleration
    (II) intel(0): 2 display pipes available.
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) intel(0): Output VGA has no monitor section
    (II) intel(0): Output LVDS has no monitor section
    (II) intel(0): I2C bus "LVDSDDC_C" initialized.
    (II) intel(0): Attempting to determine panel fixed mode.
    (II) intel(0): I2C device "LVDSDDC_C:E-EDID segment register" registered at address 0x60.
    (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
    (II) intel(0): EDID vendor "LEN", prod id 16386
    (II) intel(0): found backlight control method /sys/class/backlight/acpi_video0
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" initialized.
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" registered at address 0x72.
    (II) intel(0): No SDVO device found on SDVOC
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" removed.
    (II) intel(0): Resizable framebuffer: not available (1 3)
    (II) intel(0): EDID vendor "LEN", prod id 16386
    (II) intel(0): Output VGA disconnected
    (II) intel(0): Output LVDS connected
    (II) intel(0): Using exact sizes for initial modes
    (II) intel(0): Output LVDS using initial mode 1024x768
    (II) intel(0): detected 512 kB GTT.
    (II) intel(0): detected 7676 kB stolen memory.
    (==) intel(0): video overlay key set to 0x101fe
    (==) intel(0): Will not try to enable page flipping
    (==) intel(0): Triple buffering disabled
    (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
    (==) intel(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "exa"
    (II) LoadModule: "exa"
    (II) Loading /usr/lib/xorg/modules//libexa.so
    (II) Module exa: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 2.4.0
    ABI class: X.Org Video Driver, version 5.0
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) intel(0): Comparing regs from server start up to After PreInit
    (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd000000a
    (WW) intel(0): PP_STATUS before: on, ready, sequencing idle
    (WW) intel(0): PP_STATUS after: on, ready, sequencing on
    (WW) intel(0): Register 0x71024 (PIPEBSTAT) changed from 0x00000206 to 0x80000246
    (WW) intel(0): PIPEBSTAT before: status: VSYNC_INT_STATUS SVBLANK_INT_STATUS VBLANK_INT_STATUS
    (WW) intel(0): PIPEBSTAT after: status: FIFO_UNDERRUN VSYNC_INT_STATUS LBLC_EVENT_STATUS SVBLANK_INT_STATUS VBLANK_INT_STATUS
    (==) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) intel(0): Kernel reported 481024 total, 1 used
    (II) intel(0): I830CheckAvailableMemory: 1924092 kB available
    (WW) intel(0): DRI2 requires UXA
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) [drm] DRM interface version 1.3
    (II) [drm] DRM open master succeeded.
    (II) intel(0): [drm] Using the DRM lock SAREA also for drawables.
    (II) intel(0): [drm] framebuffer mapped by ddx driver
    (II) intel(0): [drm] added 1 reserved context for kernel
    (II) intel(0): X context handle = 0x1
    (II) intel(0): [drm] installed DRM signal handler
    (**) intel(0): Framebuffer compression disabled
    (**) intel(0): Tiling enabled
    (==) intel(0): VideoRam: 262144 KB
    (II) intel(0): Attempting memory allocation with tiled buffers.
    (II) intel(0): Tiled allocation successful.
    (II) intel(0): [drm] Registers = 0xf8100000
    (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432
    (II) intel(0): [dri] visual configs initialized
    (II) intel(0): Page Flipping disabled
    (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (II) EXA(0): Offscreen pixmap area of 12582912 bytes
    (II) EXA(0): Driver registered support for the following operations:
    (II) Solid
    (II) Copy
    (II) Composite (RENDER acceleration)
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (II) intel(0): [DRI] installation complete
    (II) intel(0): xf86BindGARTMemory: bind key 0 at 0x0d400000 (pgoffset 54272)
    (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x0e000000 (pgoffset 57344)
    (II) intel(0): Fixed memory allocation layout:
    (II) intel(0): 0x00000000-0x00000fff: power context (4 kB)
    (II) intel(0): 0x0077f000: end of stolen memory
    (II) intel(0): 0x0077f000-0x0d3fffff: DRI memory manager (209412 kB)
    (II) intel(0): 0x0d400000-0x0dffffff: exa offscreen (12288 kB)
    (II) intel(0): 0x0e000000-0x0fffffff: classic textures (32768 kB)
    (II) intel(0): 0x10000000: end of aperture
    (II) intel(0): BO memory allocation layout:
    (II) intel(0): 0x0077f000: start of memory manager
    (II) intel(0): 0x0079f000-0x00b9efff: depth buffer (4096 kB) Y tiled
    (II) intel(0): 0x00b9f000-0x00f9efff: back buffer (4096 kB) X tiled
    (II) intel(0): 0x00f9f000-0x0139efff: front buffer (4096 kB) X tiled
    (II) intel(0): 0x0139f000-0x0139ffff: overlay registers (4 kB)
    (II) intel(0): 0x013a0000-0x013a9fff: HW cursors (40 kB)
    (II) intel(0): 0x0d400000: end of memory manager
    (WW) intel(0): ESR is 0x00000001
    (WW) intel(0): Existing errors found in hardware state.
    (II) intel(0): using SSC reference clock of 100 MHz
    (II) intel(0): Selecting standard 18 bit TMDS pixel format.
    (II) intel(0): Output configuration:
    (II) intel(0): Pipe A is off
    (II) intel(0): Display plane A is now disabled and connected to pipe A.
    (II) intel(0): Pipe B is on
    (II) intel(0): Display plane B is now enabled and connected to pipe B.
    (II) intel(0): Output VGA is connected to pipe none
    (II) intel(0): Output LVDS is connected to pipe B
    (II) intel(0): [drm] mapped front buffer at 0xe0f9f000, handle = 0xe0f9f000
    (II) intel(0): [drm] mapped back buffer at 0xe0b9f000, handle = 0xe0b9f000
    (II) intel(0): [drm] mapped depth buffer at 0xe079f000, handle = 0xe079f000
    (II) intel(0): [drm] mapped classic textures at 0xee000000, handle = 0xee000000
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (II) intel(0): DPMS enabled
    (==) intel(0): Intel XvMC decoder disabled
    (II) intel(0): Set up textured video
    (II) intel(0): Set up overlay video
    (II) intel(0): direct rendering: XF86DRI Enabled
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: Screen 0 is not DRI2 capable
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 12, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 12, (OK)
    drmOpenByBusid: drmOpenMinor returns 12
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) AIGLX: enabled GLX_SGI_make_current_read
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: enabled GLX_texture_from_pixmap with driver support
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i965_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    (II) intel(0): Setting screen physical size to 245 x 184
    (II) config/hal: Adding input device TPPS/2 IBM TrackPoint
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.2.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) TPPS/2 IBM TrackPoint: always reports core events
    (**) TPPS/2 IBM TrackPoint: Device: "/dev/input/event8"
    (II) TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    (II) TPPS/2 IBM TrackPoint: Found x and y relative axes
    (II) TPPS/2 IBM TrackPoint: Configuring as mouse
    (**) Option "Emulate3Buttons" "true"
    (II) TPPS/2 IBM TrackPoint: Forcing middle mouse button emulation on.
    (**) Option "EmulateWheel" "true"
    (**) Option "EmulateWheelButton" "2"
    (**) TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    (**) TPPS/2 IBM TrackPoint: EmulateWheelButton: 2, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE)
    (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    (**) TPPS/2 IBM TrackPoint: (accel) filter chain progression: 2.00
    (**) TPPS/2 IBM TrackPoint: (accel) filter stage 0: 20.00 ms
    (**) TPPS/2 IBM TrackPoint: (accel) set acceleration profile 0
    (II) config/hal: Adding input device ThinkPad Extra Buttons
    (**) ThinkPad Extra Buttons: always reports core events
    (**) ThinkPad Extra Buttons: Device: "/dev/input/event7"
    (II) ThinkPad Extra Buttons: Found keys
    (II) ThinkPad Extra Buttons: Configuring as keyboard
    (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device PnP Device (WACf008)
    (II) LoadModule: "wacom"
    (II) Loading /usr/lib/xorg/modules/input//wacom_drv.so
    (II) Module wacom: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (II) Wacom driver level: 47-0.8.3-2 $
    (**) PnP Device (WACf008): always reports core events
    (**) PnP Device (WACf008) device is /dev/tts/0
    (**) PnP Device (WACf008) is in absolute mode
    (**) PnP Device (WACf008): forcing TabletPC ISD V4 protocol
    (**) WACOM: suppress value is 2
    (**) /dev/tts/0: Tablet PC buttons are on
    (**) Option "BaudRate" "9600"
    (**) PnP Device (WACf008): serial speed 9600
    (II) XINPUT: Adding extended input device "PnP Device (WACf008)" (type: Wacom Stylus)
    (**) Option "Device" "/dev/tts/0"
    (**) Option "StopBits" "1"
    (**) Option "DataBits" "8"
    (**) Option "Parity" "None"
    (**) Option "Vmin" "1"
    (**) Option "Vtime" "10"
    (**) Option "FlowControl" "Xoff"
    usbDetect: can not ioctl version
    Wacom ISDV4 control data (0) error in % query
    (==) Wacom using pressure threshold of 15 for button 1
    (==) Wacom General ISDV4 tablet speed=9600 (38400) maxX=24576 maxY=18432 maxZ=255 resX=2540 resY=2540 tilt=disabled
    (==) Wacom device "PnP Device (WACf008)" top X=0 top Y=0 bottom X=24576 bottom Y=18432 resol X=2540 resol Y=2540
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event5"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    Last but not least, the output of lshal relevant to the wacom device, which seems to indicate that it knows something is there.  there are no event devices associated like there are with kbd/mouse/etc.
    udi = '/org/freedesktop/Hal/devices/pnp_WACf008'
    info.linux.driver = 'serial' (string)
    info.parent = '/org/freedesktop/Hal/devices/computer' (string)
    info.product = 'PnP Device (WACf008)' (string)
    info.subsystem = 'pnp' (string)
    info.udi = '/org/freedesktop/Hal/devices/pnp_WACf008' (string)
    linux.hotplug_type = 2 (0x2) (int)
    linux.subsystem = 'pnp' (string)
    linux.sysfs_path = '/sys/devices/pnp0/00:0a' (string)
    pnp.id = 'WACf008' (string)
    pnp.serial.irq = 5 (0x5) (int)
    pnp.serial.port = '0x200' (string)
    udi = '/org/freedesktop/Hal/devices/pnp_WACf008_serial_platform_0'
    access_control.file = '/dev/tts/0' (string)
    access_control.type = 'modem' (string)
    info.callouts.add = {'hal-acl-tool --add-device', 'hal-setup-wacom', 'hal-setup-wacom'} (string list)
    info.callouts.remove = {'hal-acl-tool --remove-device'} (string list)
    info.capabilities = {'serial', 'access_control', 'input', 'input'} (string list)
    info.category = 'serial' (string)
    info.parent = '/org/freedesktop/Hal/devices/pnp_WACf008' (string)
    info.product = 'PnP Device (WACf008)' (string)
    info.subsystem = 'tty' (string)
    info.udi = '/org/freedesktop/Hal/devices/pnp_WACf008_serial_platform_0' (string)
    input.device = '/dev/tts/0' (string)
    input.x11_driver = 'wacom' (string)
    input.x11_options.ForceDevice = 'ISDV4' (string)
    input.x11_options.Type = 'stylus' (string)
    linux.device_file = '/dev/tts/0' (string)
    linux.hotplug_type = 2 (0x2) (int)
    linux.subsystem = 'tty' (string)
    linux.sysfs_path = '/sys/devices/pnp0/00:0a/tty/ttyS0' (string)
    serial.device = '/dev/tts/0' (string)
    serial.originating_device = '/org/freedesktop/Hal/devices/pnp_WACf008' (string)
    serial.port = 0 (0x0) (int)
    serial.type = 'platform' (string)
    wacom.types = {'eraser', 'touch', 'eraser', 'touch'} (string list)
    grateful for any suggestions anyone has beyond this point.

    well, the answer is easy but I am annoyed to have wasted so much time figuring it out.
    it is this: the linuxwacom-dev package seems to have installed hal-setup-wacom to /usr/libexec/, and as a result hal cannot find it.
    just doing:
    cp /usr/libexec/hal-setup-wacom /usr/lib/hal
    gives me a working eraser (after restarting hal and then restarting X).
    EDIT: also, if "xinput --list --short" does not list devices with the standard names stylus/eraser, then to get xsetwacom running properly put this in a script and run it from /etc/rc.local: (script stolen from another forum)
    #! /bin/sh
    for udi in `hal-find-by-property --key input.x11_driver --string wacom`
    do
    type=`hal-get-property --udi $udi --key input.x11_options.Type`
    hal-set-property --udi $udi --key info.product --string $type
    done
    I tried to write this logic into the fdi policy, but somehow couldn't get it to work.
    Last edited by tlawson (2009-04-30 20:08:35)

  • WSUS Update Files Store will not change setting

    Hello,
    I have a Server 2008 R2 SP1 machine with the WSUS role on it.  It is going to work in conjunction with our SCCM 2012 SUP to handle Windows Updates.  
    When we go to WSUS Role -> Update Services -> Options -> Update Files and Languages and change the setting from "Store update files locally on this server" to "Do not store update files locally. . ."  the server acts like
    it's going to change the setting.  When we check on it after a few minutes it tells us that the server is changing setting and therefore we can't alter anymore settings.  
    When we come back about an hour later the settings are back to the original settings.  
    We've tried with a Domain Admin account and local admin Account.  
    Any help would be greatly appreciated.
    -Thanks,
    T_Albus

    If the WSUS role hasn't approved any updates then ConfigMgr SUP won't have an accurate database to cross-reference to see if the computer is compliant or not for a particular update, correct?
    That is incorrect. Client update compliance is performed against the entire catalog which the WSUS instance downloads and makes available to the clients and the SUP synchs to ConfigMgr. Clients scan for compliance against *all* updates in the catalog. Approving
    (or declining) updates in WSUS should not be done when WSUS is integrated with ConfigMgr. In fact, as mentioned, no administration of WSUS should ever be done directly in the WSUS console when integrated with ConfigMgr.
    Also, clients do not (by default) report compliance to WSUS when using ConfigMgr -- there is no need to do so as WSUS, as mentioned, simply exists for the download and distribution of the update catalog (and EULAs) and nothing more. All update activity is
    controlled, monitored, and managed directly within ConfigMgr with no involvement from WSUS.
    Jason | http://blog.configmgrftw.com

  • ORA-12505 - AIX - ProC/C++ - [AIX environment not properly set to NLS?]

    I DO need some help here!
    I have a C++ program accessing an Oracle 8.0.5 database ( which is set up for american_america.weiso8859p1 as the default language PLUS one more being: brazilian portuguese_brazil.weiso8859p1.
    When I log to the server which hosts the executable and try to run the application, I get the error ORA-12505 as soon as I try to connect to the database, but the error message can't be displayed, and instead, my exit routine displays: " Error while trying to retrieve text for error ORA-12505 "
    If, alternatively, I log to another server THEN issues a telnet to the the server which hosts the executable and try to run the application, I get the programm to run nicely.
    The settings of the environment variables ORA_NLS33 and NLS_LANGUAGE have been coded inside the C++ program (among first things in main) but it seems these settings have no effect in solving the problem.
    The server which hosts the application has an AIX 4.3.3.0 operating system.
    The server from which I issue the telnet command has an AIX 4.2.1.0 operating system.
    What are the things that must be set in AIX in order to correctly access the Oracle database? Where can I get this type of information?
    I do apreciate any clues to solve this problem of mine.
    Thanks!

    Sounds like this is a configuration problem:
    ORA-12505: TNS: listener could not resolve SID given in connect descriptor
    Cause: The SID in the CONNECT_DATA was not found in the listener's tables. This error will be returned if the database instance has not registered with the listener; the instance may need to be started.
    Action: Check to make sure that the SID specified is correct. The SIDs that are currently registered with the listener can be obtained by typing "LSNRCTL SERVICES <listener name>". These SIDs correspond to SID_NAMEs in TNSNAMES.ORA, or DB_NAMES in the initialization file.

  • After upgrading to OS 7.1.1 Maps no longer works correctly.  It is constantly "locating" and does not do real time updating.  Tried "Scout" map app it does the same thing.  Do I have something not properly set up for viewing Maps the way I used top?

    After upgrading my iphone 4s to 7.1.1 the Maps application does not work properly.  It updates very slowly and is constantly "locating".  Why is this happening after the upgrade?  I also tried SCOUT App it is does the same thing.  It seems like it is losing the GPS position.  Is there a fix for this?

    Any change after turning Airplane mode off and on and/or or after turning Location Services off and back on?
    If not, any change after doing a reset which is similar to a computer restart and is done by pressing and holding the home button and the sleep/wake or on/off button simultaneously until you see the Apple logo and then release?

  • Tp import flag not properly set in "STMS",  tp-processe not ended

    since last Stopping of our Q-System the display in of the import queue doesnt work fine. when we transport requests from the development-system to the q-system the truck-icon doesn't disappear. the processes in AIX are not finished,  after time the "overview of the transport logs"  shows that the import is done, but the truck doesn't disaappear
    we tested the transport tool (RSTPTEST): o.k., in the TMS configuration we made the communication test: o.k.
    sometime we can make the truck disappear, when we delete the .LOB  in /usr/sap/trans/tmp but this doesn't work with all requests

    Check the Import monitor and the tp system log. If the truck icon still shows is most likely because the Import is not fully finished, As I said check the import monitor and let us know what it says.
    Regards
    Juan

  • Samples number is not properly set with VI Express Write To Measurement File

    Hello,
    I have a strange problem with the VI Express Write To Measurement File.
    When I generate the .lvm file the samples number for each channel is equal to 1
    instead of 34 !
    So when I use the VI Express / Input / Generate an arbitrary signal and I want to import
    the generated signal... only one point (the first one) is imported...
    I can manualy fix it by changing samples number in the lvm file using a text editor but that's a (very) dirty hack !
    Here is an example of the generated LVM file
    LabVIEW Measurement   
    Writer_Version    0.92
    Reader_Version    1
    Separator    Tab
    Multi_Headings    No
    X_Columns    One
    Time_Pref    Absolute
    Operator    scls
    Date    2008/04/12
    Time    10:35:58,322057
    ***End_of_Header***   
    Channels    2       
    Samples    1    1   
    Date    2008/04/12    2008/04/12   
    Time    10:35:58,323057    10:35:58,323057   
    X_Dimension    Time    Time   
    X0    0.0000000000000000E+0    0.0000000000000000E+0   
    Delta_X    1.000000    1.000000   
    ***End_of_Header***           
    X_Value    Untitled    Untitled 1    Comment
    0.000000    0.000000    20.000000
    0.082000    10.000000    20.000000
    0.182000    10.000000    25.000000
    0.282000    20.000000    25.000000
    0.382000    20.000000    30.000000
    0.482000    30.000000    30.000000
    0.582000    30.000000    35.000000
    0.682000    40.000000    35.000000
    0.782000    40.000000    40.000000
    0.882000    50.000000    40.000000
    0.982000    50.000000    45.000000
    1.082000    60.000000    45.000000
    1.182000    60.000000    50.000000
    1.282000    70.000000    50.000000
    1.382000    70.000000    55.000000
    1.482000    80.000000    55.000000
    1.582000    80.000000    60.000000
    1.682000    90.000000    60.000000
    1.782000    90.000000    65.000000
    1.882000    100.000000    65.000000
    1.982000    100.000000    70.000000
    2.082000    110.000000    70.000000
    2.182000    110.000000    75.000000
    2.282000    120.000000    75.000000
    2.382000    120.000000    80.000000
    2.482000    130.000000    80.000000
    2.582000    130.000000    85.000000
    2.682000    140.000000    85.000000
    2.782000    140.000000    90.000000
    2.882000    150.000000    90.000000
    2.982000    150.000000    95.000000
    3.082000    160.000000    95.000000
    3.182000    160.000000    100.000000
    3.282000    170.000000    100.000000
    PS : I also post my problem at
    http://forums.lavag.org/Strange-behaviour-of-VI-Express-Write-LVM-t10570.html&gopid=44101#entry44101
    Attachments:
    generate_step_lvm.vi ‏119 KB

    If I use the "one header per segment" option I get the following LVM file (see below)
    But the problem is same !
    I can't import this file in VI Express / Input / Generate Abitrary Signal (I only get one row... the first one)
    I see three solutions :
    - VI Express Write LVM has a bug ?
    - I don't know how to use this VI Express correctly !
    - VI Express / Input / Generate Abitrary Signal has a bug ?
    LabVIEW Measurement    
    Writer_Version    0.92
    Reader_Version    1
    Separator    Tab
    Multi_Headings    Yes
    X_Columns    One
    Time_Pref    Absolute
    Operator    scls
    Date    2008/04/12
    Time    16:38:37,578
    ***End_of_Header***    
    Channels    2        
    Samples    1    1    
    Date    2008/04/12    2008/04/12    
    Time    16:38:37,592999    16:38:37,592999    
    X_Dimension    Time    Time    
    X0    0.0000000000000000E+0    0.0000000000000000E+0    
    Delta_X    1.000000    1.000000    
    ***End_of_Header***            
    X_Value    Untitled    Untitled 1    Comment
    0.000000    0.000000    20.000000
    Channels    2        
    Samples    1    1    
    Date    2008/04/12    2008/04/12    
    Time    16:38:37,717    16:38:37,717    
    X_Dimension    Time    Time    
    X0    1.3899993896484375E-1    1.3899993896484375E-1    
    Delta_X    1.000000    1.000000    
    ***End_of_Header***            
    X_Value    Untitled    Untitled 1    Comment
    0.139000    10.000000    20.000000
    Channels    2        
    Samples    1    1    
    Date    2008/04/12    2008/04/12    
    Time    16:38:37,739999    16:38:37,739999    
    X_Dimension    Time    Time    
    X0    1.6199970245361328E-1    1.6199970245361328E-1    
    Delta_X    1.000000    1.000000    
    ***End_of_Header***            
    X_Value    Untitled    Untitled 1    Comment
    0.162000    10.000000    25.000000
    and so one ...

  • Secure store directory does not exist

    hi guys,
    i installed  EP in my server and it is succefully installed .
    but in the post installation steps when i am running the templates it is showing the following error .
    com.sap.engine.frame.core.configuration.ConfigurationException: Error occurred: Secure Store lib Dir does not exist
    eds/sapmnt/EP2/SYS/global/sapmnt/EP2/SYS/global/security/lib\tools
    I am not able to access the portal screen i.e., ( http://host:port/irj/portal ) . It is showing the message (404 not found). any one plzz help me in this issue.
    thanks
    rahul

    Read,
    Error occurred: Secure Store lib Dir does not exist
    /thread/1116440 [original link is broken]
    That might help
    Regards
    Juan

  • Entry for host name is missing or empty (Secure Store key: admin/host/).

    Hi All,
    I am in the process of installing EP7 on SLES9 and MaxDB 7.6 on a clustered HA environment where the SCS, DB and JC components are installed under and referenced by their virtual hostname (eg. sapinst SAPINST_USE_HOSTNAME <virt name>).
    The SCS instance is installed, the Database Instance is installed and I'm currently in the process of Installing the JC and Deploying the EP packages. 
    During the installation, SDM is put into standalone mode and sapinst tries to deploy the package EPBC06_0.SCA where it fails and the sdm_server.err shows :
    "com.sap.sdm.serverext.servertype.inqmy.TargetEngineConfigurationException: Cannot retrieve Engine logon data from Secure Store: Entry for host name is missing or empty (Secure Store key: admin/host/).        at com.sap.sdm.serverext.servertype.inqmy.InQMyTargetSystemConfigurator.getLoginDataFromSecStoreInQMyTargetSystemConfigurator.java:286)        at com.sap.sdm.serverext.servertype.inqmy.InQMyTargetSystemConfigurator.getEngineLoginDataInQMyTargetSystemConfigurator.java:197)        at com.sap.sdm.serverext.servertype.inqmy.EngineStateServiceImpl.determineCurrentEngineStateEngineStateServiceImpl.java:53)        at com.sap.sdm.app.proc.deployment.states.State.determineJ2EEEngineState(State.java:97)        at com.sap.sdm.app.proc.deployment.states.StateBeforeFirstDeployment.getJ2EEEngineStateChangeDescriptionStateBeforeFirstDeployment.java:75)        at com.sap.sdm.app.view.proc.deployment.mapper.StateMapper.map(StateMapper.java:56)        at com.sap.sdm.app.view.proc.deployment.mapper.FlowMapper.map(FlowMapper.java:28)        at com.sap.sdm.app.view.session.AppViewUpdater.updateAppView(AppViewUpdater.java:22)        at com.sap.sdm.app.view.session.AppViewUpdater.sessionStateChanged(AppViewUpdater.java:18)        at com.sap.sdm.app.proc.deployment.impl.SessionStateObserversImpl.notifySessionStateChangedSessionStateObserversImpl.java:46)        at com.sap.sdm.app.proc.deployment.states.InstContext.processEventServerSide(InstContext.java:85)        at com.sap.sdm.app.proc.deployment.states.InstContext.processEvent(InstContext.java:59)        at com.sap.sdm.app.view.controllers.DeployEventProcessor.processEvent(DeployEventProcessor.java:11)        at com.sap.sdm.client_server.deployserver.DeployCmdProcessor.processEvent(DeployCmdProcessor.java:264)        at com.sap.sdm.client_server.deployserver.DeployCmdProcessor.process(DeployCmdProcessor.java:108)        at com.sap.sdm.gui.server.GuiAdminRoleCmdProcessor.processGuiAdminRoleCmdProcessor.java:72)        at com.sap.sdm.is.cs.session.server.SessionCmdProcessor.process(SessionCmdProcessor.java:67)        at com.sap.sdm.is.cs.cmd.server.CmdServer.execCommandCmdServer.java:76)        at com.sap.sdm.client_server.launch.ServerLauncher$ConnectionHandlerImpl.handle(ServerLauncher.java:286)        at com.sap.sdm.is.cs.ncserver.NetCommServer.serveNetCommServer.java:43)        at com.sap.sdm.is.cs.ncwrapper.impl.ServiceWrapper.serveServiceWrapper.java:39)        at com.sap.bc.cts.tp.net.Worker.run(Worker.java:50)       at java.lang.Thread.run(Thread.java:816)"
    The same problem occurs if I try to deploy this package or any other package using SDM in standalone or integrated mode. 
    configtool -> Secure Store -> admin/host/<SID> is the virtual hostname of the JC instance.
    I've tried the following to no avail:
    - Changed configtool -> Secure Store -> admin/host/<SID> to be the physical hostname of the box.
    - Changed configtool -> Server -> Dispatcher -> Service -> P4 -> bindhost (from 0.0.0.0 to JC virt IP).
    - Changed the <Host> entry in sdmrepository.sdc from <phys hostname> to <jc virt hostname>.
    The SAPLOCALHOST, SAPGLOBALHOST all seem to be set correctly in the SAP profiles.
    Has anyone had this issue?  If so, what do I need to check/change?  Any ideas?
    Notice the message does not reference the <SID> in "admin/host", could this be related to the issue?  If so, what can cause this?
    TIA
    Anthony

    Hi All,
    Just an update, I was able to get around my problems by patching the 2004s media from sp6 to sp8, uninstalling my scs, and database and re-installing from the patched media.

Maybe you are looking for

  • Starting Server On Fedora Core 3

    I have - Fedora Core 3 Plesk 7.5.4 Apache 2 PHP 5 MySQL 4.1 I am installing a Chatroom with a JavaSocket serve option however when I attempt to the run the startServer file which has a Java call it tells me "Java: command not found"... I know that Ja

  • SB Live 5.1 Platinum RemoteCenter Problems in

    <SPAN>Hello, <SPAN> I purchased the SB Li've Platinum back when I had Windows 98 running. It worked like a champ. I was able to use all of the software that came with the card, and was very pleased with it. Since then, I've built up a few other PCs a

  • Now on Fourth phone replacement. Fed the same bull. Anyone else deal with this?

    I'm just curious how many people out there are going through or have gone through the current issue I'm having with Verizon Wireless. I upgraded my cell phone to the HTC Droid Inc 2 a little while back. I had informed the in-store customer service re

  • Currency change

    Hello Sapiens, There was error during the currency settings. By error two decimal points had been set for USD currency. The transaction data has been uploaded. But now the client has identified that we need to set up to three decimal points. If we do

  • Why  Itune7 tied up with MaxOsX ( 10.5.8) while using with Iphone5

    I have a macbook 10.5.8 which has Itune 10.6.3. It perfectly works with Iphone4. I upgraded to Iphone5 and It does not work with Itune 10.6.3 and asking for Itune 10.7. Itune 10.7 needs your mac OsX to upgrade. Why should I upgrade my OS for Itune 10