错误概要: 1.LibreOffice可以正常使用: 2.启动tomcat报错如下: Fatal error The application cannot be started. ][context="shared"] caught unexpected com.sun.start.ucb.Interactive.AugmentedIOException: a folder could not be created 当前环境 Window10 + LibreOffice 6.2 + T…
每次搭建mysql环境都会遇见同样的问题,在此分享一下踩坑笔录. 一.问题描述 安装成功后,本地直接链接远程mysql,默认为不允许远程访问,则客户端提示1130 - Host'xxx.xxx.xxx.xxx' is not allowed to connect to this MySQL server". 二.解决办法简单粗暴 1. 进入mysql 安装目录bin 下,打开cmd,输入mysql -u root -p,然后回车,输入密码后回车,进入mysql命令行: 2.输入 user mys…
前两天零零碎碎看完了golang的基础,想着找个小项目练练手,可是出现了一个十分棘手的问题 我要做的东西是网站路径爆破 所以我会从文本字典中把一行行路径读取然后与域名拼接,但是我在跑起程序后出现了问题 下面是一个小片段 400 Bad Request-----http://www.xxx.com/channel.asp 400 Bad Request-----http://www.xxx.com/index.asp 404 Not Found-----http://www.xxx.com/adm…
一.local local函数一定要在调用之前定义(切记,不然会报错或者不能调用该函数) 情况1:监听调此函数后定义 base.model:addlistener("被监听的函数", 监听成功的回调函数) local function 监听成功的回调函数() --处理 end 上面代码运行游戏将会报如下错: handler parameter in addlistener function has to be function, nil not right 二.协程 停止协程前将协程中…