Centos6 Yum提示No module named sqlitecachec处理
#### 概述 因为非常复杂的原因导致系统无法使用yum命令,并提示如下错误。 [root@localhost ~]# yum list wget There was a problem importing one of the Python modules required to run yum. The error leading to this...
#### 概述 因为非常复杂的原因导致系统无法使用yum命令,并提示如下错误。 [root@localhost ~]# yum list wget There was a problem importing one of the Python modules required to run yum. The error leading to this...
#### 概述 由于`fdisk`命令最多只支持2TB磁盘分区,并不支持更大的磁盘,需要使用GPT格式进行分区。 [root@localhost ~]# fdisk /dev/sdb -l Disk /dev/sdb: 10561.8 GB, 10561795743744 bytes, 20628507312 sectors Units = sect...
#### 概述 由于网络测试需要,配置普通用户进行网络连通性检查。 在普通用户使用ping命令是,报错如下内容: [root@localhost ~]# ping baidu.com PING baidu.com (220.181.38.251) 56(84) bytes of data. 64 bytes from 220.181.38.251...
#### 概述 在项目中执行初始化脚本时遇到重启`iptables`服务时卡住,且长时间无响应。以下为状态信息: [root@localhost ~]# systemctl status iptables ● iptables.service - IPv4 firewall with iptables Loaded: loaded (/usr/...
#### 概述 因项目需要对服务器进行系统安装,在系统烧录至U盘插入服务器启动后,提示: alua: not attached warning: dracut-initqueue timeout - starting timeout scripts #### 解决办法 1、将已经烧录好的U盘重命名为`CENTOS` 2、编辑 \\EFI\\BOOT\...
#### 概述 Centos5系统安装`zabbix-agent`时提示缺少`libpcre`依赖: checking for libpcre support... no configure: error: Unable to use libpcre (libpcre check failed) #### 解决办法 如果下载链接无法直接下载,可以浏览器下...
#### 概述 官方参考文档: > <https://access.redhat.com/solutions/7412> > <https://access.redhat.com/documentation/zh-cn/red_hat_enterprise_linux/8/html/configuring_and_managing_netwo...
#### 概述 在项目环境中,服务器存在多个生效的网卡配置,需要允许指定的网卡访问特定的网段。 #### 处理办法 ##### route命令(临时生效) ###### 命令介绍 add 增加路由 del 删除路由 -net 设置到某个网段的路由 -host 设置到某台主机的路由 gw 出口网...
#### 概述 根据安全管理规范需修改默认telnet服务端口,但Centos6使用的是xinetd进行监听端口并且默认配置文件中并没有突出端口配置项。 #### 处理办法 ##### 修改默认服务端口 # Centos6配置服务启动 [root@localhost ~]# sed -i 's/\(.*disable.*=[[:space:]]\...
#### 概述 由于系统被前同事升级过python,导致python依赖有问题致使yum不可用。 [root@localhost ~]# yum list wget There was a problem importing one of the Python modules required to run yum. The error leadin...