Converte o arquivo Systemd (systemctl) de CentOs para Ubuntu

1

Eu tenho o fluxo de ar instalado no Ubuntu 16.04. Eu tenho o seguinte arquivo:

#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

[Unit]
Description=Airflow celery flower
After=network.target postgresql.service mysql.service redis.service rabbitmq-server.service
Wants=postgresql.service mysql.service redis.service rabbitmq-server.service

[Service]
EnvironmentFile=/etc/sysconfig/airflow
User=airflow
Group=airflow
Type=simple
ExecStart=/bin/airflow flower
Restart=on-failure
RestartSec=5s

[Install]
WantedBy=multi-user.target

Eu li o seguinte comentário abaixo do arquivo.

Tenha em mente que esses arquivos estão configurados para o CentOS. Se você instalá-los no Debian, substitua a variável EnviromentFile e modifique o caminho para o Bash no ExecStart.

Eu não tenho experiência com o sistema Linux.

Eu usei o arquivo acima, mas não funcionou. Alguém pode me dizer o que devo fazer?

o fluxo de ar está localizado "~ / airflow"

    
por Kppatel Patel 23.02.2017 / 18:36

1 resposta

1

A primeira coisa que noto é que o caminho para o arquivo não está correto.

Seu arquivo de configuração tem ExecStart=/bin/airflow flower , mas no seu comentário você diz

airflow is located ~/airflow

~/ é o diretório /home/$user do usuário conectado no momento.

    
por 23.02.2017 / 19:54