2019.9
当前项目使用redis数据库, fastdfs分布式文件管理系统, nginx服务器, 以及django自带的服务器
开启服务:
#! /bin/bash echo -e "\033[34m-----Start-----\033[0m" sudo /usr/local/nginx/sbin/nginx echo $? sudo redis-server /etc/redis/redis.conf echo $? sudo /usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf echo $? sudo /usr/bin/fdfs_storaged /etc/fdfs/storage.conf echo $? echo echo -e "\033[34m----------\033[0m" ps aux|grep ‘redis\|fdfs\|nginx\|python‘ echo -e "\033[34m----------\033[0m"
关闭服务:
#! /bin/bash echo -e "\033[34m-----Stop-----\033[0m" sudo /usr/local/nginx/sbin/nginx -s stop echo $? sudo killall fdfs_trackerd echo $? sudo killall fdfs_storaged echo $? sudo killall redis-server echo $? echo echo -e "\033[37m----------\033[0m" ps aux|grep ‘redis\|fdfs\|nginx\|python‘ echo -e "\033[37m----------\033[0m"
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did171466