Ubuntu 16 - How to make Systemd keep on trying to start service even when start condition failed?Using /usr/local/bin/mpd instead of /usr/bin/mpdMongoDB 3.0.2 won't start after upgrading to Ubuntu 16.04MySQL not working after upgrade from 14.04 to 16.04Second ssh instance won't start after upgrade to Xenial Xerus - Permission deniedWhy does my systemd service shut down immediately after running?Systemd doesn't restart monit after killWhat is the proper way to install ZooKeeper on Ubuntu 16.04 for both standalone and multi-node deployment?Install Redis-Server on Ubuntu 16.04 LTS minimalsystemd-networkd.socket failed. Any ideas on what to do?ubuntu snmpd ignores /etc/default/snmpd

I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?

Can a Gentile theist be saved?

Can a Bard use an arcane focus?

No idea how to draw this using tikz

Is infinity mathematically observable?

How to color a zone in Tikz

Partial sums of primes

Can the electrostatic force be infinite in magnitude?

Can I create an upright 7-foot × 5-foot wall with the Minor Illusion spell?

Calculating the number of days between 2 dates in Excel

Lifted its hind leg on or lifted its hind leg towards?

Organic chemistry Iodoform Reaction

Female=gender counterpart?

Was the picture area of a CRT a parallelogram (instead of a true rectangle)?

What does the "3am" section means in manpages?

Meta programming: Declare a new struct on the fly

Giant Toughroad SLR 2 for 200 miles in two days, will it make it?

Can I rely on these GitHub repository files?

Are Warlocks Arcane or Divine?

Why are on-board computers allowed to change controls without notifying the pilots?

Word describing multiple paths to the same abstract outcome

Should my PhD thesis be submitted under my legal name?

What do you call the infoboxes with text and sometimes images on the side of a page we find in textbooks?

Can the harmonic series explain the origin of the major scale?



Ubuntu 16 - How to make Systemd keep on trying to start service even when start condition failed?


Using /usr/local/bin/mpd instead of /usr/bin/mpdMongoDB 3.0.2 won't start after upgrading to Ubuntu 16.04MySQL not working after upgrade from 14.04 to 16.04Second ssh instance won't start after upgrade to Xenial Xerus - Permission deniedWhy does my systemd service shut down immediately after running?Systemd doesn't restart monit after killWhat is the proper way to install ZooKeeper on Ubuntu 16.04 for both standalone and multi-node deployment?Install Redis-Server on Ubuntu 16.04 LTS minimalsystemd-networkd.socket failed. Any ideas on what to do?ubuntu snmpd ignores /etc/default/snmpd













0















I have a sytemd unit file for kafka like below.



[Unit]
Description=Apache Kafka server (broker)
Documentation=http://kafka.apache.org/documentation.html
Requires=network.target remote-fs.target
After=network.target remote-fs.target kafka-zookeeper.service

[Service]
Type=simple
User=nano
Group=nano
Environment=JAVA_HOME=/usr/java/jdk1.8.0_102
ExecStart=/opt/kafka/bin/kafka-server-start.sh /opt/kafka/config/server.properties
ExecStop=/opt/kafka/bin/kafka-server-stop.sh
RestartSec=2s
Restart=always

[Install]
WantedBy=multi-user.target


Zookeeper unit file.



[Service]
Type=simple
User=nano
Group=nano
Environment=JAVA_HOME=/usr/java/jdk1.8.0_102
ExecStart=/opt/kafka/bin/zookeeper-server-start.sh /opt/kafka/config/zookeeper.properties
ExecStop=/opt/kafka/bin/zookeeper-server-stop.sh
RestartSec=2s
Restart=always


Sometimes I am observing that kafka is in a stopped state and doing systemctl status kafka.service showing me the below message



ubuntu@platform3:/usr/lib/systemd/system$ sudo systemctl status kafka.service
● kafka.service - Kafka Service
Loaded: loaded (/usr/lib/systemd/system/kafka.service; enabled; vendor preset: enabled)
Active: inactive (dead)
Condition: start condition failed at Mon 2019-03-25 17:56:30 UTC; 10h ago


On checking logs it seems when sudo systemctl start kafka.service was executed that time zookeeper was not running . So the pre-condition did not meet and kafka did not start.



But after sometime zookeeper was up and running but even then Kafka did not start. Can someone let me know if there is a way I can make systemd keep on trying to start kafka and not just stop once if pre-conditions are not met like the way it is happening now?









share


























    0















    I have a sytemd unit file for kafka like below.



    [Unit]
    Description=Apache Kafka server (broker)
    Documentation=http://kafka.apache.org/documentation.html
    Requires=network.target remote-fs.target
    After=network.target remote-fs.target kafka-zookeeper.service

    [Service]
    Type=simple
    User=nano
    Group=nano
    Environment=JAVA_HOME=/usr/java/jdk1.8.0_102
    ExecStart=/opt/kafka/bin/kafka-server-start.sh /opt/kafka/config/server.properties
    ExecStop=/opt/kafka/bin/kafka-server-stop.sh
    RestartSec=2s
    Restart=always

    [Install]
    WantedBy=multi-user.target


    Zookeeper unit file.



    [Service]
    Type=simple
    User=nano
    Group=nano
    Environment=JAVA_HOME=/usr/java/jdk1.8.0_102
    ExecStart=/opt/kafka/bin/zookeeper-server-start.sh /opt/kafka/config/zookeeper.properties
    ExecStop=/opt/kafka/bin/zookeeper-server-stop.sh
    RestartSec=2s
    Restart=always


    Sometimes I am observing that kafka is in a stopped state and doing systemctl status kafka.service showing me the below message



    ubuntu@platform3:/usr/lib/systemd/system$ sudo systemctl status kafka.service
    ● kafka.service - Kafka Service
    Loaded: loaded (/usr/lib/systemd/system/kafka.service; enabled; vendor preset: enabled)
    Active: inactive (dead)
    Condition: start condition failed at Mon 2019-03-25 17:56:30 UTC; 10h ago


    On checking logs it seems when sudo systemctl start kafka.service was executed that time zookeeper was not running . So the pre-condition did not meet and kafka did not start.



    But after sometime zookeeper was up and running but even then Kafka did not start. Can someone let me know if there is a way I can make systemd keep on trying to start kafka and not just stop once if pre-conditions are not met like the way it is happening now?









    share
























      0












      0








      0








      I have a sytemd unit file for kafka like below.



      [Unit]
      Description=Apache Kafka server (broker)
      Documentation=http://kafka.apache.org/documentation.html
      Requires=network.target remote-fs.target
      After=network.target remote-fs.target kafka-zookeeper.service

      [Service]
      Type=simple
      User=nano
      Group=nano
      Environment=JAVA_HOME=/usr/java/jdk1.8.0_102
      ExecStart=/opt/kafka/bin/kafka-server-start.sh /opt/kafka/config/server.properties
      ExecStop=/opt/kafka/bin/kafka-server-stop.sh
      RestartSec=2s
      Restart=always

      [Install]
      WantedBy=multi-user.target


      Zookeeper unit file.



      [Service]
      Type=simple
      User=nano
      Group=nano
      Environment=JAVA_HOME=/usr/java/jdk1.8.0_102
      ExecStart=/opt/kafka/bin/zookeeper-server-start.sh /opt/kafka/config/zookeeper.properties
      ExecStop=/opt/kafka/bin/zookeeper-server-stop.sh
      RestartSec=2s
      Restart=always


      Sometimes I am observing that kafka is in a stopped state and doing systemctl status kafka.service showing me the below message



      ubuntu@platform3:/usr/lib/systemd/system$ sudo systemctl status kafka.service
      ● kafka.service - Kafka Service
      Loaded: loaded (/usr/lib/systemd/system/kafka.service; enabled; vendor preset: enabled)
      Active: inactive (dead)
      Condition: start condition failed at Mon 2019-03-25 17:56:30 UTC; 10h ago


      On checking logs it seems when sudo systemctl start kafka.service was executed that time zookeeper was not running . So the pre-condition did not meet and kafka did not start.



      But after sometime zookeeper was up and running but even then Kafka did not start. Can someone let me know if there is a way I can make systemd keep on trying to start kafka and not just stop once if pre-conditions are not met like the way it is happening now?









      share














      I have a sytemd unit file for kafka like below.



      [Unit]
      Description=Apache Kafka server (broker)
      Documentation=http://kafka.apache.org/documentation.html
      Requires=network.target remote-fs.target
      After=network.target remote-fs.target kafka-zookeeper.service

      [Service]
      Type=simple
      User=nano
      Group=nano
      Environment=JAVA_HOME=/usr/java/jdk1.8.0_102
      ExecStart=/opt/kafka/bin/kafka-server-start.sh /opt/kafka/config/server.properties
      ExecStop=/opt/kafka/bin/kafka-server-stop.sh
      RestartSec=2s
      Restart=always

      [Install]
      WantedBy=multi-user.target


      Zookeeper unit file.



      [Service]
      Type=simple
      User=nano
      Group=nano
      Environment=JAVA_HOME=/usr/java/jdk1.8.0_102
      ExecStart=/opt/kafka/bin/zookeeper-server-start.sh /opt/kafka/config/zookeeper.properties
      ExecStop=/opt/kafka/bin/zookeeper-server-stop.sh
      RestartSec=2s
      Restart=always


      Sometimes I am observing that kafka is in a stopped state and doing systemctl status kafka.service showing me the below message



      ubuntu@platform3:/usr/lib/systemd/system$ sudo systemctl status kafka.service
      ● kafka.service - Kafka Service
      Loaded: loaded (/usr/lib/systemd/system/kafka.service; enabled; vendor preset: enabled)
      Active: inactive (dead)
      Condition: start condition failed at Mon 2019-03-25 17:56:30 UTC; 10h ago


      On checking logs it seems when sudo systemctl start kafka.service was executed that time zookeeper was not running . So the pre-condition did not meet and kafka did not start.



      But after sometime zookeeper was up and running but even then Kafka did not start. Can someone let me know if there is a way I can make systemd keep on trying to start kafka and not just stop once if pre-conditions are not met like the way it is happening now?







      16.04 systemd





      share












      share










      share



      share










      asked 9 mins ago









      tuktuk

      1136




      1136




















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "89"
          ;
          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',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1128725%2fubuntu-16-how-to-make-systemd-keep-on-trying-to-start-service-even-when-start%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Ask Ubuntu!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1128725%2fubuntu-16-how-to-make-systemd-keep-on-trying-to-start-service-even-when-start%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

          Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

          Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»