Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Python 脚本每四个小时运行一次。这是 crontab 行:
* */4 * * * pi python /var/www/scripts/testProg.py >> /var/log/testProg.log
在/var/log/testProg.log文件中,我可以一遍又一遍地看到以下条目:
/var/log/testProg.log
错误 1205:超过锁定等待超时;尝试重启事务
我的脚本确实做了一些与 MySQL 相关的事情。这是因为数据库被另一个进程锁定了吗?