From 2ee9d4db240b407f0798abed9d5af7006872c79b Mon Sep 17 00:00:00 2001 From: lb584 <lb584@cam.ac.uk> Date: Mon, 15 Apr 2024 11:54:52 +0100 Subject: [PATCH] adding some newlines --- docs/_source/iaas_setup.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/_source/iaas_setup.rst b/docs/_source/iaas_setup.rst index 59a6500..c9f2201 100644 --- a/docs/_source/iaas_setup.rst +++ b/docs/_source/iaas_setup.rst @@ -686,25 +686,31 @@ edit the contents of both files to be: sudo systemctl daemon-reload sudo systemctl enable airflow-scheduler.service + sudo systemctl enable airflow-webserver.service sudo systemctl start airflow-scheduler.service + sudo systemctl start airflow-webserver.service sudo systemctl restart airflow-scheduler.service + sudo systemctl restart airflow-webserver.service sudo systemctl stop airflow-scheduler.service + sudo systemctl stop airflow-webserver.service 3: check the status of the services sudo systemctl status airflow-scheduler.service + sudo systemctl status airflow-webserver.service 4: check the logs sudo journalctl -r -u airflow-scheduler.service + sudo journalctl -r -u airflow-webserver.service -- GitLab