Including ExecStop commands makes service (consul) fail to start properly

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












(crossposted from stack overflow https://stackoverflow.com/questions/52918503/including-execstop-commands-makes-service-consul-fail-to-start-properly)
I'm monkeying with consul trying to set up a small CoreOS cluster. If I save the following file to /etc/systemd/system/consul.service, enable the service, and reboot the VM, all 3 vms in the cluster will happily start up properly and join together



[Unit]
Description=consul
After=etcd2.service
After=docker.service

[Service]
TimeoutStartSec=0
ExecStartPre=-/usr/bin/docker kill consul
ExecStartPre=-/usr/bin/docker rm consul
ExecStart=/usr/bin/docker run -d --name consul --network host consul agent -server -bootstrap-expect=3 -data-dir /tmp/consul -bind BIND_IPADDR --node NODE_NAME -retry-join IPADDR1 -retry-join IPADDR2
# ExecStop=/usr/bin/docker container exec consul consul leave
# ExecStopPost=/usr/bin/docker container stop consul
# ExecStopPost=/usr/bin/docker container rm consul

[Install]
WantedBy=multi-user.target


If, however, I remove the comments from the ExecStop commands, the startup will fail, in the sense of no consul containers are running after the vms reboot. systemctl --failed doesn't report any services as having failed though.



What am I doing wrong? Am I misunderstanding ExecStop? Consul?









share







New contributor




Elliot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.























    up vote
    0
    down vote

    favorite












    (crossposted from stack overflow https://stackoverflow.com/questions/52918503/including-execstop-commands-makes-service-consul-fail-to-start-properly)
    I'm monkeying with consul trying to set up a small CoreOS cluster. If I save the following file to /etc/systemd/system/consul.service, enable the service, and reboot the VM, all 3 vms in the cluster will happily start up properly and join together



    [Unit]
    Description=consul
    After=etcd2.service
    After=docker.service

    [Service]
    TimeoutStartSec=0
    ExecStartPre=-/usr/bin/docker kill consul
    ExecStartPre=-/usr/bin/docker rm consul
    ExecStart=/usr/bin/docker run -d --name consul --network host consul agent -server -bootstrap-expect=3 -data-dir /tmp/consul -bind BIND_IPADDR --node NODE_NAME -retry-join IPADDR1 -retry-join IPADDR2
    # ExecStop=/usr/bin/docker container exec consul consul leave
    # ExecStopPost=/usr/bin/docker container stop consul
    # ExecStopPost=/usr/bin/docker container rm consul

    [Install]
    WantedBy=multi-user.target


    If, however, I remove the comments from the ExecStop commands, the startup will fail, in the sense of no consul containers are running after the vms reboot. systemctl --failed doesn't report any services as having failed though.



    What am I doing wrong? Am I misunderstanding ExecStop? Consul?









    share







    New contributor




    Elliot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.





















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      (crossposted from stack overflow https://stackoverflow.com/questions/52918503/including-execstop-commands-makes-service-consul-fail-to-start-properly)
      I'm monkeying with consul trying to set up a small CoreOS cluster. If I save the following file to /etc/systemd/system/consul.service, enable the service, and reboot the VM, all 3 vms in the cluster will happily start up properly and join together



      [Unit]
      Description=consul
      After=etcd2.service
      After=docker.service

      [Service]
      TimeoutStartSec=0
      ExecStartPre=-/usr/bin/docker kill consul
      ExecStartPre=-/usr/bin/docker rm consul
      ExecStart=/usr/bin/docker run -d --name consul --network host consul agent -server -bootstrap-expect=3 -data-dir /tmp/consul -bind BIND_IPADDR --node NODE_NAME -retry-join IPADDR1 -retry-join IPADDR2
      # ExecStop=/usr/bin/docker container exec consul consul leave
      # ExecStopPost=/usr/bin/docker container stop consul
      # ExecStopPost=/usr/bin/docker container rm consul

      [Install]
      WantedBy=multi-user.target


      If, however, I remove the comments from the ExecStop commands, the startup will fail, in the sense of no consul containers are running after the vms reboot. systemctl --failed doesn't report any services as having failed though.



      What am I doing wrong? Am I misunderstanding ExecStop? Consul?









      share







      New contributor




      Elliot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      (crossposted from stack overflow https://stackoverflow.com/questions/52918503/including-execstop-commands-makes-service-consul-fail-to-start-properly)
      I'm monkeying with consul trying to set up a small CoreOS cluster. If I save the following file to /etc/systemd/system/consul.service, enable the service, and reboot the VM, all 3 vms in the cluster will happily start up properly and join together



      [Unit]
      Description=consul
      After=etcd2.service
      After=docker.service

      [Service]
      TimeoutStartSec=0
      ExecStartPre=-/usr/bin/docker kill consul
      ExecStartPre=-/usr/bin/docker rm consul
      ExecStart=/usr/bin/docker run -d --name consul --network host consul agent -server -bootstrap-expect=3 -data-dir /tmp/consul -bind BIND_IPADDR --node NODE_NAME -retry-join IPADDR1 -retry-join IPADDR2
      # ExecStop=/usr/bin/docker container exec consul consul leave
      # ExecStopPost=/usr/bin/docker container stop consul
      # ExecStopPost=/usr/bin/docker container rm consul

      [Install]
      WantedBy=multi-user.target


      If, however, I remove the comments from the ExecStop commands, the startup will fail, in the sense of no consul containers are running after the vms reboot. systemctl --failed doesn't report any services as having failed though.



      What am I doing wrong? Am I misunderstanding ExecStop? Consul?







      systemd coreos





      share







      New contributor




      Elliot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.










      share







      New contributor




      Elliot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.








      share



      share






      New contributor




      Elliot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 3 mins ago









      Elliot

      101




      101




      New contributor




      Elliot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Elliot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Elliot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.

























          active

          oldest

          votes











          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          Elliot is a new contributor. Be nice, and check out our Code of Conduct.









           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f476896%2fincluding-execstop-commands-makes-service-consul-fail-to-start-properly%23new-answer', 'question_page');

          );

          Post as a guest



































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Elliot is a new contributor. Be nice, and check out our Code of Conduct.









           

          draft saved


          draft discarded


















          Elliot is a new contributor. Be nice, and check out our Code of Conduct.












          Elliot is a new contributor. Be nice, and check out our Code of Conduct.











          Elliot is a new contributor. Be nice, and check out our Code of Conduct.













           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f476896%2fincluding-execstop-commands-makes-service-consul-fail-to-start-properly%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          Peggy Mitchell

          Palaiologos

          The Forum (Inglewood, California)