07 2019 档案

摘要:1.密码的强度必须是包含大小写字母和数字的组合,不能使用特殊字符,长度在8 10之间 ^(?=. \\d)(?=. [a z])(?=. [A Z]).{8,10}$ 2.字符串仅能是中文 ^[\\u4e00 \\u9fa5]{,}$ 3.由数字、26个英文字母或下划线组成的字符串 ^\\w+$ 4 阅读全文
posted @ 2019-07-12 09:43 风许下的泪 阅读(918) 评论(0) 推荐(0)
摘要:yum install libc client devel cd /root/lnmp1.0 full/php 5.3.17/ext/imap /usr/local/php/bin/phpize ./configure with php config=/usr/local/php/bin/php c 阅读全文
posted @ 2019-07-04 23:19 风许下的泪 阅读(2248) 评论(0) 推荐(0)
摘要:环境:CentOS Linux release 7.6.1810 lnmp1.5 独立下载mysql仓库 wget i c http://dev.mysql.com/get/mysql57 community release el7 10.noarch.rpm yum y install mysql 阅读全文
posted @ 2019-07-03 23:25 风许下的泪 阅读(9979) 评论(0) 推荐(0)
摘要:[root@localhost ~] lsb_release a bash: lsb_release: command not found 解决方法:yum install redhat lsb y 阅读全文
posted @ 2019-07-03 17:11 风许下的泪 阅读(254) 评论(0) 推荐(0)
摘要:iptables命令是Linux上常用的防火墙软件,是netfilter项目的一部分 iptables文件设置路径:命令:vim /etc/sysconfig/iptables config 0x02注意事项 如果说你以前使用的是contos7 那么默认使用的防火墙那么就是Firewall 这样的话 阅读全文
posted @ 2019-07-02 15:03 风许下的泪 阅读(1479) 评论(0) 推荐(0)
摘要:1.my.ini文件,删除最后一行的“skip grant tables 2.执行“use mysql;”,使用mysql数据库; 3.执行:update mysql.user set password=password("123456") where user="root" 4.grant all 阅读全文
posted @ 2019-07-02 10:16 风许下的泪 阅读(1297) 评论(0) 推荐(0)