系统运维
-
AD域DNS分离,外部DNS添加AD域需要注意事项
这是我的dnsmasq.conf对于名为的域domain.example.com以及IP地址为192.168.0.11的samba 4域控制器的外观 : server=192.168.0.11 srv-host=_ldap._tcp.dc_msdc…… -
docker镜像导入导出
---------------------- 1、查看镜像ID # docker images [root@localhost ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE mytomcat 1.0 f8ec6dad960…… -
ElastAlert2集成ELK钉钉告警
背景: 现在公司用的是ELK日志架构做日志收集和展示分析,所以相对一些日志进行关键字进行告警,比如MQTT、Nginx40X和50X状态请求、后端服务ERROR严重错误日志…… -
docker安装efk
上一篇文章介绍了rsyslog采集网络设备日志到服务器(https://www.lovelearing.com/index.php/2023/07/25/rsyslog%e9%87%87%e9%9b%86%e7%bd%91%e7%bb%9c%e8%ae%…… -
rsyslog采集网络设备日志
安装日志收集工具 yum install -y rsyslog 目前公司网络设备分为三类,分别为h3c、huawei、cisco三种 修改配置文件 vim rsyslog.conf #开启接受日志 $Mod…… -
-
The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.
flask出现这个: The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again. 可能是启动…… -
To solve this, set up an application context with app.app_context(). See the documentation for more information.
This typically means that you attempted to use functionality that needed the current application. To solve this, set up an application context wit…… -
docker安装单点redis
1. 开放防火墙6379端口 firewall-cmd --zone=public --add-port=6379/tcp --permanent firewall-cmd --reload 2. 创建redis配置文件挂载目录 conf为配置文件 …… -
XML树形结构
上图表示下面的 XML 中的一本书: <bookstore> <book category="COOKING"> <title lang="en">Everyday Italian</title> ……