1 Star 0 Fork 0

刘文杰/erpnext_chinese

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
stop.py 1.74 KB
一键复制 编辑 原始数据 按行查看 历史
刘文杰 提交于 2024-04-21 04:31 . init
#!/usr/bin/env python
""" stop.py is an attempt at creating an easy 'bench stop' command
Expected improvements:
- import port suffix from config/redis_cache.conf - done
- check for exceptions - done
- use SIGTERM - done
- Refactor code and merge with bench
- check for production where stop command will use supervisor
- check for non-ubuntu platforms
"""
import os, socket, errno, time
# Declaring part of ports.
# Getting port suffix from current redis config.
ports = [1100, 1200, 1300, 900, 800]
lines = {}
port_suffix = 0;
sockets = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
with open("./config/redis_cache.conf") as config_file:
for line in config_file:
key, value = line.partition(" ")[::2]
lines[key.strip()] = value.strip()
port_suffix = lines["port"][-1:]
config_file.close()
except IOError:
print('The file redis_cache.conf was not found. Are you sure you stop.py is in bench directory?')
exit();
# Closing open ports after combining each port prefix and suffix
for port in ports:
port = int("".join([str(port), str(port_suffix)]))
try:
sockets.bind(("127.0.0.1", port))
except socket.error as e:
if e.errno == errno.EADDRINUSE:
os.system("echo 'shutdown' | redis-cli -h 127.0.0.1 -p %d" % port)
time.sleep(3)
try:
sockets.bind(("127.0.0.1", port))
except socket.error as e:
if e.errno == errno.EADDRINUSE:
os.system("fuser %d/tcp -k" % port)
else:
print ('Port %d' % port, 'now closed')
else:
print ('Port %d' % port, 'already closed')
sockets.close()
sockets = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
continue
sockets.close()
print ('bench stopped')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liu-wen-jie/erpnext_chinese.git
git@gitee.com:liu-wen-jie/erpnext_chinese.git
liu-wen-jie
erpnext_chinese
erpnext_chinese
master

搜索帮助