MySql 允许用户远程登录

默认mysql 安装完root 账号是 @%的,需要修改成 @%才能进行登录

  1. 查看当前用户情况

    mysql> use mysql;

    mysql> select host,user from user;

image1

  1. 更新root用户的host

    mysql> update user set host = '%' where user = 'root' …

点击查看更多…

nginx开启Gzip压缩

[gallery ids="1256"]

为什么要开启Gzip压缩
启用Gzip压缩功能, 可以使网站的css、js 、xml、html 等静态资源在传输时进行压缩,经过Gzip压缩后资源可以变为原来的30%甚至更小,尽管这样会消耗 …
点击查看更多…

wp-statistics 汉化 (设置中文)

一、下载汉化包

首先,到官方的汉化页面下载最新的po,mo文件
wp-statistics 汉化 (设置中文)插图
最左下角:export可以导出 mo或po 文件。

二、上传

然后将文 …
点击查看更多…

nginx http 80 端口重定向到 https 443 端口

image1

修改 nginx 配置文件

[root@hostname /]# vim /etc/nginx/conf.d/default.conf>

在新增一个server,用于跳转

server {
    listen       80 default;
    server_name  www.on0926.com on0926.com;
    rewrite ^(.*)$ https://${server_name}$1 permanent;
}

原有的server listen 端口修改 …

点击查看更多…

/etc/php-fpm.d/www.conf 配置参数详解

emergency_restart_threshold = 10
在指定的一段时间内,如果失效的php-fpm子进程数超过这个值,php-fpm主进程优雅重启
emergency_restart_interval = 1m
设定emergency_restart_threshold 设置采用的时间跨度,s(econds), m(inutes), h(ours), or d(ays)
user = www
拥有这个php-fpm进程池中子进程的系统用户。要把 …
点击查看更多…