




-
Create the service file:
[Unit] Description=daphne daemon Requires=daphne.socket After=network.target [Service] Type=simple User=user_name WorkingDirectory=/var/www/app_name ExecStart=/home/user_name/python_env/bin/daphne -u /tmp/daphne.sock app_name.asgi:application [Install] WantedBy=multi-user.target
Command lines:
sudo systemctl start daphne.service sudo systemctl stop daphne.service sudo systemctl restart daphne.service sudo systemctl status daphne.service
May10 -
Change the specified port:
Restart the deamon:
Change the port and verify:
Ask access to firewall:
If you're on a VPS with a firewall, give access to the port
May9 -
Build your unix script:
python_script.sh:
Build the service to run the script:
startup.service:
[Unit] Description=Startup Script [Service] ExecStart=/bin/bash "/home/user_name/unix_script/python_script.sh" [Install] WantedBy=multi-user.target
Enable the service and build the symlink:
May8 -
Apr27
-
Apr15