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 .....
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,下載對應證書上傳替換就可以了。
因為.....
2020-10-14
在服務器上有事需要忽略某個文件夾和內容的更新,可以使用
```
svn update --set-depth=exclude 文件名稱
```
查看修改信息可以用命令:
```
svn st
```.....