workerman+tp5的错误问题怎么解决

广告:宝塔Linux面板高效运维的服务器管理软件 点击【 https://www.bt.cn/p/uNLv1L 】立即购买

workerman+tp5的错误问题怎么解决

workerman+tp5的错误问题怎么解决?thinkphp5+workerman 报错问题

在thinkphp5.0.X版本早期会遇到长时间开启workerman服务会报错,在thinkphp5.0.24版本已经修复。原因是因为长时间链接数据库,导致数据库断线。

推荐:《Workerman教程

解决的方案:

1、修改数据库配置database.php文件,将break_reconnect参数设置为true。断线重连。

// 是否需要断线重连'break_reconnect' => true,
登录后复制

2、修改 /library/think/db/Connection.php中的isBreak函数,替换为以下最新的isBreak函数。

  /**     * 是否断线     * @access protected     * @param \PDOException|\Exception  $e 异常对象     * @return bool     */    protected function isBreak($e)    {        if (!$this->config['break_reconnect']) {            return false;        }         $info = [            'server has gone away',            'no connection to the server',            'Lost connection',            'is dead or not enabled',            'Error while sending',            'decryption failed or bad record mac',            'server closed the connection unexpectedly',            'SSL connection has been closed unexpectedly',            'Error writing data to the connection',            'Resource deadlock avoided',            'failed with errno',        ];         $error = $e->getMessage();         foreach ($info as $msg) {            if (false !== stripos($error, $msg)) {                return true;            }        }        return false;    }
登录后复制

3、将/library/think/db/connector/Mysql.php中的isBreak函数删除或者注释掉。

修改完后,workerman长时间链接数据库,数据库断开会重连。

以上就是workerman+tp5的错误问题怎么解决的详细内容,更多请关注9543建站博客其它相关文章!

广告:SSL证书一年128.66元起,点击购买~~~

9543建站博客
一个专注于网站开发、微信开发的技术类纯净博客。
作者头像
admin创始人

肥猫,知名SEO博客站长,14年SEO经验。

上一篇:谈谈删除功能在ThinkPHP5.0中的实现与注意事项
下一篇:使用Yii框架创建旅游网站

发表评论

关闭广告
关闭广告