1234567891011121314151617181920212223 |
- #!/usr/bin/env bash
- systemctl restart memcached
- systemctl enable memcached
- systemctl status memcached
- killall -9 uwsgi
- nohup uwsgi --ini uwsgi.ini & ls
- systemctl restart nginx
- systemctl status nginx
- ps -ef | grep uwsgi
- cd -
|