Start-up / shut-down (and other) problems with ZFS over iSCSI

Hi,
I've had a limited time in which to try some concepts on an evaluation x4500 server. This is unfortunately my last day, so by the time anyone can reply I will probably not be able to to further tests, but maybe someone will be able to reproduce the issues.
I'm using the evaluation server to export some iSCSI targets, and I'm connecting to them from my laptop, which has a fresh installation of SXDE 01/08. I was able to attach to the targets with
iscsiadm add static-config \
iqn.1986-03.com.sun:02:f4281081-c3fc-e448-c8f0-943d8861c9e8,192.168.15.62
iscsiadm add static-config \
iqn.1986-03.com.sun:02:371c6fe7-f0c8-e02c-c865-baef90fb71ce,192.168.15.62
iscsiadm add static-config \
iqn.1986-03.com.sun:02:ee74d5de-3046-6295-f35e-afe60e13db23,192.168.15.62
iscsiadm modify discovery -s enableThis made the appropriate entries appear in /dev/dsk so I could then set up a simple zpool and zfs filesystem with:
zpool create -m none dPool c3t010000144FA70C1400002A0047C2BF73d0 \
c3t010000144FA70C1400002A0047C2BF81d0 c3t010000144FA70C1400002A0047C2BF8Bd0
zfs create -o mountpoint=/data -o sharenfs=on dPool/dataThe general concept I'm testing is having a ZFS-based server using an IP SAN as a growable source of storage, and making the data available to clients over NFS/CIFS or other services. In principle this solution should also allow failover to another server, since all the ZFS data and metadata is in the IP SAN, not on the server. Although not done in this example it should also be possible to run raidz across multiple iSCSI disk arrays. However, it's not been a bed of roses. I've had a lot of errors in dmesg like the following, which I think are causing zfs/zpool commands to stall at times:
Feb 28 14:30:39 F4060 iscsi: [ID 866572 kern.warning] WARNING: iscsi connection(ffffff014f6b6b78) protocol error - received an unsupported opcode:0x41
Feb 28 14:30:41 F4060 iscsi: [ID 158826 kern.warning] WARNING: iscsi connection(10) login failed - failed to receive login response
Feb 28 14:30:41 F4060 scsi_vhci: [ID 734749 kern.warning] WARNING: vhci_scsi_reset 0x1
Feb 28 14:30:41 F4060 iscsi: [ID 339442 kern.notice] NOTICE: iscsi connection failed to set socket optionTCP_NODELAY, SO_RCVBUF or SO_SNDBUF
Feb 28 14:30:41 F4060 iscsi: [ID 933263 kern.notice] NOTICE: iscsi connection(13) unable to connect to target iqn.1986-03.com.sun:02:ee74d5de-3046-6295-f35e-afe60e13db23
Feb 28 14:30:41 F4060 iscsi: [ID 339442 kern.notice] NOTICE: iscsi connection failed to set socket optionTCP_NODELAY, SO_RCVBUF or SO_SNDBUF
Feb 28 14:30:41 F4060 iscsi: [ID 933263 kern.notice] NOTICE: iscsi connection(7) unable to connect to target iqn.1986-03.com.sun:02:f4281081-c3fc-e448-c8f0-943d8861c9e8Does anyone know why a Solaris iSCSI target would send an unsupported opcode (0x41) to a Solaris iSCSI initiator? Surely they should be talking the same language!
The main problems however are with shutdown and start-up. On occasions, I suspect that the ordering of ZFS, iSCSI and network services gets a bit out of sync. On one occasion the laptop even refused to complete the shutdown because it was reporting a continuous stream of console messages like
Feb 27 18:26:37 F4060 iscsi: [ID 933263 kern.notice] NOTICE: iscsi connection(13) unable to connect to target iqn.1986-03.com.sun:02:ee74d5de-3046-6295-f35e
-afe60e13db23
Feb 27 18:26:37 F4060 iscsi: [ID 933263 kern.notice] NOTICE: iscsi connection(10) unable to connect to target iqn.1986-03.com.sun:02:371c6fe7-f0c8-e02c-c865
-baef90fb71ce
Feb 27 18:26:37 F4060 iscsi: [ID 933263 kern.notice] NOTICE: iscsi connection(7) unable to connect to target iqn.1986-03.com.sun:02:f4281081-c3fc-e448-c8f0-
943d8861c9e8I also get these on start-up, where it looks like ZFS tries to load the zpool configuration before iSCSI has found the disks, and even worse, iSCSI is starting up before nwamd has time to do its network auto-magic, and complains that the devices are unavailable.
If these problems sorted themselves out after everything came up, I wouldn't really mind some temporary complaints in the log file, but what I get after a reboot is a working zpool but an unmounted ZFS filesystem! Here is what I have today:
bash-3.2# zpool status
  pool: dPool
state: ONLINE
scrub: scrub completed with 0 errors on Thu Feb 28 14:33:43 2008
config:
        NAME                                     STATE     READ WRITE CKSUM
        dPool                                    ONLINE       0     0     0
          c3t010000144FA70C1400002A0047C2BF73d0  ONLINE       0     0     0
          c3t010000144FA70C1400002A0047C2BF81d0  ONLINE       0     0     0
          c3t010000144FA70C1400002A0047C2BF8Bd0  ONLINE       0     0     0
errors: No known data errors
bash-3.2# zfs list
NAME         USED  AVAIL  REFER  MOUNTPOINT
dPool        480M  28.9G     1K  none
dPool/data   480M  28.9G   480M  /dataThis all looks fine, and you can see that I was even able to scrub the pool data with no problems. But where are the 480MB of data I have put in the /data mountpoint:
bash-3.2# ls /data
bash-3.2# df -h /data
Filesystem             size   used  avail capacity  Mounted on
/dev/dsk/c1d0s0         15G   4.4G    11G    30%    /As you can see, /data is unmounted, causing df to revert to the / filesystem containing the empty /data mountpoint, instead of showing the zpool mount.
Since zfs is supposed to take care of its own mounts rather than using vfstab, I can't use "mount /data" to force this to mount. The only workaround I've found is to export and import the zpool. Then I get the filesystem to reappear:
bash-3.2# df -h /data
Filesystem             size   used  avail capacity  Mounted on
dPool/data              29G   480M    29G     2%    /dataDoes anyone know if these are known issues with snv_79b, and is there a fix available or in the works?
TIA,
Graham

EasyE, Welcome to the discussion area!
(a) Call Apple and get your iMac G5 fixed since it is in the repair extension group. Don't waste your time doing anything else.
(b) This area is for discussing the iMac G4. Since you have an iMac G5 in the future you should post in the iMac G5 discussion area.

Similar Messages

  • HT3302 my iphone is shutting down and not working with my pc.. but when i plug it to the wall it turns on. and off when i unplugged it.. i tried  to reboot but nothing happens.. pls help..

    my iphone is shutting down and not working with my pc.. but when i plug it to the wall it turns on. and off when i unplugged it.. i tried  to reboot but nothing happens.. pls help..

    The problem is your friend's music does not belong to you.  It is owned by your friend.
    I'm afraid you cannot do what you are trying to do.  Restoring the iPhone is what you would have to do.
    In the future, put your music on the computer and transfer it to the iPhone, not the other way.

  • My Imac wont shut down and other questions

    Hello All
    I was wondering i you could help me with a few question i have on my imac. (A OS convert after 29 years)
    1) When I select log out or shutdown the machine just hangs at the blue screen with the wheel icon turning. In the end I have to shutdown manually.
    2) I have 2 accounts, Mine and my my wifes. I have .mac and installed backup. how do i backup me and my wifes files as I do not have rights to her user area even though I am an administrator.
    3) where do i find what my procare number is. Is this different from Applecare?
    Thank you all for your help

    Welcome to the Apple Discussions. Congrats on the new Mac.
    I see that you have upgraded your OS as well as probably the Apple apps that came with your new Mac. An important step after updating/upgrading the Mac OS and Apple apps is to Repair Permissions on your startup drive. Go to Apps/Utilities/Disk Utility. Highlight your Startup drive in the lefthand list and in the First Aid pane press Repair Permissions. Repair Permissions until no more repairs are reported.
    The SMC controls issues on your Mac like startup, shut down and sleeping. The SMC occasionally may need to be reset.
    Intel-based iMac, Intel-based Mac mini: How to reset the System Management Controller
    I believe that separate user accounts require separate .mac accounts. Two users can't sync to the same account without overwritting each other. Family accounts are available with a Master and sub accounts.
    Lastly, here is a good website to learn about regular maintenance for your Mac, as well as troubleshooting issues;
    The X Labs

  • Mini 2009 won't shut down and others....

    My hard disk crashed down, I changed it and re-installed from Time Machine. Now my mini won't shut down (among other things) just restart. I think, I broke something inside, because I can't re-install from App Store (unfit check sum). Here is the fault log, any help?
    Interval Since Last Panic Report:  107776 sec
    Panics Since Last Report:          30
    Anonymous UUID:                    D5C76789-6CC4-5EF1-9A93-83B28D9D4EE6
    Thu Dec 20 05:57:18 2012
    panic(cpu 0 caller 0xffffff80106b7bd5): Kernel trap at 0xffffff801070fd84, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x00000000000000e0, CR3: 0x0000000011f3d000, CR4: 0x0000000000000660
    RAX: 0xffffff8022a91008, RBX: 0x0000000000000000, RCX: 0x0000000000000000, RDX: 0x0000000000000002
    RSP: 0xffffff80f8cdbb20, RBP: 0xffffff80f8cdbb20, RSI: 0x0000000000000001, RDI: 0x0000000000000000
    R8:  0xffffff8010ae6f3f, R9:  0xffffff801399ae90, R10: 0xffffff801d357000, R11: 0x00000000ffffff00
    R12: 0x0000000000000000, R13: 0xffffff8022c723e0, R14: 0xffffff8022a91008, R15: 0x0000000000000002
    RFL: 0x0000000000010246, RIP: 0xffffff801070fd84, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x00000000000000e0, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80f8cdb7c0 : 0xffffff801061d626
    0xffffff80f8cdb830 : 0xffffff80106b7bd5
    0xffffff80f8cdba00 : 0xffffff80106ce4ed
    0xffffff80f8cdba20 : 0xffffff801070fd84
    0xffffff80f8cdbb20 : 0xffffff8010910152
    0xffffff80f8cdbb60 : 0xffffff80109156d1
    0xffffff80f8cdbb90 : 0xffffff8010915618
    0xffffff80f8cdbc00 : 0xffffff80109189fc
    0xffffff80f8cdbc30 : 0xffffff80107120af
    0xffffff80f8cdbc60 : 0xffffff80106f18d3
    0xffffff80f8cdbcb0 : 0xffffff80106f1021
    0xffffff80f8cdbcf0 : 0xffffff80106f151a
    0xffffff80f8cdbd70 : 0xffffff8010905cfa
    0xffffff80f8cdbdd0 : 0xffffff80106f9ff2
    0xffffff80f8cdbe20 : 0xffffff80106f296a
    0xffffff80f8cdbe60 : 0xffffff80109650ee
    0xffffff80f8cdbed0 : 0xffffff8010971b52
    0xffffff80f8cdbf50 : 0xffffff80109e182a
    0xffffff80f8cdbfb0 : 0xffffff80106ced33
    BSD process name corresponding to current thread: launchd
    Boot args: serverperfmode=1
    Mac OS version:
    12C60
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000010400000
    Kernel text base: 0xffffff8010600000
    System model name: Macmini3,1 (Mac-F22C86C8)
    System uptime in nanoseconds: 1018159461778
    last loaded kext at 38032238857: com.apple.driver.AppleHWSensor          1.9.5d0 (addr 0xffffff7f92404000, size 36864)
    last unloaded kext at 218306354237: com.apple.driver.AppleFileSystemDriver          3.0.1 (addr 0xffffff7f9248a000, size 8192)
    loaded kexts:
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AppleBluetoothMultitouch          75.15
    com.apple.nke.l2tp          1.8
    com.apple.nke.pptp          1.8
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.ApplePlatformEnabler          2.0.5d4
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.GeForce          8.0.0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleIRController          320.15
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.nvenet          2.0.19
    com.apple.driver.AppleUSBOHCI          5.2.5
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AirPortBrcm43224          600.36.17
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.driver.IOBluetoothHIDDriver          4.0.9f33
    com.apple.driver.AppleMultitouchDriver          235.28
    com.apple.nke.ppp          1.8
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.driver.AppleUSBHIDKeyboard          165.5
    com.apple.driver.AppleHIDKeyboard          165.5
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.driver.NVSMU          2.2.9
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.2
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: Macmini3,1, BootROM MM31.00AD.B00, 2 processors, Intel Core 2 Duo, 2.53 GHz, 8 GB, SMC 1.35f1
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x90), Broadcom BCM43xx 1.0 (5.10.131.36.16)
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 2 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 500,11 GB
    Serial ATA Device: OCZ-VERTEX3, 240,06 GB
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0x24100000 / 2
    USB Device: Apple Keyboard, apple_vendor_id, 0x0250, 0x24120000 / 3
    USB Device: EyeTV Hybrid, 0x0fd9, 0x0018, 0x26200000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8216, 0x06110000 / 3

    Reboot while holding down the command-r keys so the Mac boots to the Recovery Disk. From there select Disk Utility and then run Repair Disk.

  • Mail shuts down and opens again... over and over and over...

    My mail program shuts down and then automatically re-opens itself.
    Even if I force quit, the mail program just starts up again.
    This happens over and over again. The only solution is to reboot.
    However, after a number of hours of usage, this problem repeats itself.
    Does this sound like a virus? Or, an error in the program?
    Has anyone else ever experienced this?
    If so, any way to repair it?
    Thanks!

    You probably have a piece of software (e.g. a Dashboard widget or a system utility) that requires Mail to be running for whatever it does.

  • Boot Problem! Slow start up, shut down and wake from sleep mode.

    I have a MBP late 2009. I used it a long time whit Snow Leopard, few month ago i did an upgrade to Mavericks.
    To start up it takes 30-40 seconds until appear the apple logo. Then 2 minutes more to start up the sistem.
    When I wake the machine from sleep mode it takes 40 seconds to be working.
    Shut down 40 seconds.
    Even sometime it get frezze using only Safari.
    Things I have tried:
    Reinstall Snow Leopard (clean install)
    Install Mavericks (clean install)
    Replace the HD
    ¿Any idea?
    Sorry for mi poor English

    Chepoka,
    have you ensured that all of your installed software is compatible with Mavericks?
    If you boot into Safe mode, does it still take 40 seconds to awaken from sleeping, or to shut down? (It will take longer to start up in Safe mode because it will perform “sanity checks” on your boot disk.)
    If you have a bootable external disk with Mavericks installed, use Startup Manager to boot from the external disk. Does it take just as long to boot, awaken from sleep, and shut down from the external disk as it does from the internal disk?

  • P7-1534 HP pavilion Desktop PC, Shut down and sleep problem's

    p7-1534 HP pavilion desktop PC, Windows 8, 64-bit, Sometimes when i shut down my PC, the PC won't shut down it will stay on and i will have to use the power button to shut down the PC, and today i put the PC to sleep and it did not wake up when i tried to wake it up i had to use the power button restart the PC. i did a memory diagnostic and found no errors.

    Hi dwellas
    I understand you are having issues with shutting down the computer and not being able to wake it up.
    You  might have a  application or process running in the background that is not shutting down properly. Close all tray applications that you can, make sure you close all programs first, and try again. If that works, you need to see what you have installed that may be causing this.
    You can do a msconfig and turn off start up programs to see if it is still something running in the background.
    Here is a url to temporarily disable all the start up programs to see if one of them is causing any issues.
    http://theunlockr.com/2012/04/05/how-to-change-windows-8s-startup-programs/
    You will have to follow the same steps to enable all again.
    Here is a url for Resolving Problems with Sleep and Hibernate Modes.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03383935&tmp_track_link=ot_faqs/top_issues/en_us/c03383935/loc:8&cc=us&dlc=en&lc=en&product=5331453
    If you need more assistance just let me know.

  • IPhone 5 shut down and restore problems

    I was using my iPhone 5 and it was at about 6% so I shut it when I went to go plug it in it wouldn't turn on for a while, I tried many different chargers. Then at once it started to turn on the apple sign shows up and it appears to be turning on the goes black and repeat that over and over again. So I looked at different support things and have tried to restore it, I have tired about 13 times now and each time it loads till about 9.0-10.0 Mb then either tells me I've lost connection to Internet access when I know I haven't or else it starts to load the apple sign on my phone then shuts off again. Its hasn't works for about 24 hours now and it has become to the point where I'm very upset with it. If anyone has a solution please your help would be greatly appreciated !

    I'm having the same issue with my iPhone5.  It just started yesterday afternoon.  The "hard reset" as you suggested worked once.  However, it shut down again only one hour later.  It didn't turn on (even with the hard reset) for three hours when the hard reset worked again.  I hooked it up to iTunes and restored my phone and thought that it would fix the issue.  But after being on for about two hours, my screen got vertical lines then turned green and shut off again.  I haven't been able to turn it back on no matter what I do all night and all day today.
    It doesn't matter that the phone is plugged in or have 100% battery power.  It just won't turn on again.
    I have an appointment at my local Apple Genuis Bar, but I'm not sure what they can do as I'm not sure if this is a software or a hardware issue.

  • Shut down and Reboot problems

    Hi All
    I hope I can find help for my problem as it is getting really frustrating. I have Lenovo X230 tablet which used to run fine until it suddenly will not shut down or reboot. The screen will turn black however the small led lights on power and other button
    will remain on and the the laptop will remain like this until I press the power button to physically shut it down. When I tried to restore the system to an earlier point, the laptop will not reboot and I had to press the button again to shut it down and then
    power it up. It showed after that reboot was successful but to no avail. I tried to reboot it to even an earlier point (still I had to manually reboot it) but it failed. All drivers are up to date and I always install Windows updates as soon as they are out.
    Still I have to push the power button when I install new windows updates when reboot is required because the screen will go black as I already mentioned with the power still on. I do hope to get helo with this. 
    Thank you 
    Qas

    Hi,
    As this problem occures with no symptoms, in my opinion, it would be better to make system restore to revert your system to a former normal time point for test.
    If the problem persists after system resotre successfully, it would be better to contact Lenovo support to check Hardware problem.
    Roger Lu
    TechNet Community Support

  • MSI Z77-G45 starts then shuts down and restarts

    Hi,
    I got a brand new MB Z77-G45, with an i5-3470, 2x4Gb Kingston DD3 XMP Blue, and a WD Green SATA 6Gb/s. All that into a Cooler Master N400.
    Plugged everything into the MB, powered it and it starts, the 3 fans spin, the frontal led flashes, as well as the 4 leds on the MB but nothing on the screen (with the "no signal" message)
    and then shuts down. And restarts again. Shuts down, restarts...
    It run with an Advance 600W and all components are new. Any clue?
    J.

    Good news: a friend brough one stick of DDR3 and it worked! So now, it's just a matter of finding out if the Kingston I bought really is faulty, or if, as you suggested, it's a matter of updating the BIOS.
    Either way, I'll post the update and hopefully along a [SOLVED]
    Thanks a lot for your input, guys. 

  • Ibook g4 shutting down and battery problems

    A couple months ago, just a couple weeks after my warranty coverage ended..., my ibook started having problems. It would go to sleep randomly and shut down randomly. I tried resetting the PMU, that did nothing to fix the problem. I would have to unplug the charger and take out the battery for a few minutes in order to get my computer to start back up. This problem got worse over the next couple weeks and would shut down several times a day.
    I started to realize that when i had my computer in my lap or not on a hard stable surface or i moved it, it shut down more often. So i treated my laptop as a desktop and left it on my desk and never moved it. This decreased the random shutting down to twice a week instead of several times daily.
    Now a new problem has arised and i'm not sure if its related to this. In the last 24 hours my computer has not been able to charge correctly or hold a charge. Its hooked up to the power cord right now and its not turning on or charging. I was able to get it to charge a little like 3% about 3 hours ago, but now nothing.
    At this point i'm over ibooks and apple but i still want to know what the problem is and if its fixable. is this something i can fix myself? any suggestions? i'm not willing to pay more than $200 to fix this stupid thing... Thanks!

    Yeah I have the exact same thing happening to me right now. Last model ibook G4, it sits on my desk all day and is ok w/o movement, but at home will randomly tell me I must shut it down, more often if I move it. Its still under warranty, so i'm gonna take it in and see what they do to it....

  • Continuously re-starting or shutting down and booting up iMac

    Will anything bad happen to the iMac or drive or anything like that if you restart your iMac several times every five minutes? I ask because a friend was having trouble with opening something and re-started his iMac 6 times in a row in hopes of being able to run something better. Will this have damaged anything like the hard disk or drive?
    Thanks!

    Jesse Smith wrote:
    What is processor control, though?
    When you click on "Shut Down" or "Restart" in the system menu (the left corner of the menu bar), OS-X tells the Intel processor to run a program that brings the machine down gracefully -- turning things off in the proper order. Holding down the "power button" to force a shutdown does the same thing -- the button doesn't turn off the power, it just tells the processor to run the shutdown program. The program turns off the power when it's finished.
    OTOH, if you just "pull the plug," everything suddenly loses power without having a chance to "tidy up" before the lights go out. If that happens in the middle of a partially-completed write to disk, you can easily end up with a corrupted file system. No permanent hardware damage, but the machine might not be able to reboot -- until you re-install the OS.
    Looby

  • My MacBook Air keeps shutting down and restarting - even with the lid closed.

    My MacBook Air keeps asking to confirm shutdown and if I don't respond within 5 secs in shuts and restarts - constantly.  Gap between restrats is never more than afew minutes.  Running OS X.6.8.  Software up to date.  Any ideas?

    The 2010 MBP has had a problem with GPU/LB
    See the link:
    http://support.apple.com/kb/TS4088
    This was taken care of by extending the AppleCare from date of purchase, if you are past this date check in to this
    http://nwsinglespeed.hubpages.com/hub/Do-You-Know-About-Apples-Flat-Rate-Repair- Pricing
    As you are not yet out of "supported" status
    Go to a Geniu sbar and have this cheched, make an appointment first
    http://www.apple.com/retail/geniusbar/

  • Shut Down and Restart problems

    My Powermac G5 has recently started having issues whilst restarting and shutting down. When asked to do so it quits all apps as usual then the finder quits (or at least the menu bar etc disappears) but before it gets to the blue screen it simply hangs and goes no further. The only way I can then get it to shut down is to hold the power button in for several seconds.
    I have tried everything I can think of:
    Repaired permissions,
    Run daily weekly and monthly maintenance scripts,
    I've even booted from the install DVD and run repair disk from within Disk Utility - no repairs were neccesary but when asked to restart whilst booted from the install DVD the same issue arose and the machine just froze.
    Is there anything else I should try to fix this? How can I get my machine to restart / shut down?
    Thanks.
    Al.

    Thanks, I'll give it a go.... I've already tried the quitting of apps approach and that didn't help, but I haven't tried logging off first so I will see if that help.
    On some occasions I've had trouble quitting apps as well, and can't force quit them either which hasn't helped, and it also sounds as though the fans are running a little more than they used to (but that could just be me being paranoid now that things aren't as they should be).
    I'm beginning to think that this has only started happening since the update to 1.4.10, but I can't be sure.
    I'll see how it goes today.
    Thanks.
    Al.

  • Microsoft Excel slowing down and other problems when SAP BPC EPM Add-in is installed

    Hello,
    Our client is having some problems with Microsoft Excel (MS Office 2013) since the SAP BPC EPM Add-in was installed in their computers.
    They are suffering from Microsoft Excel slowing down, even when not connected to SAP BPC (10.0 NW version).
    For example, when opening two or more excel archives, not connected to SAP BPC, Microsoft Excel crashes and is restarted with errors.
    Have you experienced something similar in other installations?
    Thank you very much, and kind regards,

    In relation to the previous post , we have to emphasize that we have installed in ours PC's:
    MS Office 2010  14.0.7116.5000  32 bit,
    EPM add-on version 10.0  SP20  (10.0.0.8993).
    and our customer have installed in theirs PC's:
    MS Office 2013 15.0.4675.1001 32-bit.
    EPM add-on version 10.0 SP19 patch 1 .NET 3.5 compilation 936.
    Thank you very much

Maybe you are looking for