上一页 1 ··· 74 75 76 77 78 79 80 81 82 ··· 133 下一页
摘要: MySQL配置文件:/etc/my.cnf http://c.biancheng.net/view/7571.html 阅读全文
posted @ 2021-05-28 19:56 盘思动 阅读(104) 评论(0) 推荐(0)
摘要: mysql> set global innodb_print_all_deadlocks = ON; Query OK, 0 rows affected (0.00 sec) mysql> show variables like 'innodb_print_all_deadlocks'; + + + 阅读全文
posted @ 2021-05-28 18:09 盘思动 阅读(764) 评论(0) 推荐(0)
摘要: 14.18.2 InnoDB 恢复 本章节讲述InnoDB表恢复。内容包括: Point-in-Time恢复 从数据损坏或磁盘故障恢复 InnoDB崩溃恢复 崩溃恢复中的表空间发现(5.7引进) Point-in-Time恢复 从物理备份创建的时间节点开始恢复InnoDB库到当前时间,MySQL服务 阅读全文
posted @ 2021-05-27 16:58 盘思动 阅读(1018) 评论(0) 推荐(0)
摘要: /*** * 校验密码 能匹配的组合为: 数字+字母, 数字+特殊字符, 字母+特殊字符, 数字+字母+特殊字符组合, 而且不能是纯数字,纯字母,纯特殊字符 */ public static function checkPwd($pwd) { $search = '/^(?![\d]+$)(?![a 阅读全文
posted @ 2021-05-25 13:35 盘思动 阅读(374) 评论(0) 推荐(0)
摘要: location ^~ /admin.php { allow 218.93.***.**; deny all; fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_index index.php; include fastcgi.conf; include pa 阅读全文
posted @ 2021-05-18 10:16 盘思动 阅读(160) 评论(0) 推荐(0)
摘要: #!/bin/bash # 一次性处理git提交 #branch_name=`git symbolic-ref --short -q HEAD` branch_name=$(git symbolic-ref --short -q HEAD) if [ ! -n "$1" ] ;then commit 阅读全文
posted @ 2021-05-15 14:38 盘思动 阅读(117) 评论(0) 推荐(0)
摘要: mysql md5 加密方法 update dbname.tf_tablename set nick_name = 'xxxxx',password = md5('new_pwd') where id = 1; 阅读全文
posted @ 2021-05-15 10:40 盘思动 阅读(390) 评论(0) 推荐(0)
摘要: http://tool.chinaz.com/port/ 检测ip 某个端口是否开放 或者:http://coolaf.com/tool/port https://www.qtool.net/port 阅读全文
posted @ 2021-05-14 09:22 盘思动 阅读(790) 评论(0) 推荐(0)
摘要: xxxxx.conf 配置中 default_server ; listen 80 default_server reuseport; 阅读全文
posted @ 2021-05-10 11:40 盘思动 阅读(110) 评论(0) 推荐(0)
摘要: bcadd(被加数,加数,保留几位小数); bcadd(1,3,2);//4.00 要求处理后保留小数点后几位. bcsub bcmul bcdiv 类似几个函数 阅读全文
posted @ 2021-05-08 14:46 盘思动 阅读(1038) 评论(0) 推荐(0)
上一页 1 ··· 74 75 76 77 78 79 80 81 82 ··· 133 下一页