MySQL配置账户允许远程链接
默认情况下,mysql帐号不允许从远程登陆,只能在localhost登录 。如需特定账户远程链接MySQL服务,则需要进行如下配置: 1、登入MySQL服务后,更改库中的user表里的host 属性,将localhost 改为 % update user set host = '%' where user = 'root'; -- 确认是否…
66 2 2020-03-29 阅读全文
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
密码策略问题异常信息(本文转自如下,感谢)https://blog.csdn.net/hello_world_qwp/article/details/79551789 在mysql中修改密码时,遇到如下错误: ERROR 1819 (HY000): Your password does not satisfy the current policy requirements 该错误是因为默认…
61 0 2020-03-29 阅读全文
CentOS下安装JDK
CentOS7下安装JDK详细过程(本文转自如下,感谢)https://www.cnblogs.com/sxdcgaq8080/p/7492426.html https://www.cnblogs.com/sxdcgaq8080/p/7492426.html这篇文章是我见过最详细的一篇。直接参考就行。。做个记录。另外,推荐直接国内镜像下载JDK,快速便捷。链…
52 0 2020-03-29 阅读全文
WordPress意外错误 PHP警告
在开启WordPress debug模式后,可能会遇到这个错误。PHP Warning: An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="https://wordpress.o…
57 0 2020-03-29 阅读全文
WordPress提示无法连接到FTP服务器
在第一次使用WordPress更新主题或插件时,很有可能遇到这样的错误“无法来连接到FTP服务器”。。。 解决办法如下:1、 在 WordPress 目录下找到 wp-config.php 文件并编辑,在其中加上 : define('FS_METHOD', "direct"); 修改效果 2、注意WordPress目录的用…
66 0 2020-03-29 阅读全文
WordPress本地安装主题插件等报413 Request Entity Too Large错误解决办法
产生这种原因是因为服务器限制了上传大小 !(转载自简书的一篇博文,感谢)https://www.jianshu.com/p/3851c3d6eaf1?tdsourcetag=s_pctim_aiomsg 站点采用了WordPress,基于Nginx代理。所以出现413这种错误,是因为Nginx服务端配置的问题。解决办法如下:修改nginx…
71 0 2020-03-29 阅读全文
WordPress主题
WordPress,无论前台还是后台管理均支持定制化主题,本地安装或者商店安装均可。 当然国内你就老老实实找资源,然后本地安装吧。。 前台 MDx(https://mdxblog.flyhigher.top/)当前站点使用的就是这款主题。 后台 https://www.sbkko.com/zt-7.html
57 0 2020-03-29 阅读全文
CentOS搭建FTP服务
文章转载,参考自如下博文,感谢!https://blog.csdn.net/qq_42683219/article/details/103108438https://www.cnblogs.com/pxmlinux/p/5528013.html 踩坑自我需求,需求创建虚拟用户,只允许访问特定的目录。创建了虚拟用户,且指定了访问的目录,但一直不好使,路…
47 0 2020-03-29 阅读全文