구름IDE 에서 django 에 nginx 붙이기
-
django에 nginx 붙일려고 했는데
구름 ide에서는 systemctl 명령어가 허용되지 않더라구요# daemon reload sudo systemctl daemon-reload # uswgi daemon enable and restart sudo systemctl start nginx sudo systemctl enable uwsgi sudo systemctl start uwsgi # check daemon sudo systemctl | grep nginx sudo systemctl | grep uwsgi # nginx restart sudo systemctl restart nginx sudo systemctl restart uwsgi # status check systemctl status nginx.service systemctl status uwsgi
이런 명령어들을 수행해야하는데 어떻게 해결할 수 있죠?
-
안녕하세요, 쿨해머 님.
nginx의 실행 및 관리는 터미널에서
service nginx <command>
를 입력하여 할 수 있습니다.