01 2021 档案

摘要:原文链接:https://blog.csdn.net/qq_36119192/article/details/104584451 阅读全文
posted @ 2021-01-31 11:21 Res0lve 阅读(352) 评论(0) 推荐(0)
摘要:依次输入以下命令即可。 chkconfig network off chkconfig network on systemctl stop NetworkManager systemctl start NetworkManager 阅读全文
posted @ 2021-01-26 16:26 Res0lve 阅读(1115) 评论(0) 推荐(0)
摘要:1、引言 网络扫描,对计算机主机和网络设备进行安全性检查,找出隐患和系统漏洞。 漏洞扫描本质上是双刃剑,黑客利用它寻找对网络或系统发起攻击的途径,系统管理员利用他来有效防范黑客入侵。 通过扫描,可发现远程网络或主机配置信息、TCP/UDP分配端口,提供服务、服务信息等 2、漏扫原理 可以划分为pin 阅读全文
posted @ 2021-01-20 15:30 Res0lve 阅读(4854) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/weimenglala/article/details/102736921 报错信息: Job for docker.service failed because the control process exited with error code. Se 阅读全文
posted @ 2021-01-18 16:35 Res0lve 阅读(2231) 评论(0) 推荐(0)
摘要:1.先将MySQL停止、 命令:systemctl stop mysqld #停掉MySQL 命令:systemctl status mysqld #查看状态 2.然后跳过授权表启动MySQL服务程序 这一步主要利用mysqld的 --skip-grant-tables选项 修改my.cnf配置,添 阅读全文
posted @ 2021-01-17 19:35 Res0lve 阅读(1798) 评论(0) 推荐(0)
摘要:/opt 主机额外安装软件所摆放的目录。 默认是空的。 一般安装软件的时候,可以自己指定安装到这个目录下,便于查找和管理 optional,可选择目录,就像我们平时在安装windows软件的默认program files 的一样。 阅读全文
posted @ 2021-01-16 23:58 Res0lve 阅读(2329) 评论(0) 推荐(0)
摘要:一、iptables防火墙1、基本操作 # 查看防火墙状态 service iptables status # 停止防火墙 service iptables stop # 启动防火墙 service iptables start # 重启防火墙 service iptables restart # 阅读全文
posted @ 2021-01-07 10:17 Res0lve 阅读(398) 评论(0) 推荐(0)