这是我的小窝

你好,欢迎光临! 

Prev Next

世界,你好!

每个人的命运从出身的那一刻基本就决定了,你努力了你的人生中就会开那么几朵小花,仅此而已。
more

关于博客

欢迎一不小心访问到本博客,这是一个记事本博客。记录一些知识点,方便以后查找或者加深记忆。 建博客纯粹是个人喜欢,还有一个原因是对本博客主题的喜欢。前后一共建了多次博客了,坚持一段时间就不管了,我记得这已经是第4次了。当然这只是一个爱好,也没想做的有多好...
more

Centos7的安装Htop

2021.04.2 , , No Comments , 1,515 views ,

启用epel版本: yum -y install epel-release 安装htop: yum -y install htop

CentOS/Debian启动/重启/停止Nginx命令

2021.03.13 , , No Comments , 3,532 views ,

系统:CentOS 启动命令:systemctl start nginx 重启命令:systemctl restart nginx 停止命令:systemctl stop nginx 系统:Debian 启动命令:service nginx start 重启命令:service nginx restart 停止命令:service nginx stop

测试vps下载速度

2021.01.21 , , No Comments , 1,854 views ,

wget http://cachefly.cachefly.net/100mb.test wget http://repos.mia.lax-noc.com/speedtests/1gb.bin

CentOS保存iptables规则

2020.09.8 , , No Comments , 2,436 views ,

需关闭firewalld防火墙: systemctl stop firewalld.service systemctl disable firewalld.service 安装iptables服务: yum install iptables-services 保存iptables规则: service iptables save 配置iptables开机启动: systemctl enable iptables.service (老版本...

Debian使用nginx常用命令

2020.09.1 , , No Comments , 2,338 views ,

安装nginx: apt-get install nginx 查看nginx状态: systemctl status nginx.service 重启nginx: systemctl restart nginx.service 停止nginx: systemctl stop nginx.service 开机启动nginx: systemctl enable nginx.service

卸载腾讯云云服务器安全监控组件

2020.08.5 , , No Comments , 2,440 views ,

腾讯云的服务器会自动安装云监控、云镜等安全服务,方便在控制台查看产品运行状态等 可以看一下服务器的定时任务: $ crontab -l */1 * * * * /usr/local/qcloud/stargate/admin/start.sh > /dev/null 2>&1 & 0 0 * * * /usr/local/qcloud/YunJing/YDCrontab.sh > /dev/null 2>&...

解决/etc/rc.local启动不执行

2020.06.18 , , No Comments , 2,090 views ,

执行以下命令: systemctl list-dependencies multi-user.target | grep rc-local 如果没有输出执行下方命令: chmod +x /etc/rc.d/rc.local systemctl daemon-reload 再次执行命令: systemctl list-dependencies multi-user.target | grep rc-local 输出结果: ● ├─rc-l...

linux查看目录和文件大小命令

2020.05.19 , , No Comments , 1,782 views ,

du -sh *