2020-10

Be a Fighter

2020-10-29
A young friend of mine asked me in a letter, “What kind of man should I be?” My answer was, “Be a fighter.”   Another friend of mine inquired, “How should I live my life?” Again my answer was, “Be .....

定时重启mysql的方法

2020-10-27
1、编写sh脚本语言 ```shell #!/bin/sh pgrep -x mysqld &> /dev/null if [ $? -ne 0 ] then echo “At time: `date "+%Y%m%d_%H:%M:%S"` :MySQL is stop .”>> 日志路径 /etc/init.d/mysqld start else e.....

网站证书过期了怎样替换?

2020-10-17
打开阿里云 https://yundun.console.aliyun.com/?spm=5176.2020520160.aliyun_sidebar.220.75601Nwr1Nwroj&p=cas#/overview/cn-hangzhou 这个页面购买免费证书,域名需要验证必须打开网站的http访问才能验证。 我用的是Apache,下载对应证书上传替换就可以了。 因为.....

[linux]-svn忽略文件夹更新的命令与方法

2020-10-14
在服务器上有事需要忽略某个文件夹和内容的更新,可以使用 ``` svn update --set-depth=exclude 文件名称 ``` 查看修改信息可以用命令: ``` svn st ```.....