安装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
Debian使用nginx常用命令
2020.09.1 , linux , No Comments , 3,140 views ,卸载腾讯云云服务器安全监控组件
2020.08.5 , linux , No Comments , 3,242 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 , linux , No Comments , 2,741 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 , linux , No Comments , 2,442 views ,du -sh *
阿里云卸载云盾/安骑士
2020.04.5 , linux , No Comments , 2,442 views ,wget http://update.aegis.aliyun.com/download/uninstall.sh chmod +x uninstall.sh ./uninstall.sh rm -rf uninstall.sh wget http://update.aegis.aliyun.com/download/quartz_uninstall.sh chmod +x quartz_uninstall.sh ./quartz_un...
CentOS7查看和关闭防火墙
2020.03.29 , linux , No Comments , 2,674 views ,CentOS 7.0默认使用的是firewall作为防火墙 查看防火墙状态: firewall-cmd --state 停止firewall: systemctl stop firewalld.service 禁止firewall开机启动: systemctl disable firewalld.service
通过iptables防火墙限制端口与放行端口
2020.02.27 , linux , No Comments , 2,419 views ,iptables -A INPUT -p tcp --dport 1234 -j DROP iptables -I INPUT 1 -p tcp --dport 1234 -j ACCEPT 12 iptables -A INPUT -p tcp --dport 1234 -j DROPi...
隐藏溢出和内容溢出元素框时自动出现滚动条
2020.01.18 , WEB前端 , No Comments , 3,238 views ,overflow: hidden; //隐藏溢出 overflow-y: auto; //内容溢出元素框时自动出现滚动条,滑动滚动条显示溢出的内容。