- 博客(11)
- 收藏
- 关注
原创 golang无法fresh
先把go env的环境修改一下,如果GO111MODULE=auto,将这一行改成GO111MODULE=on。如果第一种没有生效 或者 fresh报错。安装好之后到项目根目录,重新打开cmd。检出fresh运行就可以了。
2024-07-05 18:37:15 310
原创 windows redis 重置密码失效
cmd,进入 redis 根目录下, 键入 redis-server.exe redis.windows.conf。where redis-server 找到redis 安装目录。打开 redis-cli.exe ,键入shutdown。
2023-10-02 19:29:26 275 1
原创 mysql 优化
每次insert的时候mysql都会自动提交,然后会有其他的一些耗时的操作,所以取消掉自动提交就好了,直接。确实速度提高了特别多。
2023-04-19 14:42:02 57
原创 thinkphp6.0 阿里云 stomp
前置条件thinkadminThinkAdmin: 基于 ThinkPHP 微信后台管理平台(体验账号和密码都是 admin)https://gitee.com/zoujingli/ThinkAdmin实现效果:// 开启php think xapi:CmdAliyunStomp start//守卫进程php think xapi:CmdAliyunStomp start -d// 关闭php think xapi:CmdAliyunStomp stop//状态php
2022-05-13 00:09:04 847
原创 thinkphp6.0 stomp 执行命令行 权限不足 问题汇总
很奇怪的问题file_put_contents(/runtime/cache/5a/96db1fa108c8691304d5b992c6f314.php): failed to open stream: Permission deniedruntime 权限不足;修改方法;吧runtime 文件夹修改为777用bt面板的 计划任务执行cmd命令问题解决;很奇怪的问题...
2022-05-12 23:54:23 473 1
原创 判断 nginx 服务是否启动,未启动自动重启 shell脚本
我的是宝塔面板直接上代码 nginx_procnum=`ps -ef|grep "nginx"|grep -v grep|wc -l` if [ $nginx_procnum -eq 0 ]then echo "start nginx..." /etc/init.d/nginx startelse #echo "no cmd" exitfi然后添加定时任务;每分钟执行一次...
2022-04-17 18:50:44 3633
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人