Cannot install snort, install script does not exist?

Hi!
I'm trying to install snort on a newly installed arch system.
It didn't go well..
Targets (1): snort-2.8.2.1-8
Total Download Size: 0.00 MB
Total Installed Size: 8.78 MB
Proceed with installation? [Y/n] y
checking package integrity...
(1/1) checking for file conflicts [#########################################################################################################################################################] 100%
(1/1) upgrading snort [#########################################################################################################################################################] 100%
/tmp/alpm_B2G8ys/.INSTALL: line 6: var/log/snort/alert: No such file or directory
error: scriptlet failed to execute correctly
Anyone knows what to do?
/Diddi

try this:
cd / # just in case (might work or not)
pacman -Scc
sudo pacman -Syyuu
sudo pacman -S snort
the flags usage:
  -Scc          to clean your downloaded packages (this does not "uninstall" them, just clean them)
  -Syyuu      to upgrade

Similar Messages

  • RW Cronacle : JCS-02041: cannot wait on job that does not exist (yet)

    Hi all,
    We are facing a new problem when submitting our maintaining variants scripts.
    The script failed and returns the error
    JCS-02041: cannot wait on job that does not exist (yet)
    Have you ever met this kind of error ? What kind of issue could it be ?
    Thank you very much for you answers.
    Regards,
    Scheduling team

    Anton,
    Here are the informations (I hope that will help you) :
    JCS Object Database   7.0.3.43 
    Cronacle Repository
    JCS Redwood Reports Module     7.0.2 
    Cronacle Reports Module    
    JCS Redwood Mail Module     7.0.2 
    Cronacle Mail Module  
    JCS PM4W   7.0.2 
    Cronacle Process Manager for Web   
    JCS RSI   7.0.4   SP3 production
    Cronacle for SAP solutions
    JCS Modules      7.0.4       SP3 production
    Cronacle Module Installer    
    We didn't change many things in the varedit script, we have just deleted some parameters we don't maintain :
    create or replace script "RSI"."C4_SC_POA0_J_000_00_VE_FEN4A"
    ( "INSTANCE"        in varchar2(15)     not null
                        description         'SAP instance'
                        input format        'UPPERCASE'
                        default             expr('EP1'
    , "CLIENT"          in varchar2(3)      not null
                        description         'Client'
                        default             expr('900'
    , "ABAP_PROGRAM_NAME" in varchar2(32)     not null
                        description         'Abap program name'
                        input format        'UPPERCASE'
                        default             expr('abap_program_name'
    , "ABAP_VARIANT_NAME" in varchar2(14)     not null
                        description         'Abap variant name'
                        input format        'UPPERCASE'
                        default             expr('abap_program_variant'
    , "PAR_P_NAME"      in varchar2(128)    null
                        description         'P_NAME'
                        groupname           "Option"
    , "PAR_P_PATH"      in varchar2(128)    null
                        description         'P_PATH'
                        groupname           "Option"
                        default             expr('/tmp/'
    , constraint        "VARIANT_LIST"
                        prequery            0 rows
                        message             'Please choose a valid variant combination'
                        optional
                        check               (
                        select  apv.abap_variant_name
                        into    ABAP_VARIANT_NAME
                        from    rsi_program_variants_view apv
                        where   apv.instance          = :INSTANCE
                        and     apv.client            = :CLIENT
                        and     apv.abap_program_name = :ABAP_PROGRAM_NAME
    Edited by: Architecture Architecture on Dec 7, 2009 5:59 PM

  • Cannot retrieve table metadata - Table does not exist: ODP source 0WRKCNT_CATG_TEXT does not exist

    Hi, when i able to import the 0WRKCNT_CATG_TEXT extractor into source system i am getting the above bug Cannot retrieve table metadata - Table does not exist: ODP source <0WRKCNT_CATG_TEXT> does not exist, i have been checked in RSA5 T code to check the object is active or not, its active and its available in ROOSATTR table with enabled mode,but still its showing the error, can anyone help on this ..

    Hi Airings,
    'ORA-00942: table or view does not exist'
    According to the error message, it seems that the migrating table or view does not exist in the database, or SSMA does not have access to it. To troubleshoot the issue, please check the following things.
     1. Verify that if the spelling of the table or view name is correct.
     2. If the table or view exists but is in a different schema from the current schema where the SQL is executing (in other word, the table doesn’t own by you, but owned by other user), the ORA-00942 error will return too. Resolve this by
    explicitly reference the table or view by specifying the schema name (schema_name.table_name).
    3. SSMA queries some additional catalog tables that you may not have permission to, please make sure that you grant the account permission to
     read sys.mlog$. For more details, please review this similar thread:
    Bug in SSMA For Oracle 6.0 for non-dba Oracle user.
    Reference:
    ORA-00942 Table or View Does Not Exist Oracle Error
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • HT5312 how do i delete WRONG cloud ID from my ipod touch?  it was typed WRONG and I cannot delete it because it does NOT exist and I don't know password for email accoutn that does not exist

    how do i delete WRONG cloud ID from my ipod touch?  it was typed WRONG and I cannot delete it because it does NOT exist and I don't know password for email accoutn that does not exist

    someone please help, I can't even delete content because it prompts me for a password for an account that I mistyped - wth?????

  • Get-Item: Cannot find path ' ' because it does not exist. While running Powershell script.

    I am trying to run a PowerShell script to upload files into a SharePoint site in an Azure environment...the script works fine on my local machine, but every time I run it in Azure (remotely), I get errors. Here is what my simple script looks like...
    if ( (Get-PSSnapin -Name Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue) -eq $null )
    Write-Host "Loading Sharepoint Module "
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
    Add-PSSnapin -Name Microsoft.SharePoint.PowerShell
    if ( (Get-PSSnapin -Name Microsoft.SharePoint.PowerShell) -eq $null )
    Write-Host "Failed to load sharepoint snap-in. Could not proceed further, Aborting ..."
    Exit
    #Script settings
    $webUrl = "http://sampleWebUrl"
    $docLibraryName = "My Documents"
    $docLibraryUrlName = "My%20Documents"
    $localFolderPath = get-childitem "C:\Upload\Test Upload\My Documents\" -recurse
    $contentType = "ContenttType1"
    #Open web and library
    $web = Get-SPWeb $webUrl
    write-host "Web:" $web
    $docLibrary = $web.Lists[$docLibraryName]
    write-host "docLibrary:" $docLibrary
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    write-host "files:" $files
    If ($contentType = "ContenttType1")
    #Open file
    $fileStream = ([System.IO.FileInfo] (Get-Item $file.FullName)).OpenRead()
    # Gather the file name
    $FileName = $File.Name
    #remove file extension
    $NewName = [IO.Path]::GetFileNameWithoutExtension($FileName)
    #split the file name by the "-" character
    $FileNameArray = $NewName.split("_")
    $check = $FileNameArray.Length
    #Add file
    $folder = $web.getfolder($docLibrary.rootFolder.URL)
    write-host "Copying file " $file.Name " to " $folder.ServerRelativeUrl "..."
    $spFile = $folder.Files.Add($folder.Url + "/" + $file.Name, [System.IO.Stream]$fileStream, $true)
    $spItem = $spFile.Item
    write-host "Success"
    write-host "SP File:" $spFile
    write-host "SP Item" $spItem
    #populate columns
    $spItem["Column1"] = $FileNameArray[0]
    $spItem["Column2"] = $FileNameArray[1]
    $spItem.Update()
    $fileStream.Close();
    Again, I can run this on my local machine and it works just fine, but when I attempt to run it on the Azure environment I get this error...
    Get-Item : Cannot find path 'C:\powershellscripts\12653_B7045.PDF' because it does not exist.
    At C:\PowerShellScripts\Upload-FilesIntoSharePointTester.ps1:32 char:42
    +     $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    +                                          ~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (C:\powershellscripts\12653_B7045.PDF:String) [Get-Item], ItemNotFoundException
        + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetItemCommand
    What strikes me first is the fact that the file its looking for is in the "C:\Upload\Test Upload\My Documents\" directory, but the error keeps saying "C:\powershellscripts\" which is where my script resides and not the files I want to
    upload into SharePoint. When I step through the code, all the variables are holding the correct values. The $localFolderPath shows the name of files that I am attempting to upload, so it recognizes them. But once I step through this particular line of code,
    the error occurs...
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    Is this an error caused because I am remoting into the Azure environment? Has anyone dealt with this issue before? I would really appreciate the help. Thanks
    Update: quick thing I noticed is that these two lines of code are returning null values. Again, is this handled differently in Azure or remotely? I ask cause this is the way I know how to do this, locally.
    $docLibrary = $web.Lists[$docLibraryName]
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()

    "...square brackets are wildcard characters in Windows PowerShell..."
    When you use cd without a parameter it uses the -Path parameter. In this case you'll have to escape the square brackets so they are not considered wildcards. Each of the commands in the first example does the exact same thing.
    cd 'Learn PowerShell `[Do Whatever`]'
    cd -Path 'Learn PowerShell `[Do Whatever`]'
    cd (or Set-Location) also has a literal path parameter (-LiteralPath) that does not require using an escape character (`) before each of the brackets. Hope this helps.
    cd -LiteralPath 'Learn PowerShell [Do Whatever]'

  • Error during install PCK - Group GUESTS does not exist

    Hi,
    I'm installing PCK 3.0 SR1 on Web AS 6.40 Java SR1 and getting an error during phase "Create J2EE User". The following error is from the java.log file:
    --- INITIALIZE ---
    --- STARTING SETTING PROPERTIES ---
    --- STARTING USER CREATION ---
    com.sap.security.core.server.userstore.UserstoreException: Could not add user pckuser to group GUESTS
         at com.sap.security.core.server.userstore.GroupContextUME.engineAddUserToGroup(GroupContextUME.java:314)
         at com.sap.engine.services.security.userstore.context.GroupContext.addUserToGroup(GroupContext.java:168)
         at com.sap.engine.services.security.userstore.RemoteGroupContextImpl.addUserToGroup(RemoteGroupContextImpl.java:112)
         at com.sap.engine.services.security.userstore.RemoteGroupContextImplp4_Skel.dispatch(RemoteGroupContextImplp4_Skel.java:86)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:294)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:183)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:119)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:159)
    Caused by: com.sap.security.api.NoSuchGroupException: Group with id="Group "GUESTS" does not exist." does not exist
         at com.sap.security.core.imp.GroupFactory.getGroupByUniqueName(GroupFactory.java:853)
         at com.sap.security.core.server.userstore.GroupContextUME.engineAddUserToGroup(GroupContextUME.java:309)
         ... 12 more
    predecessor system -
    com.sap.security.core.server.userstore.UserstoreException: Could not add user pckuser to group GUESTS
         at com.sap.security.core.server.userstore.GroupContextUME.engineAddUserToGroup(GroupContextUME.java:314)
         at com.sap.engine.services.security.userstore.context.GroupContext.addUserToGroup(GroupContext.java:168)
         at com.sap.engine.services.security.userstore.RemoteGroupContextImpl.addUserToGroup(RemoteGroupContextImpl.java:112)
         at com.sap.engine.services.security.userstore.RemoteGroupContextImplp4_Skel.dispatch(RemoteGroupContextImplp4_Skel.java:86)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:294)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:183)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:119)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:159)
    Caused by: com.sap.security.api.NoSuchGroupException: Group with id="Group "GUESTS" does not exist." does not exist
         at com.sap.security.core.imp.GroupFactory.getGroupByUniqueName(GroupFactory.java:853)
         at com.sap.security.core.server.userstore.GroupContextUME.engineAddUserToGroup(GroupContextUME.java:309)
         ... 12 more
    Has anyone experienced the same problem? what is the solution?
    Thank you.
    Regards,
    Robert

    Hi Robert,
    Check note 792456.
    Regards,
    Vijay

  • 11g R2 -silent install: "Template General_Purpose.dbc does not exist"

    I'm working in an environment where no X-Windows/GUI is permitted; therefore, I'm attempting to perform a -silent install of 11g R2 on RHEL 5.3 and am finding the screen output to my terminal window less than helpful. Fortunately, a thorough review of the install actions log provides what appears to be my problem.
    The screen output I receive is as follows (I've added some line breaks to make it more readable):
    (oracle@blade2-1 database)$ cd /opt/oracleStagingArea/Oracle11gR2/11.2.0.1.0/Disk1/database
    (oracle@blade2-1 database)$ ./runInstaller -silent -responseFile /home/oracle/ResponseFiles/11gR2/ORCL11GD_enterprise_11201.rsp
    Starting Oracle Universal Installer...
    Checking Temp space: must be greater than 80 MB. Actual 91127 MB Passed
    Checking swap space: must be greater than 150 MB. Actual 8000 MB Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2009-09-14_01-25-28PM. Please wait ...
    (oracle@blade2-1 database)$
    You can find the log of this install session at:
    /u01/app/oracle/oraInventory/logs/installActions2009-09-14_01-25-28PM.log
    That's it - no indication as to whether the installation was successful or failed or whether the NETCA/DBCA/etc. were successful or not.
    I found that a listener existed after the install:
    (oracle@blade2-1 database)$ ps -ef | grep tns
    oracle 22597 1 0 13:29 ? 00:00:00 /u01/app/oracle/product/11.2.0/db_1/bin/tnslsnr LISTENER -inherit
    My instance didn't appear to be up, though:
    (oracle@blade2-1 database)$ ps -ef | grep ORCL11GD
    oracle 22776 19142 0 13:39 pts/0 00:00:00 grep ORCL11GD
    So, I checked the /u01/app/oracle/oraInventory/logs/installActions2009-09-14_01-25-28PM.log to see what it revealed. It shows me the following for the DBCA:
    INFO: Started Plugin named: Oracle Database Configuration Assistant
    INFO: Found associated job
    INFO: Starting 'Oracle Database Configuration Assistant'
    INFO: Starting 'Oracle Database Configuration Assistant'
    INFO: Executing DBCA
    INFO: Command /u01/app/oracle/product/11.2.0/db_1/bin/dbca -silent -createDatabase -templateName General_Purpose.dbc -sid ORCL11GD -gdbName orcl11gd.blade2-1.mycompany.com -emConfiguration LOCAL -storageType FS -datafileDestination /u02/oradata -datafileJarLocation /u01/app/oracle/product/11.2.0/db_1/assistants/dbca/templates -responseFile /home/oracle/ResponseFiles/11gR2/ORCL11GD_enterprise_11201.rsp -characterset WE8ISO8859P15 -obfuscatedPasswords false -sampleSchema false -oratabLocation /u01/app/oracle/product/11.2.0/db_1/install/oratab -automaticMemoryManagement true -totalMemory 2048 -maskPasswords false -oui_internal
    INFO: ... GenericInternalPlugIn.handleProcess() entered.
    INFO: ... GenericInternalPlugIn: getting configAssistantParmas.
    INFO: ... GenericInternalPlugIn: checking secretArguments.
    INFO: ... GenericInternalPlugIn: starting read loop.
    INFO: Read: SYS_PASSWORD_PROMPT
    INFO: Processing: SYS_PASSWORD_PROMPT for argument tag -sysPassword
    INFO: Read: SYSTEM_PASSWORD_PROMPT
    INFO: Processing: SYSTEM_PASSWORD_PROMPT for argument tag -systemPassword
    INFO: Read: DBSNMP_PASSWORD_PROMPT
    INFO: Processing: DBSNMP_PASSWORD_PROMPT for argument tag -dbsnmpPassword
    INFO: Read: SYSMAN_PASSWORD_PROMPT
    INFO: Processing: SYSMAN_PASSWORD_PROMPT for argument tag -sysmanPassword
    INFO: End of argument passing to stdin
    INFO: Read: Template General_Purpose.dbc does not exist. Please specify an existing template for database creation.
    INFO: Completed Plugin named: Oracle Database Configuration Assistant
    INFO: Oracle Database Configuration Assistant failed.
    INFO: Oracle Database Configuration Assistant failed.
    I don't see a template named "General_Purpose.dbc" in the $ORACLE_HOME/dbca/templates directory:
    (oracle@blade2-1 database)$ cd /u01/app/oracle/product/11.2.0/db_1/assistants/dbca/templates
    (oracle@blade2-1 database)$ ls -lrt
    total 23216
    -rw-r--r-- 1 oracle oinstall 11492 Feb 25 2009 New_Database.dbt
    -rwxr-xr-x 1 oracle oinstall 1179648 Aug 14 03:01 example.dmp
    -rwxr-xr-x 1 oracle oinstall 22536192 Aug 14 03:01 example01.dfb
    Any suggestions would be welcomed!

    Hans: None at all, unfortunately.
    Srini: I obtained a copy of the note and read through it. It does look as though I should be able to run the DBCA in -silent mode to create a template, so no GUI needed. Thanks again!
    On a side note: Did anybody else notice the "General_Purpose.dbc" template missing from the $ORACLE_HOME/dbca/templates directory after an 11g R2 software install on RHEL 5.3? I'm beginning to suspect that not all components were installed as expected during the software installation. the oraInstall<Date/Time>.err file is full of errors such as the following:
    java.io.FileNotFoundException: /opt/oracleStagingArea/Oracle11gR2/11.2.0.1.0/Disk1/database/stage/Components/oracle.rdbms.install.seeddb/11.2.0.1.0/1/DataFiles/filegroup2.jar (No such file or directory)
    All of these errors are complaining about only the following 4 compoments:
    - oracle.ctx
    - oracle.sysman.console.db
    - oracle.owb.rsf
    - oracle.rdbms.install.seeddb
    Upon investigation, I found that there is no oracle.ctx, oracle.sysman.console.db, oracle.owb.rsf, or oracle.rdbms.install.seeddb under /opt/oracleStagingArea/Oracle11gR2/11.2.0.1.0/Disk1/database/stage/Compoments. Instead, the grouping is located under /opt/oracleStagingArea/Oracle11gR2/11.2.0.1.0/Disk2/database/stage/Components.
    It seems that I may have staged the media incorrectly in two separate directories. Should I have unzipped both files into the same directory instead of separating them out?

  • Solaris 11: configuring/installing/verifying zone: dataset does not exist

    Hello all, I am working my way through setting up a dataset via the instructions listed here
    http://docs.oracle.com/cd/E23824_01/html/821-1460/z.conf.start-85.html
    http://docs.oracle.com/cd/E23824_01/html/821-1460/z.inst.task-2.html
    I am now trying to verify my zone (*zoneadm -z stfsun1 verify*) and I get the following error message:
    "*could not verify zfs dataset waas/stfsun1: dataset does not exist*
    *zoneadm: zone stfsun1 failed to verify*"
    I did a search but nothing of benefit showed up. Can anyone point me in the right direction?
    Edited by: thisisbasil on May 22, 2012 9:04 AM

    zonecfg -z stfsun1 info
    zonename: stfsun1
    zonepath: /zones/stfsun1
    brand: solaris
    autoboot: true
    bootargs: -m verbose
    file-mac-profile:
    pool:
    limitpriv: default,sys_time
    scheduling-class: FSS
    ip-type: exclusive
    hostid: 80825649
    fs-allowed:
    [max-sem-ids: 10485200]
    fs:
         dir: /usr/local
         special: /opt/local
         raw not specified
         type: lofs
         options: []
    anet:
         linkname: net0
         lower-link: auto
         allowed-address not specified
         configure-allowed-address: true
         defrouter not specified
         allowed-dhcp-cids not specified
         link-protection: mac-nospoof
         mac-address: random
         mac-prefix not specified
         mac-slot not specified
         vlan-id not specified
         priority not specified
         rxrings not specified
         txrings not specified
         mtu not specified
         maxbw not specified
         rxfanout not specified
    anet:
         linkname: net1
         lower-link: auto
         allowed-address not specified
         configure-allowed-address: true
         defrouter not specified
         allowed-dhcp-cids not specified
         link-protection: mac-nospoof
         mac-address: random
         mac-prefix not specified
         mac-slot not specified
         vlan-id not specified
         priority not specified
         rxrings not specified
         txrings not specified
         mtu not specified
         maxbw not specified
         rxfanout not specified
    device:
         match: /dev/wifi/*
         allow-partition not specified
         allow-raw-io not specified
    device:
         match: /dev/ipnet/*
         allow-partition not specified
         allow-raw-io not specified
    device:
         match: /dev/*dsk/*
         allow-partition not specified
         allow-raw-io: true
    dedicated-cpu:
         ncpus: 1
         importance: 10
    capped-memory:
         physical: 1G
         [swap: 2G]
         [locked: 500M]
    attr:
         name: comment
         type: string
         value: "This is the CodeTEST work zone."
    dataset:
         name: waas/stfsun1
         alias: stfsun1
    rctl:
         name: zone.max-swap
         value: (priv=privileged,limit=2147483648,action=deny)
    rctl:
         name: zone.max-locked-memory
         value: (priv=privileged,limit=524288000,action=deny)
    rctl:
         name: zone.max-sem-ids
         value: (priv=privileged,limit=10485200,action=deny)
    Edited by: thisisbasil on May 22, 2012 9:56 AM

  • ECC 6.0 IDES install requires disk that does not exist?

    Hello all,
    When doing the installation, there is one portion that asks for:
    Java Component Netweaver 7.0 SR3
    I am doing an ECC 6.0 IDES install for Oracle/ Linux.
    In the listing, I only see:
    51033513 NW 7.0 SR3 SP14 Java Based SW Comp
    *but this does not work *
    What is the correct one to use?
    TIA

    Hi and thanks,
    In the past, I have installed an ECC 6.0 IDES (ABAP Stack only) on an Oracle/Linux system. This worked out fine.
    Now, I am using the ECC 6.0 IDES collection set again except I am trying to install all of the EP Content (XSS - ESS/MSS)  as well (requiring both ABAP + JAVA stacks).
    So, again, I am trying to do ECC 6.0 IDES and EP on the same box but in one installation run (one SID and not 2 different SIDs)
    Is this possible?
    Also, you mentioned:
    >
    vamshi polasa wrote:
    >
    You need to specify the BS java component and the Java components path. You can downlad the files from the markt place.
    For the Linux ECC 6.0 IDES, what would the names of these items??? From the entire list of CDs, which ones would I choose?
    TIA

  • DB instance Install stops - account user does not exist

    Hi all,
    We had a problem with our hostname being too long (15 characters), and did not realize it until we were in the middle of the database instance installation and disp+work.exe could not start. We tries all tips about restarting SAPInst, rebooting server etc. to no avail.
    We then changed the hostname on Windows 2003, changed the hostnames in the SAP profiles and changed the service via sapstartsrv.exe. When we started SAPInst again, user account "old hostname"\<sapsid>adm did not exist. We need to change the user account to reflect the new hostname. How can this be done? We have tried the user administration in Windows, but did not find a way.
    Please let me know if you have any ideas.
    Regards,
    Thomas

    nevermind...
    null

  • Printpocessor does not exist

    I have the following problem. After updating Windows on three computer the printerspooler stopped and the printers disappeared. Restarting the printerspooler did not work. I deleted all the drivers and reinstalled my printer software (Samsung Laser and HP PHotosmart 5510). The Photosmart 5510 does have I yello '!' when looking at the printers in the configuration screen. Reinstalling without firewall did not solve the problem.
    The installation software says their is no connection. However I can ping the printer and when I type the IP adress in a browser I see the printer and it tells the wireless connection is ok. However I cannoit see the printer when going to word of notepad. When I tried to add the printer form Notepad I got the following error: (translated from Dutch tot English:
    Cannot install the printer, printprocessor does not exist.
    How do I solve this problem?

    I hope I can help but I need to ask a few questions first. When you say updating Windows, do you mean Windows 7, Windows XP, or Windows Vista?  Also, is it that the problem you are having is with the print spooler or is it that the software will not re-install?  I assume the print spooler was the original problem and now you can not install the printer.  What is the IP address of the printer?  Some can be valid and some not.
    Here is a document from Microsoft regarding the PrintProcessor error message. Answer those questions for me if this doesn't help.
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • PS Elements 11 says Redemption Code does not exist

    Just bought and have activated receipt. Install says Redemption Code does not exist.

    See if this FAQ helps you:
    http://helpx.adobe.com/x-productkb/policy-pricing/serial-number-retrieval-process-faq.html

  • /grub/pxegrub does not exist, invalid boot image

    hi all
    i'm having a small prob when trying to jumpstart an x86 client, with my sparc server.
    any help ?
    i think it's simple, i have to install x86 bootfiles on the server, or something, but how to do that ?
    thanks
    here's my error in detail :
    [599][root@srv-parnode2][Tools]> ./add_install_client \
    -d \
    -e 00:e0:81:58:af:c8 \      -s 10.211.0.2:/DATA2/export/jumpstart/install \
    -s 10.211.0.2:/DATA2/export/jumpstart/install \
    -c 10.211.0.2:/DATA2/export/jumpstart/config \
    -p 10.211.0.2:/DATA2/export/jumpstart/config i86pcadd_install_client: /DATA2/export/jumpstart/install/boot/grub/pxegrub does not exist, invalid boot image
    [601][root@srv-parnode2][Tools]>

    nm, i found my prob, you can close the thread :)

  • Conflicts in DOE when the object does not exist in CDS.

    Hi all.
    SCENARIO:
    I have implemented a SWCV with only a DO ( backend triggered). It has a Node structure with only one child structure.
    My DO has three function:
    - GETLIST:  return a table with objects from R3  identified by WCRN.
    - GETDETAIL: For each register from getlist, return a list of child registers with state : IMP or SEÑ.
                        This state in R3 may be IMP, SEÑ o NORM (but in devices, only I want them in state IMP o SEÑ)
    - MODIFY: modify the state for a child register.
    EXAMPLE:
    For example, I create a parent object in R3 with 3 children registers with state IMP. This parent register with his three children registers are upload to CDS.  When I syncronize, I obtain them in my device.
    PROBLEM:
    The problem starts when I modify the state to NORM of any child register in R3.  Then, in DOE, this child register is deleted in CDS becouse as I have said before, the function GETDETAIL only returns registers in state IMPS o SEÑ. Automatically the queue
    of my device is update too. Before syncronize my device, I change the state to SEÑ of the tree children registers in PDA. Then when I syncronize, the process tries to update then in CDS but one of this child register does not exist in DOE so I obtain the error text below in DOE:
    Mesage: "Cannot update/delete object that does not exist in the CDS; node 'ZMOB_DESC_ETIQUETA' "
    Service Name:  KEYMAP_SERVICE_BV  And in my Device, the child which generated the conflict does not exist (this is oK) but I continue having the others two children registers with the same state that I modified before syncronizing (SEÑ) while in R3 those two states are IMP.
    I have tested to modify the 3 posibilities of conflict detection scheme of the DO but the problem continues.
    I would like to know if there is any posibility or configuration to obtain the next scenario:  when this conflict will occurs, GETDETAIL will run and depending on which source will have preference:
    1- DEVICE PREFERENCE - the state from children registers in R3 will be updated to SEÑ.
    2 - R3 PREFERENCE - the state from my children registers in the device will be the same as in R3 (IMP).
    but never never never  never will happens like now ( differente state in R3 and PDA after syncronizing)
    Best regards
    Edited by: Maria Elena Fernandez on Feb 10, 2010 12:52 PM

    Hi again Oliver.
    Are you sure that ROW-LEVEL Conflict handling should detect the row with conflict and download the others two child register trought GETDAIL?
    I've just checked it again but it continues without working. After the conflict, none child is downloaded to my device.
    According to your two opcions:
    1- Imposible to avoid that.  It's a customer's requirement that they can modify states by R3 and Devices.
    2- Imposible too becouse we've already implemented the swcv in a production scenario. The application is already running and to change the model suppose a long time.
    I explain you the scenario again with an graphical example:
    INIITIAL STATE:  ( Device)
    parent structure :  ID1(key), date,                                 
    child structure:        ID1, 1, IMP (status)                                 
                                            ID1, 2, IMP (status)                                
                                            ID1, 3, IMP (status)                                 
    INITIAL STATE ( R3).
    ID1(key), date, ....
      -  ID1, 1, IMP(status)
      -  ID1, 2, IMP(status)
      -  ID1, 3, IMP (status)
    After this, I modified in R3->   ID1, 1, IMP  to  ID1, 1, NOR
    Then, GETDETAIL starts and deletes that register in DOE.
    Now I change the 3 children register in Device
      ID1, 1, IMP     -->  ID1, 1, SEÑ                                       
      ID1, 2, IMP     -->  ID1, 2, SEÑ                                   
      ID1, 3, IMP     -->   ID1, 3, SEÑ          
    After I syncronice,  FINAL STATE ( Device)
    parent structure :  ID1(key), date, ....                             
         child strucuture:                                                                               
    - ID1, 2, SEÑ (status)                             
                                     - ID1, 3, SEÑ (status)            
    FINAL STATE ( R3)
       ID1(key), date, ....
            -  ID1, 1, NORM(status)
            -  ID1, 2, IMP(status)
            -  ID1, 3, IMP (status)
    And that is the problem, different states between R3 and device.   I should need that the state in device for the others two children will be also IMP if R3 has preference or the two children will be SEÑ in R3 if the device has preference. But Now neither children in R3 nor children in Device are updated . Only the first which generate the conflict is deleted from device ( normal because it was still in the queue from the device before syncronice.
    Best regards.
    Edited by: Maria Elena Fernandez on Feb 11, 2010 8:32 AM
    Edited by: Maria Elena Fernandez on Feb 11, 2010 8:43 AM

  • I cannot update or install updates on itunes. It says that the location for that file does not exist. I cant even uninstall itunes as the same error message comes up.

    I cannot update or install updates on itunes. It says that the location for that file does not exist. I cant even uninstall itunes as the same error message comes up.

    Hi vindog60,
    Thank you for using Apple Support Communities.
    To troubleshoot this issue where you get an installation error with iTunes on your Windows PC, please follow the steps in the article linked to below.
    Issues installing iTunes for Windows - Apple Support
    Cheers,
    Alex H.

Maybe you are looking for

  • I need help to recover/relink mail after archive and install

    I am helping my friend fix her 15" G4 PowerBook after memory failures caused many crashes. There was no recovering short of a reinstall via "archive and install". All that worked great, but now Mail doesn't recognize the accounts, mailboxes, signatur

  • HP ProBook 6470b & 128 Gb SD card

    How can I find if my laptop HP ProBook 6470b is compartible with 128 Gb SD cards like at link below? QUMOX SD XC 128 GB Class 10 UHS-I http://www.amazon.de/128GB-Secure-Digital-Speicherkarte-HighSpeed/dp/B00JAXVUSO/ref=pd_cp_computers_... Thank you i

  • Safari dosen't play videos on the apple site what can i do?

    i am using mavericks and ever since i updated safari seems to be running very slow any ideas??

  • How to save psd file to iMac

    Can someone please help me.... Im very new to iMac as Ive always had a PC... My question is... I have created a document using Photoshop Elements 9, but havent got a clue how or where to save the .psd file. I thought I would be able to select iPhoto

  • App Store, Safari, iTunes and FaceTime keep crashing?

    The following apply to the App Store, Safari and iTunes: I can click on the icons for these and they'll start to load, and then just crash. They just close themselves out. Facetime: I can call someone, and the second they accept, Facetime crashes. Cl