Invalid configuration for device 3

Hi all,
I have set up a nested lab with three esxi hosts and two datastores connected with Microsoft iscsi target server. I know nested vm's are not supported but I am trying to set up this lab because I am supporting a real VMware environment and I would like to be able to test certain things before I break anything so it is important. I get this error when trying to create a VM "invalid configuration for device 3".  Anyone know how I can find out where the problem is?
Thanks

Please provide some more details about the environment, i.e. nested on what (VMware Workstation, ESXi, ...) Which version (host OS, guest OS, Hypervisors) do you use? How did you configure  networking for the nested hosts (stanard vSwitch, Distributed switches)? What may help are the configuration (.vmx) files for the nested ESXi hosts, so please attach them to a reply post.
André
Note: Discussion moved from vSphere Newbie to Nested Virtualization

Similar Messages

  • Invalid configuration for instance svc:/network

    My system wont boot...
    Connected via serial port.....
    and rebooted.....the following output displayed....
    Rebooting with command: boot
    Boot device: disk File and args:
    SunOS Release 5.10 Version Generic_118833-36 64-bit
    Copyright 1983-2006 Sun Microsystems, Inc. All rights reserved.
    Use is subject to license terms.
    Hardware watchdog enabled
    Hostname: rnd-6
    Jan 25 22:20:56 /usr/lib/snmp/snmpdx: can't open the file
    Jan 25 22:20:56 /usr/lib/snmp/snmpdx: can't open the file
    checking ufs filesystems
    /dev/rdsk/c1t0d0s5: is logging.
    /dev/rdsk/c1t0d0s4: is logging.
    rnd-6 console login: Jan 25 22:21:10 inetd[274]: Property 'name' of instance svc
    :/network/cde-spc:default is missing, inconsistent or invalid
    Jan 25 22:21:10 inetd[274]: Property 'proto' of instance svc:/network/cde-spc:de
    fault is missing, inconsistent or invalid
    Jan 25 22:21:10 inetd[274]: Invalid configuration for instance svc:/network/cde-
    spc:default, placing in maintenance
    Jan 25 22:25:57 rnd-6 iscsi: NOTICE: unrecognized ioctl 0x403
    Jan 25 22:25:57 rnd-6 iscsi: NOTICE: unrecognized ioctl 0x42a
    Jan 25 22:25:57 rnd-6 iscsi: NOTICE: unrecognized ioctl 0x401
    Jan 25 22:25:58 rnd-6 ipf: NOTICE: Unknown: cmd 0x403 data ffbfc994
    Jan 25 22:25:58 rnd-6 ipf: NOTICE: Unknown: cmd 0x42a data ffbfc980
    Jan 25 22:25:58 rnd-6 ipf: NOTICE: Unknown: cmd 0x401 data ffbfc954
    .....and just hangs there....cant even get a login prompt...
    Please assist
    PS. its a V245 sparc running Solaris 10

    This is a SMF message, might be cause by a problem that occured with a patch that was installed. These services are not related to SWUP. I recommend redirecting the question to the Solaris support forum http://forum.sun.com/category.jspa?categoryID=5
    Kayo Granillo

  • Error: Invalid configuration for the JMS adapter

    Hi!
    I'm doing a test with CEP to get messages from a JMS WebLogic queue but I'm getting the following error:
    <BEA-2045010> <The application context "Teste" could not be initialized: org.springframework.beans.FatalBeanException: Error in initialization context lifecycle; nested exception is java.lang.IllegalArgumentException: Invalid configuration for the JMS adapter, you must Bean or specify a converter or a type of event.
    Teste.context.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:osgi="http://www.springframework.org/schema/osgi"
    xmlns:wlevs="http://www.bea.com/ns/wlevs/spring"
    xmlns:jdbc="http://www.oracle.com/ns/ocep/jdbc"
    xmlns:spatial="http://www.oracle.com/ns/ocep/spatial"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/osgi
    http://www.springframework.org/schema/osgi/spring-osgi.xsd
    http://www.bea.com/ns/wlevs/spring
    http://www.bea.com/ns/wlevs/spring/spring-wlevs-v11_1_1_3.xsd
    http://www.oracle.com/ns/ocep/jdbc
    http://www.oracle.com/ns/ocep/jdbc/ocep-jdbc.xsd
    http://www.oracle.com/ns/ocep/spatial
    http://www.oracle.com/ns/ocep/spatial/ocep-spatial.xsd">
         <wlevs:event-type-repository>
              <wlevs:event-type type-name="Pet">
                   <wlevs:class>testewithprotobuf.MyPet$Pet</wlevs:class>
              </wlevs:event-type>
         </wlevs:event-type-repository>
         <wlevs:adapter id="pet_messageAdapter" provider="jms-inbound">
              <wlevs:listener ref="pet_inputChannel" />
              <wlevs:instance-property name="converterBean"
                   ref="PetMessageConverter" />
         </wlevs:adapter>
         <wlevs:channel id="pet_inputChannel" event-type="Pet">
              <wlevs:listener ref="pet_messageProcessor" />
         </wlevs:channel>
         <bean id="PetMessageConverter" class="testewithprotobuf.PetMessageConverter" />
         <bean id="PetBean" class="testewithprotobuf.PetBean" />
         <wlevs:processor id="pet_messageProcessor">
              <wlevs:listener ref="pet_outputChannel" />          
         </wlevs:processor>
         <wlevs:channel id="pet_outputChannel" event-type="Pet">
              <wlevs:listener ref="PetBean" />
         </wlevs:channel>
    </beans>
    My converter class:
    import java.util.Collections;
    import java.util.List;
    import javax.jms.BytesMessage;
    import javax.jms.JMSException;
    import javax.jms.Message;
    import testewithprotobuf.MyPet.Pet;
    import com.bea.wlevs.adapters.jms.api.InboundMessageConverter;
    import com.bea.wlevs.adapters.jms.api.MessageConverterException;
    import com.google.protobuf.InvalidProtocolBufferException;
    public class PetMessageConverter implements InboundMessageConverter {
         @SuppressWarnings("rawtypes")
         @Override
         public List convert(Message message) throws MessageConverterException,
                                                                JMSException {
              BytesMessage bytesMessage = (BytesMessage) message;
              long bodyLen = bytesMessage.getBodyLength();
              byte[] buffer = new byte[(int) bodyLen];
              bytesMessage.readBytes(buffer);
              try {
                   Pet pet = Pet.parseFrom(buffer);               
                   return Collections.singletonList(pet);
              } catch (InvalidProtocolBufferException e) {
                   throw new MessageConverterException(e);
    Please, what's wrong?
    Thanks!

    This error usually indicates that you have both event type and converter bean specified or neither specified. In your case, that doesn't appear to the case from looking at the spring file. Could you also paste the contents of your configuration file from META-INF/wlevs directory?

  • Invalid configuration for catalog/Web dispatcher (Fiori Smart Business Cockpit)

    Hi all,
    For our smart business cockpits, we have following issue in our administration (launchpad):
    Invalid configuration for catalog/Web dispatcher
    Title
    SAP: KPI Catalog for SAP Smart Business
    ID
    X-SAP-REMOTE:SAP_KPIFRW_TC_R
    Remote ID
    HANA_CATALOG
    System alias
    HANA
    Base URL
    /sap/hba/apps/kpi/s/odata/hana_chip_catalog.xsodata/
    Type
    REMOTE
    When I check our console client, the only error that we see is following message:
    2014-08-04 14:33:16 Base URL '/sap/hba/apps/kpi/s/odata/hana_chip_catalog.xsodata' already registered - sap.ui2.srvc.Factory
    Does someone already saw this issue before? I noticed that we only have those issues on REMOTE CATALOGS.
    Thx!
    Regards,
    Hans
    Tags edited by: Michael Appleby

    Use SAP_KPIFRW_TC_R role (I think you already did).
    (https://<WEBDISPhostname>:<port>/sap/bc/ui5_ui5/sap/arsrvc_upb_admn/main.html?sap-client=xxx&sap-language=EN#/Catalog/X-SAP-REMOTE:SAP_KPIFRW_TC_R)
    However, to be able to access this catalog, the HANA user needs the role sap.hba.apps.kpi.s.roles::SAP_SMART_BUSINESS_RUNTIME
    If the user has to model KPIs, they need sap.hba.apps.kpi.s.roles::SAP_SMART_BUSINESS_MODELER.
    Regards,
    Kiran

  • Apple Configurator: The configuration for your iPad could not be downloaded from organisation . Invalid Profile.

    Good afternoon,
    I am really struggling with a deployment of 10 iPad Minis.
    The iPads are brand new and I have downloaded and installed Apple Configurator onto our Apple Air laptop.
    I have configured Apple Configurator in the following way:
    Under Prepared:
    Settings
    Name is ticked with 'Number sequentially starting at 1'.
    Supervision is ticked to on, Allow devices to connect to other Macs is also ticked.
    Update iOS is set to "When update is available". Erase before installing is ticked.
    Restore is set to "Don't restore backup".
    No profiles are listed in the profiles section.
    Apps
    I have copied in some appropriate apps.
    Setup
    Skip: Restore, Passcode, Siri, Touch ID, Apple Pay, App Analytics all ticked.
    I have not configured Device Enrollment.
    In "Configure Settings..." Device Enrollment is not configured.
    After preparing my iPads, they all connect and prepare correctly. When I select any iPad and unlock it, the following happens:
    Hello, slide to setup
    Select language, UK selected
    Select Your Country or Region, UK selected
    Choose a Wi-Fi Network, correct network selected and authenticated
    Location Services: Enabled
    Configuration, "<organisation> can automatically configure your iPad". Apply Configuration or Skip Configuration. Apply selected.
    Configuration, "The configuration for your iPad could not be downloaded from <organisation>. Invalid Profile.
    Apple Configurator is showing no errors, have tried Supervise>Reset, makes no difference.
    Have skipped configuration and erased iPad before trying again, same problem.
    Any suggestions would be really appreciated.

    FYI - This is an iPad user to user forum. Apple doesn't read the forum posts.
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/TS3694
     Cheers, Tom

  • CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE

    How to clear this ? It should auto see to DISK not to tape, i posted 2 show all below, 1st one is giving me error, & the 2nd one is working fine for another db.....
    How to clear
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE 'SBT_TAPE' TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    RMAN> restore database preview;
    Starting restore at 27-JUN-12
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=125 devtype=DISK
    released channel: ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 06/27/2012 11:45:25
    ORA-19554: error allocating device, device type: SBT_TAPE, device name:
    ORA-27211: Failed to load Media Management Library
    RMAN> show all;
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO 'J:\Cognoscm\%F';
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE SBT_TAPE TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK BACKUP TYPE TO COMPRESSED BACKUPSET PARALLELISM 1;
    CONFIGURE DEVICE TYPE 'SBT_TAPE' BACKUP TYPE TO COMPRESSED BACKUPSET PARALLELISM 1;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE 'SBT_TAPE' TO 1;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT 'J:\COGNOSCM\%U';
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO 'C:\ORACLE\10\DATABASE\SNCFCOGNOSCM.ORA'; # default
    RMAN> show all;
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO 'J:\DELTEKCP\%F';
    CONFIGURE DEVICE TYPE DISK BACKUP TYPE TO COMPRESSED BACKUPSET PARALLELISM 1;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT 'J:\DELTEKCP\%U';
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO 'C:\ORACLE\10\DATABASE\SNCFDELTEKCP.ORA'; # default

    RMAN> show all;
    using target database control file instead of recovery catalog
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO 'J:\Cognoscm\%F';
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE SBT_TAPE TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK BACKUP TYPE TO COMPRESSED BACKUPSET PARALLELISM 1;
    CONFIGURE DEVICE TYPE 'SBT_TAPE' BACKUP TYPE TO COMPRESSED BACKUPSET PARALLELISM 1;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE 'SBT_TAPE' TO 1;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT 'J:\COGNOSCM\%U';
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO 'C:\ORACLE\10\DATABASE\SNCFCOGNOSCM.ORA'; # default
    RMAN> restore database preview;
    Starting restore at 27-JUN-12
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=124 devtype=DISK
    RMAN-06908: WARNING: operation will not run in parallel on the allocated channels
    RMAN-06909: WARNING: parallelism require Enterprise Edition
    released channel: ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 06/27/2012 13:22:40
    ORA-19554: error allocating device, device type: SBT_TAPE, device name:
    ORA-27211: Failed to load Media Management Library

  • Cisco devices configuration for CW-LMS

    Hello,
    I am new to CiscoWorks LMS. I am working with a LMS 3.2 fresh installation. I added all the devices (routers, switches and 3 ASAs) into the DCR. Now I need to know how to configure the devices to send relevant info to the CW LMS machine. I am looking for something similar to this:
    http://www.cisco.com/en/US/docs/solutions/Enterprise/Security/SAFE_RG/chap10.html#wp1056411
    This is a deployment model for Cisco MARS, which shows what to configure on each device in the network to send the most relevant info (syslog, netflow) to the Cisco MARS.
    Is there a best practice for CW LMS regarding this? For example, what syslog level should the routers send to the LMS?
    Thank you!

    There is a deployment guide whitepaper for LMS at http://www.cisco.com/en/US/products/sw/cscowork/ps2425/prod_white_papers_list.html .  As for what to do syslog-wise, you should configure your logging facility to be local7 (this is the default on IOS, but not on ASA OS), and send at least sev 5 or higher messages.  You may want to bump that up to sev 6 (informational), but sev 5 for IOS devices will be sufficient to get things like configuration change messages.  For CatOS, you definitely want sev 6.

  • Issue Configuring Push Notifications Proxying for OWA for Devices

    I have been attempting to configure Push Notifications per http://technet.microsoft.com/library/jj151815.aspx#bkmk_installmodule
    When running the second PowerShell script I get the error 
    "New-MsolServicePrincipalCredential : Invalid value for parameter. Parameter name: Credential.EndDate.
    At c:\Users\User\Desktop\script2.ps1:25 char:5
    * New-MsolServicePrincipalCredential -AppPrincipalId $p,AppPricipalId -Type a"
    I do currently have another Federation Trust configured for this account with our test environment. Might this be causing this error? Any help would be appreciated.

    Hi,
    As far as I know, the issue can be caused by time difference between local timezone and server timezone. Please firstly check with this point.
    Thanks,
    Simon Wu
    TechNet Community Support

  • Infamous "Recovery policy configured for this system contains invalid recovery certificate" message

    Hello,
    On a Windows 2012 R2 member server of a Windows 2012 domain, I tried encrypting a folder, and I got a "Recovery policy configured for this system contains invalid recovery certificate message."  This is the first known attempt
    at enabling EFS within our organization.
    When I looked at the EFS certificate within the Default domain GPO, it had expired.
    Is it as simple as deleting and recreating the EFS certificate within the Default domain GPO?  Then running gpupdate /force on the Windows 2012 member server?
    Thanks
    Ron

    You can give a look to that: http://blogs.technet.com/b/askds/archive/2008/01/07/replacing-an-expired-dra-certificate.aspx
    More if you ask them here: https://social.technet.microsoft.com/Forums/windowsserver/en-US/home?category=migratedforums&filter=alltypes&sort=lastpostdesc
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • Apple Configurator - Passcode - Grace Period for Device Lock

    Help.
    I am using 40 new iPads in a classroom, using Apple Configurator. I set a passcode to the student profile, and the Grace Period for Device Lock is set to 4 hours. However, every time the iPad is locked, it requires a passcode to unlock it, even if immediately turned back on. The grace period function is not working. Anyone else have a problem with this?
    -Dan

    HI nsdjoey,
    Many thanks for your reply.
    Hopefully this will be an update within Apple Configurator soon. The configurator has the potentail to be a great tool but lacks soem really basic features.
    I'll take a look at making an encrypted backup in iTunes, although none of my iPads are showing up as devices within iTunes. Maybe becasue they are in supervise mode ?
    Also just noticed that iPad 20 is not appearing in the Configurator even though its conected and lit up in the sync cab. I've change leads and ports in the cab but getting nothing.
    Thanks for your advice.

  • [Forum FAQ]How to troubleshoot common issue when configuring user device affinity from usage data

    Symptom:
    Some clients might fail to automatically configure user device affinity from usage data if you have manually configured user device affinity before.
    When you check the UserAffinity.log, you can find the similar error messages as below:
    User 'XXXXX\XXXXX' has xxxxx usage minutes UserAffinity 
    Setting auto affinity for user 'XXXXX\XXXXX'. UserAffinity 
    Found same state message existing. (was sent before) Skip sending same state message for user 'XXXXX\XXXXX'.. UserAffinity 
    Figure 1. Error Message in UserAffinity.log
    Cause:
    As the log said, there is a user affinity state message existing in WMI which prevents client from sending new user affinity state message.
    Resolution:
    We can delete the user affinity state message in WMI to force the client to resend the user affinity state message.
    We can follow the steps below:
      1. Run Windows Management Instrumentation Tester (“Wbemtest”).
      2. In Windows Management Instrumentation Tester dialog box, click “Connect”.(Figure 2)
    Figure 2.
      3. Type “root\ccm\statemsg” under the Namespace table and then click “Connect”.(Figure 3)
    Figure 3.
      4. Click “Enum Classes”. (Figure 4)
    Figure 4.
      5. Choose “Recursive”
    in Superclass Info dialog box.(Figure 5)
    Figure 5.
      6. Double-click “CCM_StateMsg” in Query Result dialog box.(Figure 6)
    Figure 6.
      7. Click “Instances”
    in Object editor for CCM_StateMsg dialog box. (Figure 7)
    Figure 7.
      8. Choose the messages that contain "domain/user_Auto" and click “Delete” in the Query Result dialog box.(Figure 8)
    Figure 8.
    After you delete user affinity state message in WMI, the user affinity state message for the user will be resent. After a period time, we can check the UserAffinity.log to
    see if the user affinity state message has been successfully sent. The related information would be similar as below:
    Successfully sent user affinity state message for user 'xxxxx\xxxxx'.
    Successfully created pending user affinity for user 'xxxxx\xxxxx' into WMI.
    Figure 9.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    I'm not sure whether this is the appropriate place to add this but - a (possible) cause that I have seen which is not mentioned above is a request for an AAAA record (IPv6 address)
    being responded to with an A record (IPv4 address).
    DNS debug logging (Windows 2008 R2 SP1) captured requests to
    192.225.156.200 and the corresponding responses. In each case the response was followed in the debug log by the event “The DNS server encountered an invalid domain name
    in a packet from 192.225.156.200. The packet will be rejected. The event data contains the DNS packet.”
    The domain name in the response was the same as that in the query, and looks OK.
    The logged query shows an AAAA record (IPv6 address) request and the logged response returned an A record (IPv4 address).
    http://www.rfc-editor.org/rfc/rfc4074.txt “Common
    Misbehavior Against DNS Queries for IPv6 Addresses” says, under “Expected Behavior”:
       Suppose that an authoritative server has an A RR but has no AAAA RR
       for a host name.  Then, the server should return a response to a
       query for an AAAA RR of the name with the response code (RCODE) being
       0 (indicating no error) and with an empty answer section (see
       Sections 4.3.2 and 6.2.4 of [1]).  Such a response indicates that
       there is at least one RR of a different type than AAAA for the
       queried name, and the stub resolver can then look for A RRs.

  • Palm OS - Error : Invalid Configuration. Terminating the Palm Desktop

    Hello,
    I am getting this error when i run the Palm OS Desktop, Error: Invalid Configuration. Terminating the Palm Desktop. This is what we did before we start receiving the issue.
    Change the computer for the user from domain1 to domain2. I have also copied all the Desktop and My document folders.
    Please let me know how to resolve this issue. The user has already lost her stuff from the device and she says she has all the updated stuff on her computer and now she is not able to use it.
    Thanks
    JH
    Post relates to: Tungsten E

    You have to reinstall the palm desktop. Here is the link http://kb.palm.com/wps/portal/kb/na/zire/z22/unlocked/solutions/article/32859_en.html where you can download the 6.2 version.

  • Ohasd failed to start Inappropriate ioctl for device at roothas.pl

    Hallo!I am trying to install Oracle database 11.2.0.1 on Oracle Linux 6.0 32 bit deployed on VirtualBox.I am setting up a single-instance database on ASM thus doing
    Grid installation on a stand-alone server.I launched the Grid installer OUI and when I run the root script
    /u01/app/oracle/product/11.2.0/grid/root.sh
    I get the following error
    Adding daemon to inittab
    CRS-4124: Oracle High Availability Services startup failed.
    CRS-4000: Command Start failed, or completed with errors.
    ohasd failed to start: Inappropriate ioctl for device
    ohasd failed to start: Inappropriate ioctl for device at /u01/app/oracle/product/11.2.0/grid/crs/install/roothas.pl line 296.
    When I check the /u01/app/oracle/product/11.2.0/grid/log/joey-oel6/client/crsctl.log it gives me the following error messages
    Oracle Database 11g Clusterware Release 11.2.0.1.0 - Production Copyright 1996, 2009 Oracle. All rights reserved.
    2012-06-28 14:47:26.259: [ CSSCLNT][3037951696]clssscConnect: gipc request failed with 29 (0x13)
    2012-06-28 14:47:26.259: [ CSSCLNT][3037951696]clsssInitNative: connect failed, rc 29
    2012-06-28 14:47:26.272: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2012-06-28 14:47:26.272: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 1
    2012-06-28 14:47:26.272: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 2
    2012-06-28 14:47:26.272: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 3
    2012-06-28 14:47:26.272: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 4
    2012-06-28 14:47:26.272: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 5
    2012-06-28 14:47:26.273: [  OCRRAW][3037951696]propriogid:1_1: Failed to read the whole bootblock. Assumes invalid format.
    2012-06-28 14:47:26.273: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2012-06-28 14:47:26.273: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 1
    2012-06-28 14:47:26.273: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 2
    2012-06-28 14:47:26.273: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 3
    2012-06-28 14:47:26.273: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 4
    2012-06-28 14:47:26.273: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 5
    2012-06-28 14:47:26.274: [  OCRRAW][3037951696]ibctx: Failed to read the whole bootblock. Assumes invalid format.
    2012-06-28 14:47:26.274: [  OCRRAW][3037951696]proprinit:problem reading the bootblock or superbloc 22
    2012-06-28 14:47:26.274: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2012-06-28 14:47:26.274: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 1
    2012-06-28 14:47:26.274: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 2
    2012-06-28 14:47:26.274: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 3
    2012-06-28 14:47:26.274: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 4
    2012-06-28 14:47:26.274: [  OCROSD][3037951696]utread:3: Problem reading buffer 9586000 buflen 4096 retval 0 phy_offset 102400 retry 5
    2012-06-28 14:47:26.274: [  OCRRAW][3037951696]propriogid:1_1: Failed to read the whole bootblock. Assumes invalid format.
    2012-06-28 14:47:26.698: [  OCRRAW][3037951696]iniconfig:No 92 configuration
    2012-06-28 14:47:26.698: [  OCRAPI][3037951696]a_init:6a: Backend init successful
    2012-06-28 14:47:26.698: [  CRSCTL][3037951696]crsctlcss_GetEnvVar: Environment variable NLS_LANG not found
    2012-06-28 14:47:26.699: [  CRSCTL][3037951696]crsctlcss_GetEnvVar: Error 21101 in getting environment variable ORACLE_HOME
    2012-06-28 14:47:26.700: [  CRSCTL][3037951696]crsctlcss_doclusterkeys: the current number of pinned nodes 0, set is 1
    2012-06-28 14:47:27.233: [  CRSCTL][3037951696]crsctl_pin_ocr: set OCR keys succ.
    How do I solve this?

    Hello,
    Problem is indeed because of upstart/init incompatibility. Here is the working way:
    1) Proceed with the installation as usual until root.sh invocation.
    2) Before root.sh edit $GRID_HOME/crs/install/s_crsconfig_lib.pm, go to line 1173 (you should find a code like: if ($srv eq "ohasd") { # Start OHASD).
    3) Insert a following snippet before starting OHASD part (line 1173)
    my $UPSTART_OHASD_SERVICE = "oracle-ohasd";
    my $INITCTL = "/sbin/initctl";
    ($status, @output) = system_cmd_capture ("$INITCTL start $UPSTART_OHASD_SERVICE");
    if (0 != $status)
    error ("Failed to start $UPSTART_OHASD_SERVICE, error: $!");
    return $FAILED;
    4) Create a file /etc/init/oracle-ohasd.conf with the following content inside
    # Oracle OHASD startup
    start on runlevel [35]
    stop on runlevel [!35]
    respawn
    exec /etc/init.d/init.ohasd run >/dev/null 2>&1 </dev/null
    5) Invoke root.sh
    6) Finish the installation.
    If you previously ran root.sh (not successfully), simply roll it back:
    $GRID_HOME/crs/install/roothas.pl -deconfig -force -verbose
    Make changes above and continue.
    good luck
    Anand

  • Solaris 10connectivity to EMC: failed to configure ANY device on FCA port

    I'm connecting a E2900 server with a EMC symmetrix storage with fiber channel.
    But I'm getting the following errors, and I'm not able to see the external disks. Any help is really appreciated.
    bash-3.00# cfgadm -al
    c3 fc-fabric connected unconfigured unknown
    c3::5006048c52a5b746 unavailable  connected    unconfigured failed
    c4 fc-fabric connected unconfigured unknown
    c4::5006048c52a5b749 unavailable  connected    unconfigured failed
    bash-3.00# cfgadm -c configure c3
    cfgadm: Library error: report LUNs failed: 5006048c52a5b746
    failed to configure ANY device on FCA port
    bash-3.00# tail -f /var/adm/messages
    Nov 27 16:42:12 cosemm1 scsi: [ID 243001 kern.warning] WARNING: /pseudo/fcp@0 (fcp0):
    Nov 27 16:42:12 cosemm1 Unsupported LUN Addressing method 40 in response to REPORT_LUN
    bash-3.00#
    SO is Solaris 10 and I have installed recommended pathes:
    118833-36 SunOS 5.10: Kernel patch
    125100-10 SunOS 5.10: Kernel patch
    120011-14 SunOS 5.10: Kernel patch
    127111-01 SunOS 5.10: Kernel patch
    119130-33 SunOS 5.10: Sun Fibre Channel Device Drivers (only necessary for Leadville Stack driver)
    125184-04 SunOS 5.10: Sun Fibre Channel Device Drivers.
    120222-21 SunOS 5.10: Emulex-Sun LightPulse fibre channel adapter driver v2.20k (only required for Emulex HBAs running Leadville)
    125166-06 SunOS 5.10: Qlogic ISP fibre channel device driver v2.22 (only required for Qlogic HBAs running Leadville)
    122640-05 SunOS 5.10: zfs genesis patch (require for zfs)
    120473-12 SunOS 5.10: lib nss ldap PAM zfs patch (require for zfs)
    119090-24 SunOS 5.10: iSCSI device driver and utilities
    Also I have modified /etc/system adding those lines:
    set ssd:ssd_max_throttle=20
    forceload: drv/ssd
    bash-3.00# modinfo |grep qlc
    66 7ba7e000 ce1f8 282 1 qlc (SunFC Qlogic FCA v20070717-2.22)
    bash-3.00# luxadm -e port
    /devices/ssm@0,0/pci@18,600000/SUNW,qlc@1/fp@0,0:devctl CONNECTED
    /devices/ssm@0,0/pci@19,600000/SUNW,qlc@2/fp@0,0:devctl CONNECTED
    bash-3.00# luxadm qlgc
    Found Path to 2 FC100/P, ISP2200, ISP23xx Devices
    Opening Device: /devices/ssm@0,0/pci@19,600000/SUNW,qlc@2/fp@0,0:devctl
    Detected FCode Version: QLA2460 Host Adapter FCode(SPARC): 1.26 05/17/07
    Opening Device: /devices/ssm@0,0/pci@18,600000/SUNW,qlc@1/fp@0,0:devctl
    Detected FCode Version: QLA2460 Host Adapter FCode(SPARC): 1.26 05/17/07
    Complete
    bash-3.00# luxadm -e port
    /devices/ssm@0,0/pci@18,600000/SUNW,qlc@1/fp@0,0:devctl CONNECTED
    /devices/ssm@0,0/pci@19,600000/SUNW,qlc@2/fp@0,0:devctl CONNECTED
    bash-3.00# luxadm -e dump_map /devices/ssm@0,0/pci@18,600000/SUNW,qlc@1/fp@0,0:
    devctl
    Pos Port_ID Hard_Addr Port WWN Node WWN Type
    0 610f13 0 5006048c52a5b746 5006048c52a5b746 0x0 (Disk device)
    1 617613 0 2100001b320122b7 2000001b320122b7 0x1f (Unknown Type,Host Bus Adapter)
    bash-3.00# luxadm -e dump_map /devices/ssm@0,0/pci@19,600000/SUNW,qlc@2/fp@0,0:
    devctl
    Pos Port_ID Hard_Addr Port WWN Node WWN Type
    0 620f13 0 5006048c52a5b749 5006048c52a5b749 0x0 (Disk device)
    1 627613 0 2100001b32014eb8 2000001b32014eb8 0x1f (Unknown Type,Host Bus Adapter)

    Check the configuration on the EMC side. This error message is the heart of the problem:
    "Unsupported LUN Addressing method 40 in response to REPORT_LUN"
    A quick Googling leads me to believe this means you're trying to assign a LUN ID higher than 255 to the host.
    Best of luck!

  • Doesn't play songs, "itunes is not configured for use with mac-formatted"??

    Hi, new ipod shuffle. Seems to charge fine, all indicator lights function as expected. Everything looks fine in itunes. But it doesn't play songs. I have the most recent versions of itunes and the ipod software. Re-set, updated, and restored, nothing works. Even restored using the restore utility. Re-started computer. Checked for volume control. Won't play songs. Tried different file types. Songs play fine from itunes library and from the device's library within itunes. Tried different headphones. Hooked it up to computer speakers. Turning volume all the way up on device and speakers, heard some very faint rhythmic static, so my guess is the jack socket (or whatever you call it) is just messed up, but it seems weird that it can transfer power and data to the device but doesn't work for sound...
    The only other issues that have come up is that the drive disappears in explorer once it syncs with itunes. Other people who've noticed this seem to have completely different problems so I don't think it's related.
    Also, I have MacDrive on my computer. And when it starts up with the ipod plugged in, MacDrive offers the message "Itunes is not configured for use with Mac-formatted ipods." It offers to automatically reconfigure itunes so it can read mac-formatted ipods. Since I've restored the device, I don't see why formatting should be an issue so I say "no."
    Should I try letting macdrive do its format thing? Should I try formatting the ipod disk on the My Computer menu? Or should I just email apple and tell them the jack's busted?
    Thanks for any thoughts!

    Well, I have had my iPod for about 3 years, it is a 4th generation non-video 40 GB. One day it just stopped working, and now it does not play any songs. when I turn it on it makes this odd whirring sounds that computers make when they try really hard to do something. I cannot charge it, and it is not recognized by iTunes. Also when I turn it on, I get the apple.com/ipod/support (or whatever it is) screen. Needless to say, my warranty is expired, and so I cannot do anything for it except get a new battery, or buy a new one. Is there any way to fix this problem, or anyone out there who is experiencing the same thing?
    I'm having the exact same problem with my wife's iPod. However it will play about 3 seconds of a song and go onto the next song.
    If there is anyone out there that can help please do!
      Windows XP  

Maybe you are looking for

  • Getting Stackclose exception in bluetooth applicaiton!

    Hi, All I am developing simple file transfer application in which mobile is server and client is pc while i am calling Connector.open(url) method after that i will get stackclose exception and program stops working. and on mobile that is server no ex

  • OSX 10.6.8 upgrade crashes Safari and App Store

    Hi, I've just downloaded the latest operating system upgrade OSX 10.6.8 and now Safari and App Store crashes upon openning. Is anyone else having this problem?

  • Web publishing

    hi, I need to publish a VI in the web, I did the settings as mentioned in the NI.com,After finishing the procedures,I'm seeing the result as shown in the attached document.basically I can't able to webpublish my VI. see my Attached VI as well. Need s

  • Runtime Error! R6025-pure virtual function call when using Project Manager

    Hi I am trying to consolidate a project.  I have plenty of destination HD space, 16gb RAM and am wearing the correct color socks today. However, when I go to run media manager, I get a run time error R6025 - pure virtual function call. I've tried the

  • 3rd party apps wont start up after updating to Leopard

    I upgraded a iMac - 2ghz Intel Core Duo to Leopard 10.5. Boots fine. All the new apps run fine but none of my previous apps such as Office, Photoshop, Eudora, Toast, etc. will launch. They bounce in the dock then tell me they quit unexpectedly. HELP!