05 2020 档案
摘要:系统:linux 环境:mysql5.6 1.mysql配置文件的 bind-address=127.0.0.1没有注释或者删除把my.cnf 的 bind-address =127.0.0.1注释掉 或者修改成 bind-address =0.0.0.0 2.mysql权限问题登录MySQL数据库
阅读全文
摘要:修改宝塔密码(testpasswd为要修改的密码) cd /www/server/panel && python tools.py panel testpasswd 查看宝塔登录信息 bt default 执行指令 bt 启动/停止/重启/卸载 /etc/init.d/bt start /etc/i
阅读全文
摘要:一、停止kdevtmpfsi ps aux 杀死进程 kill -9 PID 二、删除定时任务 crontab -l 查看定时任务 crontab -r 删除所有定时任务 三、杀进程及端口 netstat -antp ps -aux | grep kinsing ps -aux | grep kde
阅读全文
摘要:安装node.js(https://nodejs.org/en/download/)内置npm 检测进入cmd node-v 出现版本号即可 修改npm文件缓存及模块下载位置 npm config set cache "D:\Software\Node\npm_cache"npm config se
阅读全文
摘要:页面内容 <!DOCTYPE html> <html> <body> <h1>XMLHttpRequest 对象</h1> <p id="demo"></p> <script> var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange =
阅读全文
摘要:获取APK签名 keytool -printcert -file 'file path'一般路径为apk解压包中META-INF\CERT.RSA 获取JKS签名 keytool -list -v -keystore 'file path'路径为.jks文件路径 微信签名工具 在微信开放平台下载,下
阅读全文
摘要:递归查询 public function get_allagent($agentid=0,$ids=[]){ global $_W; $agent1 = pdo_fetchall("select id from " . tablename("ewei_shop_member") . " where
阅读全文