alibabacloud に django Web アプリケーションをデプロイしようとしていますが、すべてが完全に機能しているようです (仮想環境で gunicorn --bind 0.0.0.0:8000 project_name.wsgi を実行しています)。
次に、仮想環境を非アクティブ化してセットアップした後
[Unit]
Description=gunicorn daemon
After=network.target
[Service]
User=admin
Group=www-data
WorkingDirectory=/home/admin/project_name
ExecStart=/home/admin/project_name/myprojectenv/bin/gunicorn --access-logfile - --workers 3 --bind
unix:/home/admin/project_name/project_name.sock project_name.wsgi:application
/etc/systemd/system/gunicorn.service
その後実行するsudo systemctl start gunicorn
と、エラーが発生し続けます
Failed to start gunicorn.service: Unit gunicorn.service is masked.
どうすればこれを修正できますか?
試してみsystemctl unmask gunicorn.socket
ましたが、エラーが表示され続けます
Unit gunicorn.socket does not exist, proceeding anyway.
Failed to unmask unit: The name org.freedesktop.PolicyKit1 was not provided
by any .service files