Automated install scheme fails with stty: no such

Hello,
Can someone please help me out with my crafty scheme? I want to do a mass deployment
of SunMC agents using both Jumpstart and web based deployment via N1SPS.
I have gone so far as to have read the install guide for Sun MC 4 and it is already out of date!
I haved used es-makeclient to create an install client with pkg response and config files
for es-setup and es-inst.
Then I roll the above into a Solaris pkg with a postinstall script. This worked up to a
point until I got a conclusion where the es-inst commands run out of the postinstall
script were waiting for the pkgadd of the "makeclient" process to complete. Does this
make sense so far?
So, to stop the above condition where 2 pkgadds concurrent were waiting for the
first to finish (held open by the postinstall script running the second pkgadd), I
changed postinstall to just be a bourne shell exec /var/tmp/sunmc_agent/finish,
with a modified version of the finish script described in the SunMC install guide.
But my finish script fails with spurious errors and I can't seem to resolve it.
Here is the procedure and the error message will be obvious when you
see "finish script begins now"
pkgadd -d . -G sunmcagent
Processing package instance <sunmcagent> from </tmp>
sunmcagent(sparc) 1.0
rachel@snoz
Using </var/tmp> as the package base directory.
## Processing package information.
## Processing system information.
## Verifying disk space requirements.
## Checking for conflicts with packages already installed.
## Checking for setuid/setgid programs.
This package contains scripts which will be executed with super-user
permission during the process of installing this package.
Do you want to continue with the installation of <sunmcagent> [y,n,?]
Do you want to continue with the installation of <sunmcagent> [y,n,?] y
Using </var/tmp> as the package base directory.
## Processing package information.
## Processing system information.
3278 package pathnames are already properly installed.
## Verifying disk space requirements.
## Checking for conflicts with packages already installed.
## Checking for setuid/setgid programs.
This package contains scripts which will be executed with super-user
permission during the process of installing this package.
Do you want to continue with the installation of <sunmcagent> [y,n,?] y
Installing sunmcagent as <sunmcagent>
## Installing part 1 of 1.
/var/tmp/sunmc_agent/disk1/image/SunOS/sparc/Addons/TNG/Common/Basic/SUNWfrcam/pkginfo
/var/tmp/sunmc_agent/disk1/image/SunOS/sparc/Addons/TNG/Common/Basic/SUNWfrcam/pkgmap
/var/tmp/sunmc_agent/disk1/image/SunOS/sparc/Addons/TNG/Common/Basic/SUNWhcam/pkginfo
/var/tmp/sunmc_agent/disk2/image/SunOS/sparc/Addons/X86ConfigReader/Solaris_9/installation.info
/var/tmp/sunmc_agent/disk2/image/SunOS/sparc/Addons/X86ConfigReader/Solaris_9/installation.properties
/var/tmp/sunmc_agent/finish
/var/tmp/sunmc_agent/response_files/install_cfg
/var/tmp/sunmc_agent/response_files/setup.cfg
/var/tmp/sunmc_agent/response_files/sunmc_install.cfg
/var/tmp/sunmc_agent/response_files/sunmc_setup.cfg
[ verifying class <none> ]
## Executing postinstall script.
sleeping for cleanup
Installation of <sunmcagent> was successful.
Installation of <sunmcagent> was successful.
server:/tmp 128# finish script begins now
This script installs Sun (TM) Sun Management Center 4.0
Installation files source directory: /var/tmp/sunmc_agent/disk1/image/SunOS/sparc
stty: : No such device or address
Enter the directory in which you want to install: [ /opt ] : /opt
Installation destination directory: /opt
Selecting : Agent
mkdir: Failed to make directory "/var/tmp/installCJaGg5/patchadd-1610629752"; No such file or directory
/usr/lib/patch/patchadd[18]: /var/tmp//installCJaGg5: not found
Reading Add-On products from image. Please wait...
This can take approximately 2 minutes to complete.
Found: Sun Enterprise 6500-3500 Servers/sun4d DR
Found: Sun Fire Entry-Level Midrange System
Found: PltAdmin SPARC Enterprise Mx000
The es-inst process runs through but the stty error and the pkgadd install dir errors
make the install failure and no SunMC packages are installed. My response files
are correct and I will post everything here, sans passwds:
This is the postinstall that calls the finish script. The postinstall runs after the
client package is installed in /var/tmp to be run by es-inst:
#!/bin/sh
# Program type      : Unix bourne shell script
# Description       : Standard finish script for installing and
#                     setting up Sun Management Center core agent
# THIS VERSION FOR SOLARIS 10 ONLY
exec sh /var/tmp/sunmc_agent/finish &
exit 0This is the finish script, without secrets:
!/bin/sh
# Program type      : Unix bourne shell script
# Description       : Standard finish script for installing and
#                     setting up Sun Management Center core agent
# THIS VERSION FOR SOLARIS 10 ONLY
LOGDIR=/var/tmp/sunmcfinish
SI_CONFIG_DIR=/var/tmp/sunmc_agent
INSTALL_RESP=${SI_CONFIG_DIR}/response_files/sunmc_install.cfg
SETUP_RESP=${SI_CONFIG_DIR}/response_files/sunmc_setup.cfg
echo "sleeping for cleanup"
sleep 15
echo "finish script begins now"
# Begin Main Program
umask 022
mkdir -p $LOGDIR
# Copy the install and setup response file to target system
cp ${INSTALL_RESP} $LOGDIR
cp ${SETUP_RESP} $LOGDIR
# run es-inst with -a -R -T and -A options
# skip the next line for Flash Archive based deployment
# Do not use the -T option if you have specified the TARGET_DIRECTORY
# tag in install.cfg
${SI_CONFIG_DIR}/disk1/sbin/es-inst -a -A ${LOGDIR}/sunmc_install.cfg
# Clean up any rc script with the same name if present
test -f /etc/rc3.d/S80SunMCJumpStart && rm -f /etc/rc3.d/S80SunMCJumpStart
rm -f /etc/init.d/SunMCJumpStart
# Place rc script in rc3.d and init.d to do setup
# Remember to access es-setup based on the target directory location
echo "Creating rc script..."
cat > /etc/rc3.d/S80SunMCJumpStart << EOF
#!/sbin/sh
rm /etc/rc3.d/S80SunMCJumpStart /etc/init.d/SunMCJumpStart
SECURITY_SEED=selfsown
SNMPV1_STRING=harhar!
export SECURITY_SEED SNMPV1_STRING
/opt/SUNWsymon/sbin/es-setup -e -A /var/tmp/sunmcfinish/sunmc_setup.cfg
EOF
cp /etc/rc3.d/S80SunMCJumpStart /etc/init.d/SunMCJumpStart
chmod 755 /etc/rc3.d/S80SunMCJumpStart /etc/init.d/SunMCJumpStart
exit 0And so as you can see, "postinstall" runs 'finish" which is the boilerplate
from the SunMC4 install guide jumpstart section. Now the crazy thing is,
if I do the first pkgadd of my makeclient tarball and then run the "finish" script
from the CLI, then the install goes 100% perfect, so I know my responses files
are ok and my scripts are ok, but perhaps it is because I have spawned a subshell
and have no tty? The pkgadd started by es-inst fails because of a dir entry,
but it should just create it's own. Is there someway to get the subshell what it
needs to run my "finish" script correctly?
rachel

OK,
I fixed the stty problem by using #!/bin/sh -i
to give the impression of an interactive shell.
Bu I still get:
mkdir: Failed to make directory "/var/tmp/installnZa4GW/patchadd-3145325386"; No such file or directory
/usr/lib/patch/patchadd[18]: /var/tmp//installnZa4GW: not found
When es-inst is run. There is a person on here with a similar problem, unanswered.
I wonder if they found a solution, although it was 3.6.1?
rachel

Similar Messages

  • Install badge fails with '@' or '.' in appinstallarg

    I'm trying to run the AIR install badge with my application and I would like to pass down an varible (in my case, an email address) to be read when the app is first run.  However, whenever I have the '@' or the '.' character as part of the appinstallarg parameter, the badge fails to even start downloading the file.  If I change the appinstallarg to be a single word (like 'blah') it works fine.  It's also fine if I put spaces in the argument, just not certain other characters.
    I have also tried url encoding the argument (using %40 for '@' and %2E for '.') but it hasn't helped.
    I'm considering just transcoding the bad characters into various numbers of spaces or something, but it would be nice if there were a way around this.

    Regarding the newer badge install:
    I'm having a few issues where it's not seeing my application
    already installed (AIR app with Flex).
    The application is definitely installed but it keeps opening
    the .AIR file and asking to open/save.
    Does the AIR app have to be signed properly (i.e. a real
    certificate, paid for) to be able to fully work with the badge
    installer?
    I have set everything correctly in Flex
    (allowBrowserInvocation: set to true)
    and in the HTML I've set it to correctly based on what is in
    my Flex file (appid, appversion, name, etc)
    I've set airversion to "1.0".... what is 1.0.M6 ? (is this
    Beta 3?)
    I haven't set "pubid" to anything, just left as ""... would
    this affect the way the badge works?
    Could I request an update to the badge system... as it's
    doing a lot of checking for Beta3.
    It would be much better and cleaner if it just looked for the
    current AIR version and then if it was not present installed it.

  • Basic_demo install.vbs fails with windows script error 800A0005

    installing from 92030 win2k client to SunOS 2.6 92030 db.
    The install.vbs windows script fails with:
    Script: c:\down\xml\oracle\basic_demo\basicDemo\Install\Install.vbs
    Line: 876
    Char: 7
    Error: Invalid procedure call or argument
    Code: 800A0005
    Source: Microsoft VBScript runtime error
    prior to running I upgraded my IE to 6.0 and the Microsoft Script to 5.6 I have win 2k SP3
    Any ideas, line 876 is:
    oShellLink.IconLocation = iconPath
    Thanks,
    Gary

    Hi
    If I remember correctly I had the same problem a few weeks ago.
    I can't remember what I actually fixed, probably something to do with a missing directory.
    Anyway, the three procedures below(I would have attached them, but, can't find the link?) with extra
    Wscript.echo "***
    lines should show you what is wrong.
    Sub makeGeneralShortCuts(localConfig, fileManager, demoConfiguration)
    nodeListXpath = "General/shortCuts"
    nodeCount = demoConfiguration.getElement(nodeListXpath).childNodes.length - 1
    for i = 0 to nodeCount
    xpath = nodeListXpath & "/shortCut[" & i & "]"
    shortCutName = demoConfiguration.getChildTextNode(xpath,"Name")
    target = localConfig.replaceMacros(demoConfiguration.getChildTextNode(xpath,"path"))
    directory = localConfig.replaceMacros(demoConfiguration.getChildTextNode(xpath,"directory"))
    icon = localConfig.replaceMacros(demoConfiguration.getChildTextNode(xpath,"icon"))
    arguments = localConfig.replaceMacros(demoConfiguration.getChildTextNode(xpath,"Arguments"))
    Wscript.echo "*** icon 1 " & icon & ",shortCutName " & shortCutName & ",target " & target & ", icon " & icon
    fileManager.makeDefaultShortCut localConfig, shortCutName, target, icon, directory, arguments
    Next
    End Sub
    Sub makeDefaultShortcut(localConfig, shortcutName, targetPath, iconPath, targetDirectory, arguments)
    shortCutFolderPath = localConfig.getShortCutFolderPath()
    Wscript.echo "*** iconPath 3 " + iconPath
    makeShortCut localConfig, shortCutFolderPath, shortcutName, targetPath, iconPath, targetDirectory, arguments
    End Sub
    Sub makeWsFtpShortCuts(localConfig, fileManager, demoConfiguration)
    Set iniFile = fileManager.CreateTextFile(localConfig.getWsFtpIniFilePath())
    nodeListXpath = "FTP/shortCuts"
    nodeCount = demoConfiguration.getElement(nodeListXpath).childNodes.length - 1
    for i = 0 to nodeCount
    xpath = nodeListXpath & "/shortCut[" & i & "]"
    shortCutName = demoConfiguration.getChildTextNode(xpath,"Name")
    target = localConfig.getFtpPath()
    entryName = demoConfiguration.getChildTextNode(xpath,"iniFileEntry")
    localDirectory = localConfig.getDemoFolderPath() & FILE_SEPERATOR & localConfig.replaceMacros(demoConfiguration.getChildTextNode(xpath,"localPath"))
    remoteDirectory = localConfig.replaceMacros(demoConfiguration.getChildTextNode(xpath,"remotePath"))
    arguments = " -i " & localConfig.getWsFtpIniFilePath() & " -p " & entryName
    Wscript.echo "*** target 2 " + target
    FileManager.makeDefaultShortCut localConfig, shortCutName, target, _
    target, localConfig.getDemoFolderPath(), arguments
    addIniFileEntry localConfig, iniFile, entryName, localDirectory, remoteDirectory
    Next
    iniFile.close
    End Sub
    Warwick

  • Install RAC failed with root.sh error while loading shared libraries: libst

    Hi ,
    I install rac under vmware workstation using this atricle .
    http://www.oracle-base.com/articles/10g/OracleDB10gR2RACInstallationOnCentos4UsingVMware.php
    everything work smoothly but I faced error with root.sh
    Failed to upgrade Oracle Cluster Registry configuration
    I found metlalink talk about missing compat-libstdc++-33-3.2.3-47.3.ia64.rpm and must be installed according to
    that .
    The probelm rasied when run
    /u01/app/oracle/product/10.2.0/crs/bin/crsctl.bin: error while loading shared libraries: libstdc++.so.5: cannot
    open shared object file: No such file or directory
    Failure initializing entries in /etc/oracle/scls_scr/rac2.
    Linux version is RHE4
    [oracle@rac1 bin]$ uname -a
    Linux rac1.localdomain 2.6.9-55.ELsmp #1 SMP Fri Apr 20 17:03:35 EDT 2007 i686 i686 i386 GNU/Linux
    when install this package it does not work
    [root@rac1 RPMS]# rpm -Uvh compat-libstdc++-33-3.2.3-47.3.ia64.rpm
    warning: compat-libstdc++-33-3.2.3-47.3.ia64.rpm: V3 DSA signature: NOKEY, key ID b38a8516error: Failed
    dependencies:
    libc.so.6.1()(64bit) is needed by compat-libstdc++-33-3.2.3-47.3.ia64 libc.so.6.1(GLIBC_2.2)(64bit)
    is needed by compat-libstdc++-33-3.2.3-47.3.ia64 libc.so.6.1(GLIBC_2.3)(64bit) is needed by compat-
    libstdc++-33-3.2.3-47.3.ia64 libgcc_s.so.1()(64bit) is needed by compat-libstdc++-33-3.2.3-47.3.ia64
    libgcc_s.so.1(GCC_3.0)(64bit) is needed by compat-libstdc++-33-3.2.3-47.3.ia64 libgcc_s.so.1(GCC_3.3)(64bit)
    is needed by compat-libstdc++-33-3.2.3-47.3.ia64 libgcc_s.so.1(GLIBC_2.0)(64bit) is needed by compat-
    libstdc++-33-3.2.3-47.3.ia64 libm.so.6.1()(64bit) is needed by compat-libstdc++-33-3.2.3-47.3.ia64
    compat-libstdc++ = 7.3-2.96.128 is needed by (installed) compat-libstdc++-devel-7.3-2.96.128.i386 compat-
    libstdc++ = 7.3 is needed by (installed) compat-gcc-c++-7.3-2.96.128.i386[root@rac1 RPMS]#
    My probelm cannot install this packages ? What shoudl I do .

    user12010537 wrote:
    Hi ,
    I found metlalink talk about missing compat-libstdc++-33-3.2.3-47.3.ia64.rpm and must be installed according to
    Linux version is RHE4
    [root@rac1 RPMS]# rpm -Uvh compat-libstdc++-33-3.2.3-47.3.ia64.rpm
    warning: compat-libstdc++-33-3.2.3-47.3.ia64.rpm: V3 DSA signature: NOKEY, key ID b38a8516error: Failed
    dependencies:
    libc.so.6.1()(64bit) is needed by compat-libstdc++-33-3.2.3-47.3.ia64
    My probelm cannot install this packages ? What shoudl I do .
    Hi,
    You need to install the dependency package first like glibc, etc
    also see the output from runcluvfy, it should show which packages need to installed
    Cheers

  • IFS Install (Config) Fails with "ORA-00922: missing or invalid option"

    Greetings:
    Thanks for your help in advance...
    Towards the end of IFS installation, I get the following error in my
    IfsConfigOut.log file (This happens towards the end of the installation). I
    am Installing IFS on Oracle 9i (9.0.1.1 version) instance on Win 2K (P-III,
    800Mhz, 512Mb) . After this installation error, all the 9iFS directories
    and nodes are detected under OEM but when I start the domain I get no
    response for the same.
    ConfigOut File pasted below
    CONFIGURATION: SCHEMA CREATION TYPE
    Configuring Oracle Internet File System 9.0.1.1.0 configuration started on:
    Mon May 20 09:45:28 GMT+05:30 2002
    saving user configuration settings to file:
    saving:E:\oracle\ora90\9ifs\settings\oracle\ifs\installer\properties\IfsConf
    ig.properties
    saving:
    E:\oracle\ora90\9ifs\settings\oracle\ifs\server\properties\IfsDefault.proper
    ties
    Old schema name in IfsDefault.properties file = ifssys
    New schema name pointing to now = IFSSYS
    Create Schema = true
    Upgrading Schema = false
    Pointing to same schema as the old entry in IfsDefault.properties file =
    true
    Checking DC entries
    RUN DC = true
    Adding section for DC as there does not exist a section already
    Checking Node entries
    RUN NODE = true
    Adding Node section = Node
    saving: E:\oracle\ora90\9ifs\settings\Node.def
    saving: E:\oracle\ora90\9ifs\settings\HttpNode.def
    saving: E:\oracle\ora90\9ifs\settings\DomainController.def
    executing command:
    Empty command. Not executing
    executing command:
    Empty command. Not executing
    executing command:
    Empty command. Not executing
    creating database user (schema): IFSSYS
    java.sql.SQLException: ORA-00922: missing or invalid option
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:180)
         at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java, Compiled
    Code)
         at oracle.jdbc.oci8.OCIDBAccess.executeFetch(OCIDBAccess.java, Compiled
    Code)
         at oracle.jdbc.oci8.OCIDBAccess.parseExecuteFetch(OCIDBAccess.java,
    Compiled Code)
         at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java,
    Compiled Code)
         at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java,
    Compiled Code)
         at
    oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java
    , Compiled Code)
         at oracle.jdbc.driver.OracleStatement.execute(OracleStatement.java,
    Compiled Code)
         at oracle.ifs.utils.sql.SQLCommands.createUser(SQLCommands.java:352)
         at
    oracle.ifs.installer.IfsConfiguration$CreateSchemaAction.createIfsSchema(Ifs
    Configuration.java:546)
         at
    oracle.ifs.installer.IfsConfiguration$CreateSchemaAction.perform(IfsConfigur
    ation.java:476)
         at oracle.ifs.utils.action.ActionQueue.performActions(ActionQueue.java,
    Compiled Code)
         at oracle.ifs.utils.action.ActionQueue.run(ActionQueue.java:230)
         at java.lang.Thread.run(Thread.java:479)
    recording that configuration failed
    saving:E:\oracle\ora90\9ifs\settings\oracle\ifs\installer\properties\IfsConf
    ig.properties
    iFS configuration failed; the following error occurred:
    oracle.ifs.utils.action.ActionFailedException: java.sql.SQLException:
    ORA-00922: missing or invalid option
         at
    oracle.ifs.installer.IfsConfiguration$CreateSchemaAction.perform(IfsConfigur
    ation.java:526)
         at oracle.ifs.utils.action.ActionQueue.performActions(ActionQueue.java,
    Compiled Code)
         at oracle.ifs.utils.action.ActionQueue.run(ActionQueue.java:230)
         at java.lang.Thread.run(Thread.java:479)
    configuration failed on Mon May 20 09:45:35 GMT+05:30 2002

    Problem is Fixed !!!
    We were having this problem because IFS installation was not recognising a separate tablespace which we created for IFS, so we started using default USERS tablespace after which the installation was successful.
    Thanks.

  • Install XP failed with K7N2 DeltaILSR and 3200+

    I spent a few days on truong to install win XP on my new material (K7N2 Delta ILSR and AMD Athlon XP 3200+).
    Each time I was trying to boot from the Mircosoft boot disks (6 floppy's), I was getting a blue screen with error code 0x0000008e, and unable to install XP.
    After looking in the posts, I found that the problem could be the BIOS settings.
    I changed the FSB from 200Mhz (for my XP3200+), back to the BIOS default settings (166Mhz) and .... IT WORKED.
    I'm now able to install XP ...
    I'll change the FSB back to 200Mhz when XP is installed.
    Any technical idea on why XP install doesn't support 200Mhz on Motherboard ?!?
    Thanks !

    Concerning the Fan, yes, that's all ...
    2 fans on my PSY, 1 on my CPU, 1 on my motherboard and 1 small for my graphic card.
    P.S. : If I want an additional "big" ;-) fan, where do I need to place it ?
    Does it neet to be "attached" to my tower, and exhaust to the outside of the tower, or let it inside the tower to make an air flow inside only ?!? I'm asking because there is no "grid" on my tower where I could place a fan to exhaust air...
    Concerning Windows, my CD is 1 of the first one and was not bootable ... so I used the set of 6 floppies provided by microsoft. They are used to load the necessary "kernel" to load windows with the CD afterwards, in case your Hard drive is empty :
    http://www.microsoft.com/downloads/results.aspx?productID=&freetext=XP+boot+floppy&DisplayLang=en
    But I also tried an other Win XP CD that is Bootable.
    In both cases, the computer is giving a blue screen after the "Kernel" is loaded (i.e. floppy #6).
    PC is still in a shop for further testings of the components.
    I'll keep you posted on this problem that is recurrent on internet ... where most of the people accept to "underclock" their CPU !!

  • Sun MC Automated Install Script failing 50% of the time

    Are there a set of tips in general for the script; or perhaps tips for the contents of the boom.cfg file to help increase the percentage of successful installs?
    Thanks, [email protected]

    Hi Mike,
    In most of the SunMC autoinstall projects I've worked on, we ended up implementing 3 slightly different install/setup config files: one for 12-25k's, one for 3800-6900s, and one for "everything else". Then we put a bit of smarts in the main install script to decide which to use. The questions for each of those groups were different enough that it made sense to break them apart.
    Are you using the base es-inst/es-setup commands? es-imagetool and agent-update.bin? es-makeagent? Some notes here: http://forums.halcyoninc.com/showthread.php?t=389 . Send me an email if you need help getting things off the ground.
    Regards,
    [email protected]

  • Installing sdk fails with "Error 1325..."-prompt

    I have tried to install the j2sdk-1_4_2_02-windows-i586-p-iftw.exe on two different servers lately, without luck. On both machines I get a prompt telling me: Error 1325. Dokumenter is not a valid short file name.
    Any ideas? The servers are running win2k.
    I tried the same on my PC (running XP) and everything worked fine.

    Try running Windows CleanUp Utility, as mentioned here:
    http://support.microsoft.com/?kbid=328162
    - bjorn
    http://www.bie.no / php&java software

  • EMac wont install OSX, fails on install with errors every time

    I have a 1.25GHz emac that I just recently got, Well it wouldnt boot at first at all and had the Rom password crap on it. So i got rid of all of that and now it boots from the CD just fine it just wont install OSX im using a Retail Black disc for Tiger and it just wont get past a certain spot in the install and fails with errors every time. Any suggestions? Ive tried to install panther & Jaguar and neither of those discs will boot.
    Thanx
    Jeremy

    Sometimes, the OSX installer wants a clean partition. As the computer is new to you and probably has no files on the drive you need, I suggest you wipe the drive before trying again. Boot from the install CD and choose "Open Disk Utility" from the installer's File menu. Use DU to erase and reformat the disk, choosing "Mac Extended (Journaled)" format.
    This will clear any old files that are interfering with the installer and leave a blank slate.

  • FDM Schema update failed with error

    Hi,
    Version: FDM 11.1.1.3
    Database: Oracle 11.2.0.1
    Running schema update on 9.3.0 schema failed with following error:
    Ram the schema upgrade utility (Name: FDMApp Schema Level: 9.3.0)
    The upgrade failed approximately 1 minute into the process with the following error:
    Application [FDMApp] failed, check log file!”
    From the log file:
    …\Applications\FDMApp\Outbox\Logs\FDMApp_Update.log
    ** Begin Schema Update Entry **
    Step 12: Update English Language Code to Standard Local Value Failed!
    -2147217873-Data access error
    SQL where it fails:
    ORA-00001: unique constraint (FDMOWNER.PK_TAPPOBJECT_LOCALE) violated
    UPDATE tSecObject_Locale Set LangKey = 1033 Where (LangKey = 1)
    Anyone have any idea on this???
    Thanks!

    Hello,
    I would suggest you make sure that you run the schema update on an appropriate FDM 9.3.0 application.
    Language records (as the one mentioned in the error) do not exist in FDM 9.3.0 and should not be a problem.
    I would suspect you either don't have a 9.3.0 application; or some other custom modification was made.
    Thank you,

  • Windows 7 update fails with error 8000FFFF

    I've got a Windows 7 x64 installation that I've had for around three months.  Everything has been fine and working up until a few weeks ago.  When I run Windows Update it finds updates and allows me to select them, but when I run the install it fails with error 8000FFFF.  Update used to work, but then suddenly quit.
    I've dug through tons of forum and web sites regarding this specific error, but they all of their solutions do nothing to fix my problem.  In frustration I decided to put in a spare hard drive and install Windows 7 from scratch.  I did that and the first thing I tried to do after logging in was updates and it failed for the same reason (8000FFF).
    I have the same situation with a Windows Storage Server 2008 x64 that I have as well.  It has been runing for about six months or more and updates were working fine.  Then update started failing for the same or some other reason about the same time.  On this machine I can start the update and see it report a percentage downloading the update.  It gets to about 5 or 6 percent and then fails.
    Is there some possible networking issue at play in my situation?  I have earlier Windows versions (XP, XP64, Svr 2003 and Svr 2003 R2) and updates work fine on those.  I know those are using a different mechanism, but I do not notice any other kind of networking issues from my house to the Internet.  I have not changed anything or any settings in my firewall at all.  Is there some specific protocol, port or something that has to work prefectly in order for the new Windows update to work? 
    All of my machines are pretty much Intel based.  Win7 box is a Core2Duo on an EVGA 680i motherboard.  The servers are Intel Xeons with Intel motherboards, chipsets and nics.
    Thanks for any advice and help

    Wow, suddenly I have the same bizarre error at 11% of downloading, then error #8000FFFF.
    Fix IT, registry keys and SoftwareDistribution folder cleaning, uninstalling previous updates, manual downloading of appropriate updates and attempt do install it and creating/deleting user profiles - don't work at all.
    Any new ideas?
    Thanks,
    Win7 x64 SP1
    Package KB2633873 failed to be changed to the Installed state.
    Status: 0x8e5e0408.Windows update "Security Update for Windows (KB2633873)" could not be installed because of error 2388526088 "" (Command line: ""C:\Windows\system32\wusa.exe" "C:\Users\Wiewior\Downloads\Windows6.1-KB2633873-x64.msu"       
    Package KB2645640 failed to be changed to the Installed state. Status: 0x8e5e0408.
    Windows update "Security Update for Windows (KB2645640)" could not be installed because of error 2388526088 "" (Command line: ""C:\Windows\system32\wusa.exe" "C:\Users\Wiewior\Downloads\Windows6.1-KB2645640-x64.msu"       

  • DB installs fails with [INS-30060] Check for group existence failed

    Hi folks
    as user jjayet I'm running on OEL 5.6 64 bits the following command to install DB 11gR2 :
    $ /mntmats/SOAVM0504/AUTO_WORK/dbzip_shiphome/database/Disk1/runInstaller -ignoreSysPrereqs -invPtrLoc /ade/jjayet_dte9672/oracle/work/DATABASE1/oraInst.loc -force -silent -waitforcompletion -responseFile /ade/jjayet_dte9672/oracle/work/DATABASE1/db.rsp
    Starting Oracle Universal Installer...
    Checking Temp space: must be greater than 120 MB. Actual 15258 MB Passed
    Checking swap space: must be greater than 150 MB. Actual 16454 MB Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2012-04-05_06-07-54AM. Please wait ...[FATAL] [INS-30060] Check for group existence failed.
    CAUSE: Unexpected error occurred while trying to check for group existence.
    $ id
    uid=511053(jjayet) gid=8500(dba) groups=8500(dba),59031(oinstall)
    the problems seems relater to accessing /tmp
    as the local disk is not enough to use the default /tmp (the DB install will fail with full disk error as the local disk space is very low )
    I've created a partition from new disk to /tmp which I have then mounted (default is nfs3) :
    # mount /dev/xvdc1 /tmp
    # mount
    /dev/xvdc1 on /tmp type ext2 (rw)
    the result of DB install into /tmp is :
    # cd /tmp
    # ls -altr
    drwxr-xr-x 32 root root 4096 Apr 5 06:07 ..
    drwxr-xr-x 2 jjayet dba 4096 Apr 5 06:36 CVU_11.2.0.2.0_jjayet
    drwxrwxrwx 7 root root 4096 Apr 5 06:36 .
    if I umount /tmp but use the local /tmp
    re-running the DB installer as user jjayet it does not raise the error above
    and now local /tmp contains :
    # cd /tmp
    # ls -altr
    drwxr-xr-x 32 root root 4096 Apr 5 06:07 ..
    drwxr-x--- 10 jjayet dba 4096 Apr 5 06:25 OraInstall2012-04-05_06-25-28AM
    drwxr-xr-x 3 jjayet dba 4096 Apr 5 06:25 CVU_11.2.0.2.0_jjayet
    drwxrwxrwt 5 root root 4096 Apr 5 06:25 .
    do you know how to use tmp over nfs with user jjayet so that the DB can install properly ?
    it seems that the files created as user jjayet into mounted /tmp are not identified properly
    thks in advance
    jean

    thks for the pointer
    I found the post you mention but it does not help
    it does not explain the root cause of the problem but just propose a workaround to pass an option to installer which will popi\up an interactive messgae at install time
    as installation is done automatically through ADE / DTE I cannot use this workaround
    any expert in oracle DB install can help ?
    thks
    Jean

  • 11gr2 RAC install on RHEL fails with "failed to create or upgrade olr"

    New 11gr2 install on empty Red Hat Enterprise Linux 5.4 machine fails with "failed to create or upgrade olr"
    Error during config steps. First script ran OK (orainstRoot.sh) on both nodes.
    Second script failed on DB01, and I haven't run on DB02, as it's supposed to complete on DB01 first.
    [root@RiskmgmtDB01 oraInventory]# cd /u01/app/11.2.0/grid
    [root@RiskmgmtDB01 grid]# ./root.sh
    Running Oracle 11g root.sh script...
    The following environment variables are set as:
    ORACLE_OWNER= oracle
    ORACLE_HOME= /u01/app/11.2.0/grid
    Enter the full pathname of the local bin directory: [usr/local/bin]:
    Copying dbhome to /usr/local/bin ...
    Copying oraenv to /usr/local/bin ...
    Copying coraenv to /usr/local/bin ...
    Creating /etc/oratab file...
    Entries will be added to the /etc/oratab file as needed by
    Database Configuration Assistant when a database is created
    Finished running generic part of root.sh script.
    Now product-specific root actions will be performed.
    2010-11-12 10:35:13: Parsing the host name
    2010-11-12 10:35:13: Checking for super user privileges
    2010-11-12 10:35:13: User has super user privileges
    Using configuration parameter file: /u01/app/11.2.0/grid/crs/install/crsconfig_params
    Creating trace directory
    PROTL-16: Internal Error
    Command return code of 41 (10496) from command: /u01/app/11.2.0/grid/bin/ocrconfig -local -upgrade oracle oinstall
    Failed to create or upgrade OLR
    [root@RiskmgmtDB01 grid]#
    Looking on the net, anyone who has hit this has had a problem with permissions, so as suggested I ran:
    [root@RiskmgmtDB01 grid]# /usr/sbin/getenforce
    Disabled
    [root@RiskmgmtDB01 grid]# /usr/sbin/setenforce 0
    /usr/sbin/setenforce: SELinux is disabled
    [root@RiskmgmtDB01 grid]# /usr/sbin/getenforce
    Disabled
    As this is already set to disabled, I don't think it will help.
    The two other threads similar to this are:
    root.sh failed with signal 11 while installing 11gR2 grid infrastructure
    root.sh script fail to run on OEL5.4
    But neither works. I've raised a support request, but if anyone else has a bright idea ....
    Thanks, Duncan

    This document seems to apply: PROTL-16 Reported while Executing OCRCONFIG [ID 1123453.1]
    It recommends running CVU, but that showed no issues.
    So next step is the uninstall, as per: How to Proceed from Failed 11gR2 Grid Infrastructure (CRS) Installation [ID 942166.1]
    However "$GRID_HOME/crs/install/rootcrs.pl -verbose -deconfig -force -lastnode" fails:
    # /u01/app/11.2.0/grid/crs/install/rootcrs.pl -verbose -deconfig -force -lastnode
    2010-11-15 17:11:21: Parsing the host name
    2010-11-15 17:11:21: Checking for super user privileges
    2010-11-15 17:11:21: User has super user privileges
    Using configuration parameter file: /u01/app/11.2.0/grid/crs/install/crsconfig_params
    Can't open /etc/oracle/scls_scr/node01/root/ohasdrun for write: No such file or directory at /u01/app/11.2.0/grid/crs/install/s_crsconfig_lib.pm line 1021.
    So no further along yet ...

  • Install OCS 10.1.2 Infra DB failed with LDAP: error code 16 on Workspaces

    during install OCS Infrastructure DB OCS have error:
    ... processed key-value: logfile=/oracle/product/dbocs/workspaces/logs/cw_config_backend.log
    ... processed key-value: action=setup_backend
    ... processed key-value: oh=/oracle/product/dbocs
    ... processed key-value: oid=oid.domain
    ... processed key-value: oid_port=389
    ... processed key-value: oid_user_dn=cn=orcladmin
    ... processed key-value: oid_passwd=xxxxxx
    ... processed key-value: db_sn=ocs.domain
    ... processed key-value: dba_user=sys
    ... processed key-value: dba_passwd=xxxxxx
    ... processed key-value: cw_db_passwd=xxxxxx
    Attempting to set logfile to: /oracle/product/dbocs/workspaces/logs/cw_config_backend.log
    Processed oh=/oracle/product/dbocs
    BACKEND installation ...
    ... Trying to lookup database dn
    ... Obtain OID connection
    ...... Can not obtain OID ssl port.
    ...... OID port = "389"
    ...... Trying to establish a non-ssl connection. OID host "oid.domain", OID port "389", OID user dn "cn=orcladmin".
    ... OID connection created.
    ...... You must specify either db_dn or db_sn.
    ...... ldap search filter "(&(objectclass=orcldbserver)(orcldbglobalname=ocs.domain))"
    ...... Succesfully located database dn "cn=ocs,cn=OracleContext".
    ...... Database dn = "cn=ocs,cn=OracleContext"
    ... Validating existence and version of CW schema: "CWSYS" in database: "cn=ocs,cn=OracleContext".
    ... Obtain JDBC connect string
    ... JDBC connect string = "(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ocsoas.domain)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ocs.domain)))"
    ...derived: "jdbc_str=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ocsoas.domain)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ocs.domain)))".
    Opening JDBC connection: "jdbc:oracle:thin:sys/xxxxxx@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ocsoas.domain)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ocs.domain)))"
    Opening JDBC connection: "jdbc:oracle:thin:sys/xxxxxx@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ocsoas.domain)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ocs.domain)))"
    Unlocking schema and setting passwd: "CWSYS/xxxxxx".
    Opening JDBC connection: "jdbc:oracle:thin:sys/xxxxxx@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ocsoas.domain)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ocs.domain)))"
    ... Checking Workspaces container.
    ... Container "cn=CollaborativeWorkspaces,cn=Products,cn=OracleContext" already exist.
    ... Finish checking Workspaces container.
    ... Trying to create backend application entity in OID
    ...... Database dn = "cn=ocs,cn=OracleContext"
    ...... Backend entity name = "ocs"
    ...... Backend entity dn = "orclApplicationCommonName=ocs,cn=Database Instances,cn=CollaborativeWorkspaces,cn=Products,cn=OracleContext"
    ... Backend entries already exist. Cleanup old entries.
    deregisterProvisioningListener ...
    app dn = orclApplicationCommonName=ocs,cn=Database Instances,cn=CollaborativeWorkspaces,cn=Products,cn=OracleContext
    subscriber = dc=domain,dc=com
    ... Trying to remove entity "orclApplicationCommonName=ocs,cn=Database Instances,cn=CollaborativeWorkspaces,cn=Products,cn=OracleContext".
    ... Deleting "orclApplicationCommonName=ocs,cn=Database Instances,cn=CollaborativeWorkspaces,cn=Products,cn=OracleContext"
    Adding Workspaces application entity to: cn=Service Registry Viewers,cn=Groups,cn=OracleContext
    Adding Workspaces application entity to: cn=Service Registry Admins,cn=Groups,cn=OracleContext
    ... Insufficient privilege to create application entity "orclApplicationCommonName=ocs,cn=Database Instances,cn=CollaborativeWorkspaces,cn=Products,cn=OracleContext". Please check the user DN and password.
    javax.naming.directory.NoSuchAttributeException: [LDAP: error code 16 - One or more values for attribute uniquemember does not exist]; remaining name 'cn=Service Registry Admins,cn=Groups,cn=OracleContext'
    at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:3009)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2934)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2740)
    at com.sun.jndi.ldap.LdapCtx.c_modifyAttributes(LdapCtx.java:1373)
    at com.sun.jndi.toolkit.ctx.ComponentDirContext.p_modifyAttributes(ComponentDirContext.java:235)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.modifyAttributes(PartialCompositeDirContext.java:147)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.modifyAttributes(PartialCompositeDirContext.java:136)
    at javax.naming.directory.InitialDirContext.modifyAttributes(InitialDirContext.java:136)
    at oracle.workspaces.share.util.oid.OIDShareUtil.setEntryAttribute(OIDShareUtil.java:471)
    at oracle.workspaces.share.util.oid.OIDShareUtil.addMemberToGroup(OIDShareUtil.java:420)
    at oracle.workspaces.share.util.oid.OIDShareUtil.addMemberToGroupIgnoreDuplicateMember(OIDShareUtil.java:435)
    at oracle.workspaces.install.CwConfigOID.createBackendEntity(CwConfigOID.java:1205)
    at oracle.workspaces.install.CwConfigOID.registerBackend(CwConfigOID.java:449)
    at oracle.workspaces.install.CwConfig.regBackend(CwConfig.java:320)
    at oracle.workspaces.install.CwConfig.run(CwConfig.java:609)
    at oracle.workspaces.install.CwConfig.main(CwConfig.java:790)
    oracle.workspaces.install.CwCAException: Error while executing action: "setup_backend"
    Caused by: javax.naming.directory.NoSuchAttributeException: [LDAP: error code 16 - One or more values for attribute uniquemember does not exist]
    at oracle.workspaces.install.CwConfig.run(CwConfig.java:639)
    at oracle.workspaces.install.CwConfig.main(CwConfig.java:790)
    Caused by: javax.naming.directory.NoSuchAttributeException: [LDAP: error code 16 - One or more values for attribute uniquemember does not exist]; remaining name 'cn=Service Registry Admins,cn=Groups,cn=OracleContext'
    at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:3009)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2934)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2740)
    at com.sun.jndi.ldap.LdapCtx.c_modifyAttributes(LdapCtx.java:1373)
    at com.sun.jndi.toolkit.ctx.ComponentDirContext.p_modifyAttributes(ComponentDirContext.java:235)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.modifyAttributes(PartialCompositeDirContext.java:147)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.modifyAttributes(PartialCompositeDirContext.java:136)
    at javax.naming.directory.InitialDirContext.modifyAttributes(InitialDirContext.java:136)
    at oracle.workspaces.share.util.oid.OIDShareUtil.setEntryAttribute(OIDShareUtil.java:471)
    at oracle.workspaces.share.util.oid.OIDShareUtil.addMemberToGroup(OIDShareUtil.java:420)
    at oracle.workspaces.share.util.oid.OIDShareUtil.addMemberToGroupIgnoreDuplicateMember(OIDShareUtil.java:435)
    at oracle.workspaces.install.CwConfigOID.createBackendEntity(CwConfigOID.java:1205)
    at oracle.workspaces.install.CwConfigOID.registerBackend(CwConfigOID.java:449)
    at oracle.workspaces.install.CwConfig.regBackend(CwConfig.java:320)
    at oracle.workspaces.install.CwConfig.run(CwConfig.java:609)
    ... 1 more
    javax.naming.directory.NoSuchAttributeException: [LDAP: error code 16 - One or more values for attribute uniquemember does not exist]; remaining name 'cn=Service Registry Admins,cn=Groups,cn=OracleContext'
    at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:3009)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2934)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2740)
    at com.sun.jndi.ldap.LdapCtx.c_modifyAttributes(LdapCtx.java:1373)
    at com.sun.jndi.toolkit.ctx.ComponentDirContext.p_modifyAttributes(ComponentDirContext.java:235)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.modifyAttributes(PartialCompositeDirContext.java:147)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.modifyAttributes(PartialCompositeDirContext.java:136)
    at javax.naming.directory.InitialDirContext.modifyAttributes(InitialDirContext.java:136)
    at oracle.workspaces.share.util.oid.OIDShareUtil.setEntryAttribute(OIDShareUtil.java:471)
    at oracle.workspaces.share.util.oid.OIDShareUtil.addMemberToGroup(OIDShareUtil.java:420)
    at oracle.workspaces.share.util.oid.OIDShareUtil.addMemberToGroupIgnoreDuplicateMember(OIDShareUtil.java:435)
    at oracle.workspaces.install.CwConfigOID.createBackendEntity(CwConfigOID.java:1205)
    at oracle.workspaces.install.CwConfigOID.registerBackend(CwConfigOID.java:449)
    at oracle.workspaces.install.CwConfig.regBackend(CwConfig.java:320)
    at oracle.workspaces.install.CwConfig.run(CwConfig.java:609)
    at oracle.workspaces.install.CwConfig.main(CwConfig.java:790)
    What should i do?
    help.
    Thanks

    closed
    Re: Install OCS 10.1.2 Infra DB failed with LDAP: error code 16 on Workspac

  • IAS install fails with dbca

    Hello,
    I'm trying to set up a test installation of iAS 9.0.2.0.0 on Tru64 UNIX 5.1, and while the installation of the iAS infrastructure runs without problems up to the point where the configuration assistants are started, the Oracle Database Configuration Assistant (dbca) fails with the following error message:
    ORA-00101: invalid specification for system parameter DISPATCHERS
    As the database creation is a central point of the configurations, lots of the other configuration assistants fail too, and the installation is unusable.
    Can somebody help me, please?

    Event Viewer Error message from my install effort:
    - <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    - <System>
    <Provider Name="MsiInstaller" />
    <EventID Qualifiers="0">10005</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2011-02-17T15:52:27.000000000Z" />
    <EventRecordID>28702</EventRecordID>
    <Channel>Application</Channel>
    <Computer>BVC-GDLSVH1.XXX.XXX</Computer>
    <Security UserID="S-1-5-21-4114246797-1601414279-1478525695-1113" />
    </System>
    - <EventData>
    <Data>Product: Java(TM) 6 Update 23 -- Internal Error 2753. regutils.dll</Data>
    <Data>(NULL)</Data>
    <Data>(NULL)</Data>
    <Data>(NULL)</Data>
    <Data>(NULL)</Data>
    <Data>(NULL)</Data>
    <Data />
    <Binary>7B32364132344145342D303339442D344341342D383742342D3246383332313630323346467D</Binary>
    </EventData>
    </Event>
    Edited by: user1894731 on Feb 17, 2011 7:55 AM

Maybe you are looking for

  • Numeric Error Not raise in case of editor field

    I have a strange problem. I have two fields, first one is Numeric field, and second one text editor. If i enter character in numeric field and press tab or enter curssor automaticaly go to text editor field, whitout raising any error, Even i used num

  • 2010 15" HiRes Anti-Glare video and photo viewing issues

    In January 2012 I bought my MBP through Apple's refurb dept. After some weird glitchy things, which a recent format may have fixed, and some overall speed issues that i cant figure out, my monitor seems to suck. Movies are WAY too dark, and while I c

  • Web Item Analysis Modification Modules

    Samples provided by SAP for Web Item Analysis Modification are 4) Negative Number module (com.sap.ip.bi.rig.NegativeNumber) Depicts negative numbers in a column or entire table in red. Hi SDN Community, I have recently been exposed to Web Interface i

  • Menubar hidden in webgui

    Hi All, I am creating a transaction (transaction code : ME51N) iview  of type webgui(SAP GUI for HTML),  i am not getting the header part(menu bar, save buttons etc ) in my view, Please help me solving this issue Regards Pradeep P N

  • E-Recruitment & R/3 Recruitment

    Hi, 1.) Is it possible to implement both - E-Recruitment & R/3 based Recruitment for one particular client? meaning - is it possible techinically? Assumptions: 1.) E-rec is on a seperate server & R/3 based recruitment is on a seperate server 2.) Is S