Swap gets deactivated to early

Since switching to Systemd on my Arch Linux Installation I am not able to influence the time the swap gets deactivated on shutdown. It simply gets deactivated with the following Message:
[  OK  ] Deactivated swap /dev/disk/by-id/ata-ST1500DL003-9VT...5YD51614-part3.
[  OK  ] Deactivated swap /dev/disk/by-id/wwn-0x5000c5003e1ae4b9-part3.
first thing after the halt command. Systemd seems to completely ignore Dependencies to custom made dev-sda3.swap Units and even removes the Swap this early if it was manually activated with the swapon command. Here is the Systemd Debug Output:
[root@server ~]# swapon -p 80 /dev/sda3
[ 47.130000] Adding 262140k swap on /dev/sda3. Priority:80 extents:1 across:262140k
dev-disk-by\x2duuid-cf99f458\x2d47e9\x2d4bb2\x2d9097\x2dbacc824d3653.swap changed dead -> active
Successfully opened /dev/console for logging.
dev-disk-by\x2dpath-platform\x2doxnassata.0\x2dscsi\x2d0:0:0:0\x2dpart3.swap changed dead -> active
Successfully opened /dev/console for logging.
dev-disk-by\x2did-wwn\x2d0x5000c5003e1ae4b9\x2dpart3.swap changed dead -> active
Successfully opened /dev/console for logging.
dev-disk-by\x2did-ata\x2dST1500DL003\x2d9VT16L_5YD51614\x2dpart3.swap changed dead -> active
Successfully opened /dev/console for logging.
[root@server ~]# halt
Accepted connection on private bus.
Got D-Bus request: org.freedesktop.systemd1.Manager.StartUnit() on /org/freedesktop/systemd1
Trying to enqueue job halt.target/start/replace
Installed new job halt.target/start as 59
Installed new job systemd-halt.service/start as 60
Installed new job shutdown.target/start as 61
Installed new job systemd-random-seed-save.service/start as 62
Installed new job systemd-update-utmp-shutdown.service/start as 65
Installed new job local-fs.target/stop as 66
Installed new job systemd-user-sessions.service/stop as 68
Installed new job basic.target/stop as 69
Installed new job multi-user.target/stop as 70
Installed new job graphical.target/stop as 71
Installed new job dbus.service/stop as 73
Installed new job systemd-logind.service/stop as 74
Installed new job [email protected]/stop as 75
Installed new job [email protected]/stop as 76
Installed new job xinetd.service/stop as 77
Installed new job ntpd.service/stop as 79
Installed new job network.service/stop as 80
Installed new job systemd-tmpfiles-clean.timer/stop as 81
Installed new job systemd-ask-password-wall.path/stop as 88
Installed new job dbus.socket/stop as 89
Installed new job network.target/stop as 91
Installed new job getty.target/stop as 92
Installed new job sysinit.target/stop as 94
Installed new job systemd-ask-password-console.path/stop as 95
Installed new job systemd-sysctl.service/stop as 99
Installed new job systemd-vconsole-setup.service/stop as 100
Installed new job cryptsetup.target/stop as 101
Installed new job swap.target/stop as 102
Installed new job remote-fs.target/stop as 105
Installed new job sockets.target/stop as 106
Installed new job systemd-remount-fs.service/stop as 107
Installed new job local-fs-pre.target/stop as 108
Installed new job umount.target/start as 109
Installed new job tmp.mount/stop as 110
Installed new job dev-disk-by\x2duuid-cf99f458\x2d47e9\x2d4bb2\x2d9097\x2dbacc824d3653.swap/stop as 111
Installed new job dev-disk-by\x2dpath-platform\x2doxnassata.0\x2dscsi\x2d0:0:0:0\x2dpart3.swap/stop as 112
Installed new job dev-disk-by\x2did-wwn\x2d0x5000c5003e1ae4b9\x2dpart3.swap/stop as 113
Installed new job dev-disk-by\x2did-ata\x2dST1500DL003\x2d9VT16L_5YD51614\x2dpart3.swap/stop as 114
Installed new job final.target/start as 116
Enqueued job halt.target/start as 59
Redirecting stop request from dev-disk-by\x2did-ata\x2dST1500DL003\x2d9VT16L_5YD51614\x2dpart3.swap to dev-sda3.swap.
Job dev-disk-by\x2did-ata\x2dST1500DL003\x2d9VT16L_5YD51614\x2dpart3.swap/stop finished, result=done
[[1m[32m OK [0m] Deactivated swap /dev/disk/by-id/ata-ST1500DL003-9VT...5YD51614-part3.
Redirecting stop request from dev-disk-by\x2did-wwn\x2d0x5000c5003e1ae4b9\x2dpart3.swap to dev-sda3.swap.
Job dev-disk-by\x2did-wwn\x2d0x5000c5003e1ae4b9\x2dpart3.swap/stop finished, result=done
[[1m[32m OK [0m] Deactivated swap /dev/disk/by-id/wwn-0x5000c5003e1ae4b9-part3.
Redirecting stop request from dev-disk-by\x2dpath-platform\x2doxnassata.0\x2dscsi\x2d0:0:0:0\x2dpart3.swap to dev-sda3.swap.
Job dev-disk-by\x2dpath-platform\x2doxnassata.0\x2dscsi\x2d0:0:0:0\x2dpart3.swap/stop finished, result=done
[[1m[32m OK [0m] Deactivated swap /dev/disk/by-path/platform-oxnassat...-0:0:0:0-part3.
Redirecting stop request from dev-disk-by\x2duuid-cf99f458\x2d47e9\x2d4bb2\x2d9097\x2dbacc824d3653.swap to dev-sda3.swap.
Job dev-disk-by\x2duuid-cf99f458\x2d47e9\x2d4bb2\x2d9097\x2dbacc824d3653.swap/stop finished, result=done
[[1m[32m OK [0m] Deactivated swap /dev/disk/by-uuid/cf99f458-47e9-4bb...7-bacc824d3653.
graphical.target changed active -> dead
This causes my small server to crash because the swap is removed before Ram consuming processes ( samba4 mysql etc. ) are terminated.
Does anyone have an Idea how to prevent this behaviour?

Since switching to Systemd on my Arch Linux Installation I am not able to influence the time the swap gets deactivated on shutdown. It simply gets deactivated with the following Message:
[  OK  ] Deactivated swap /dev/disk/by-id/ata-ST1500DL003-9VT...5YD51614-part3.
[  OK  ] Deactivated swap /dev/disk/by-id/wwn-0x5000c5003e1ae4b9-part3.
first thing after the halt command. Systemd seems to completely ignore Dependencies to custom made dev-sda3.swap Units and even removes the Swap this early if it was manually activated with the swapon command. Here is the Systemd Debug Output:
[root@server ~]# swapon -p 80 /dev/sda3
[ 47.130000] Adding 262140k swap on /dev/sda3. Priority:80 extents:1 across:262140k
dev-disk-by\x2duuid-cf99f458\x2d47e9\x2d4bb2\x2d9097\x2dbacc824d3653.swap changed dead -> active
Successfully opened /dev/console for logging.
dev-disk-by\x2dpath-platform\x2doxnassata.0\x2dscsi\x2d0:0:0:0\x2dpart3.swap changed dead -> active
Successfully opened /dev/console for logging.
dev-disk-by\x2did-wwn\x2d0x5000c5003e1ae4b9\x2dpart3.swap changed dead -> active
Successfully opened /dev/console for logging.
dev-disk-by\x2did-ata\x2dST1500DL003\x2d9VT16L_5YD51614\x2dpart3.swap changed dead -> active
Successfully opened /dev/console for logging.
[root@server ~]# halt
Accepted connection on private bus.
Got D-Bus request: org.freedesktop.systemd1.Manager.StartUnit() on /org/freedesktop/systemd1
Trying to enqueue job halt.target/start/replace
Installed new job halt.target/start as 59
Installed new job systemd-halt.service/start as 60
Installed new job shutdown.target/start as 61
Installed new job systemd-random-seed-save.service/start as 62
Installed new job systemd-update-utmp-shutdown.service/start as 65
Installed new job local-fs.target/stop as 66
Installed new job systemd-user-sessions.service/stop as 68
Installed new job basic.target/stop as 69
Installed new job multi-user.target/stop as 70
Installed new job graphical.target/stop as 71
Installed new job dbus.service/stop as 73
Installed new job systemd-logind.service/stop as 74
Installed new job [email protected]/stop as 75
Installed new job [email protected]/stop as 76
Installed new job xinetd.service/stop as 77
Installed new job ntpd.service/stop as 79
Installed new job network.service/stop as 80
Installed new job systemd-tmpfiles-clean.timer/stop as 81
Installed new job systemd-ask-password-wall.path/stop as 88
Installed new job dbus.socket/stop as 89
Installed new job network.target/stop as 91
Installed new job getty.target/stop as 92
Installed new job sysinit.target/stop as 94
Installed new job systemd-ask-password-console.path/stop as 95
Installed new job systemd-sysctl.service/stop as 99
Installed new job systemd-vconsole-setup.service/stop as 100
Installed new job cryptsetup.target/stop as 101
Installed new job swap.target/stop as 102
Installed new job remote-fs.target/stop as 105
Installed new job sockets.target/stop as 106
Installed new job systemd-remount-fs.service/stop as 107
Installed new job local-fs-pre.target/stop as 108
Installed new job umount.target/start as 109
Installed new job tmp.mount/stop as 110
Installed new job dev-disk-by\x2duuid-cf99f458\x2d47e9\x2d4bb2\x2d9097\x2dbacc824d3653.swap/stop as 111
Installed new job dev-disk-by\x2dpath-platform\x2doxnassata.0\x2dscsi\x2d0:0:0:0\x2dpart3.swap/stop as 112
Installed new job dev-disk-by\x2did-wwn\x2d0x5000c5003e1ae4b9\x2dpart3.swap/stop as 113
Installed new job dev-disk-by\x2did-ata\x2dST1500DL003\x2d9VT16L_5YD51614\x2dpart3.swap/stop as 114
Installed new job final.target/start as 116
Enqueued job halt.target/start as 59
Redirecting stop request from dev-disk-by\x2did-ata\x2dST1500DL003\x2d9VT16L_5YD51614\x2dpart3.swap to dev-sda3.swap.
Job dev-disk-by\x2did-ata\x2dST1500DL003\x2d9VT16L_5YD51614\x2dpart3.swap/stop finished, result=done
[[1m[32m OK [0m] Deactivated swap /dev/disk/by-id/ata-ST1500DL003-9VT...5YD51614-part3.
Redirecting stop request from dev-disk-by\x2did-wwn\x2d0x5000c5003e1ae4b9\x2dpart3.swap to dev-sda3.swap.
Job dev-disk-by\x2did-wwn\x2d0x5000c5003e1ae4b9\x2dpart3.swap/stop finished, result=done
[[1m[32m OK [0m] Deactivated swap /dev/disk/by-id/wwn-0x5000c5003e1ae4b9-part3.
Redirecting stop request from dev-disk-by\x2dpath-platform\x2doxnassata.0\x2dscsi\x2d0:0:0:0\x2dpart3.swap to dev-sda3.swap.
Job dev-disk-by\x2dpath-platform\x2doxnassata.0\x2dscsi\x2d0:0:0:0\x2dpart3.swap/stop finished, result=done
[[1m[32m OK [0m] Deactivated swap /dev/disk/by-path/platform-oxnassat...-0:0:0:0-part3.
Redirecting stop request from dev-disk-by\x2duuid-cf99f458\x2d47e9\x2d4bb2\x2d9097\x2dbacc824d3653.swap to dev-sda3.swap.
Job dev-disk-by\x2duuid-cf99f458\x2d47e9\x2d4bb2\x2d9097\x2dbacc824d3653.swap/stop finished, result=done
[[1m[32m OK [0m] Deactivated swap /dev/disk/by-uuid/cf99f458-47e9-4bb...7-bacc824d3653.
graphical.target changed active -> dead
This causes my small server to crash because the swap is removed before Ram consuming processes ( samba4 mysql etc. ) are terminated.
Does anyone have an Idea how to prevent this behaviour?

Similar Messages

  • Datasources getting deactivated after system restart

    Hi,
    We are facing a issue while system restart the datasources are getting deactivated.
    Can anyone let me know where to check to debug this issue.
    Thanks & Regards,
    Ankur Deshpande
    P.S: Points will be awarded

    Hi Ankur,
    We too are facing the same error.
    Br,
    Praby

  • Im trying to deactivate CS5 Web Premium, but keep getting Deactivation Unsuccessful with Error Code

    Im trying to deactivate CS5 Web Premium, but keep getting Deactivation Unsuccessful with Error Code 209:0

    you can ask adobe support to reset your activation count, https://helpx.adobe.com/contact.html

  • Buying iPhone as Xmas Gift,does old AT&T phone get deactivated immediately?

    I am buying an iPhone for my wife as a Christmas gift today, but I do not want her current AT&T subscribed phone to get deactivated immediately, but on Christmas day. Otherwise it would spoil the surprise.
    Is there a way for them to delay activate it or some other way as to not have my wife's current phone (Blackberry) deactivated as soon as I buy her new iPhone???
    Many thanks.

    Yes, I have thought of these solutions, but going to the Apple store on the 26th would be more suicidal than going there today... I would like to get the phone today for the Christmas gift. Loses too much impact with a gift card...
    Message was edited by: Solution Room

  • PO Release Workflow getting deactivated all the time

    Hi,
    I have Configured the Po Release WF but as sometimes the PO ic created without release code and Release code being mandaroy in the WF, the WF gets deactivated all the time. so is there any way to figure in out with some solution
    Thanks

    Hi singh,
    Go to SWE2 tcode and double click on the receiver type  entry,you can find an option " behaviour upon error feedback "  which will be  set to "system defaults" change that to " do not change linkage "  and make sure that your linkage is activated.Hope this helps you.

  • CVCs are getting deactivated in Product Allocation Group

    Hello Everyone,
    We recently implemented OSS note 1254342 as we were getting dump while transferring CVC from Planning area to Product Allocation Group. But now after that note is transported we face new issue as sometimes all the CVCs in Product allocation group are getting deactivated. The original issue is resolved now. If anyone has any idea about it please let me know.
    Thanks
    Nitin

    Hi Experts,
         Please help me on this.
    Regards,
    Ajit

  • What is the best Video Card I can get for an Early 2008 Mac Pro?

    What is the best Video Card I can get for an Early 2009 Mac Pro3,1?

    A 3,1 is "Early 2008" with DDR2 FBDIMMs, Intel 54xx Harpertown, and not 2009 Nehalem with DDR3.
    http://www.barefeats.com bench tests. A 3,1 does not improve as much due to its old PCIe 2.0 implementation for one thing.
    "Best" is hugely subjective. For what? cost versus performance and whether you need CUDA support or AMD - dual AMD's for FCP-X for instance.
    I think GTX 970 right now is close to "best".
    And of course shop here:
    http://www.macvidcards.com

  • Is there an add on I can get for my early 2009 17inch that will let me use Thunderbolt connector?

    Is there some sort of add on or adaptor I can get that will allow me to use my early 2009 macbook pro with a 27inch screen connected via thunderbolt??

    NO!  Only the newer generations of MBP's have it.  There is no retrofit available.  Apple sells two identical 27" monitors, one with Thunderbolt connectivity, and one for the "old fashion" connectivity.  Go to the STORE on the web site and you will find the sepcifications.  Visually there should not be any difference between the two as is the price ($999 ouch!).
    Ciao.

  • Anyone in Florida panhandle get thier phone early?

    I'm in fort walton beach and i just ordered my X on the 25th through a phone rep. I got a projected ship date of 9/09 but from the looks of it some people are getting thier phones alot earlier some depending on area just wondering if anyone in my area got thiers early and if it shipped out of houston tx like mine is supposed to at some point

    We are always shipping items as soon as they are available. Sometimes that means getting it earlier than expected. But know you can check out the status of your order Here For Order Status Hope this helps.

  • I have been getting this (or earlier version) messages every time Firefox updates for at least a year "The Java Console extension is no longer supported and will be automatically removed the next time you restart Firefox. " What should I do?

    For a long time, each time Firefox updates, it invites me to install theJava Console Update. then I get a message that Java Console not supported.

    You can uninstall (remove) the Java Console extensions and disable the Java Quick Starter extension, you do not need them to run Java applets.
    See http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    Disable the Java Quick Starter extension (if you have it): Tools -> Add-ons -> Extensions<br />
    Control Panel -> Java -> Advanced tab -> Miscellaneous -> Java Quick Starter (disable)
    See http://www.java.com/en/download/help/quickstarter.xml - What is Java Quick Starter (JQS)? What is the benefit of running JQS? - 6.0

  • I back up with an external hard drive using time machine.  I am trying to reload my iphoto library from an earlier date then it will let me.  How do I get to an earlier date in time machine?

    I back up with an external hard drive using time machine.  I am trying to reload my iphoto library but it won't let me get back to a date that I need to.  How do I do this?

    Try Pondini's articles;
    http://pondini.org/TM/15.html - scroll down to the pink box for iPhoto restoation.
    Also http://pondini.org/TM/15A.html to clarify how to use the timeline.

  • I get Deactivation Error 194:3 when trying to deactivate Photoshop elements from an old PC.

    I have Photoshop elements on an old PC, I want to deactivate it to set up on my new PC.
    I keep getting Error 194:3 whenever I try to deactivate.

    Contact support to reset activations.
    Mylenium

  • How do i get back the earlier inbox listing of email

    the new listing of incoming emails is unacceptable. how do I get back the original display?

    Firefox doesn't do email, it's strictly a web browser.
    If you are using Firefox to access your mail, you are using "web-mail". We might have an answer for you if we knew which web mail service provider this problem is with. Or, you could seek support from your service provider or a forum for that service.

  • Website will not accept Firefox 4; also,can't tell whether any connection is encrypted--how do I get back to earlier versions( my 3.6 file is corrupted)?

    I bank by the internet. I upgraded to Firefox 4.0, and my bank indicates it does not accept this version of Firefox. Also, I was using 4.0 to order some products over the internet, and noticed that the "padlock" indicating a secure(encrypted) connection is not present on the 4.0 version--so I did not complete my order.
    When I tried to reload my previous version(3.6), I got a message that the file was corrupted(possibly because I upgraded to 4.0). I didn't have these problems before I upgraded to 4.0--how do I get a clean version of Firefox 3.6( your website only offers 4.0)?

    In Firefox 4 you no longer have the Status bar that showed the padlock in previous Firefox versions.
    You can click the "Site Identity Button" on the left end of the location bar to see the padlock.<br />
    See: [[Site Identity Button]]
    A click on the "More Information" button will show details about the connection.<br />
    The background color of the "Site Identity Button" on the left end of the location bar will change color (blue or green) and show the domain in case of a secure https connection.
    * Hover the Site Identity Button then to see "Verified by xxxx"
    * Click the [[Site Identity Button]] on the left end of the location bar to see the padlock
    * Click the "More Information" button in that pop-up to see additional information about the connection.
    You can find Firefox 3.6.x here:
    *http://www.mozilla.com/en-US/firefox/all-older.html

  • Transport tequest not getting deactivated  for tcode ksu1 & ksv1 in sandbox

    Hi,
         my requirement is to deactivate transport request for tcode ksu1 & ksv1 in sandbox. i applied SAP NOTE 326080 in sandbox. but still getting transport request for the tcode ksu1 & ksv1.
    please tell me how to resolve this issue.
    Thanks.
    Rohitasya

    Seems like the note you implemented activated the checkbox "Current Setting" in Transaction Code SOBJ for object such as CPC1 I would suggest you to go verify that (if the check box is active) if you look in the field 'Transport' above it, it says "Automatic Transport" and that check box means
    Flag: Object belongs to current settings
    Indicates that the current settings in the production system could entail changes
    for the object involved.
    Use
    SAP determines the number of client-specific Customizing objects that belong
    to the current settings.
    Dependencies
    The flag is only relevant in a production client ("productive" role in the client table).
    Even if changes to client-specific objects are not allowed, the current setting can
    be changed in a production client without being recorded automatically.
    Since the very purpose of the note you implemented is to test KSU1 to able to run (for a non-modifiable system which is production type system) you have to make your sand box behave like production. So, my suggestion would be go to SCC4 and change the Client role to "Production"  don't do any other changes, then ask your Costing consultant to test KSU1 and KSV1 transactions and as soon as he tests if it's working fine, revert the Client role to whatever it was.
    You may look at the following post also
    Distribution and Assessment Cycle
    Edited by: Jeevan Sagar on Sep 13, 2011 6:44 AM

Maybe you are looking for

  • Deployment of SOAP client...

    Hi, My setup is iAS 10.1.2.0, database is 10.1.0.2, JDeveloper is 10.1.2.0. I am trying to deploy a SOAP client stub to the database, when I get the errors below. Obviously I will have to load some JARs to correct this. Having read the "http://www.or

  • Cumulative Percent only displaying when there is a number present

    Hi I am using the below cumulative percent formula for a chart and pivot table display (see below code). The problem is that the cumulative percent and cumulative number are only showing up in the pivot table when there is a number to cumulate (see b

  • Camera shutter sound always on full volume

    Every time I go to my camera app to take a picture. The shutter sound always goes off even though I have my phone on silent or on vibrate or even on the lowest volume. I restore my phone a few hours ago and it's still doing it. Is there a way to remo

  • Nokia X2-02 Frequent Display Flickering

    i bought x2 02 1 wk back when i visited nokia care shop for display flickering they told me to update version of firmware i followed their advice they got me updated to v 11.57 however display flickering continues to remain headche plz help

  • Using Novatel Merlin XU870

    Hi, I'm having some issues with Merlin XU870 express card after upgrading to Leopard. Before I upgrade to Tiger, under Network preferences, I used to be able to enter APN under the Telephone number. But now there is no Telephone Number field, only ac