问题锦集
清风的BLOG
专注Linux、Python、自动化、云计算、高可用、数据库。
展开
-
Docker inspect returned invalid PID 0 报错
问题:原因:指定的容器没有启动:启动容器:再次将系统的网络桥接到容器:原创 2020-04-07 13:04:24 · 896 阅读 · 0 评论 -
nginx: [emerg] getpwnam(“www”) failed 错误处理方法
解决方案一在nginx.conf中 把user nobody的注释去掉既可解决方案二原因是没有创建nginx这个用户,应该在服务器系统中添加nginx用户组和用户nginx,如下命令:groupadd -f nginxuseradd -g ngin nginx...原创 2020-03-23 19:13:15 · 2774 阅读 · 0 评论 -
CentOS7 编译安装libiconv报错:./stdio.h:1010:1: error: 'gets' undeclared here (not in a function)
libiconv编译时遇到以下报错In file included from progname.c:26:0:./stdio.h:1010:1: error: ‘gets’ undeclared here (not in a function)_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");^...原创 2020-03-23 19:10:51 · 1209 阅读 · 0 评论 -
php linux 编译安装时常见错误解决办法
configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution复制代码代码如下:yum -y install libxslt-develconfigure: error: Could not find net-snmp-config binary. Please che...原创 2020-03-23 15:48:07 · 527 阅读 · 0 评论 -
Linux ln -s命令出现“符号连接的层数过多”的问题-mysql
问题创建 mysql 软链接原因使用ln 命令使用绝对路径原创 2020-03-21 10:29:49 · 2543 阅读 · 0 评论 -
解决 apache启动错误"httpd:Could not reliably determinethe server's fully qualified domain "
问题找到自己这个文件,视自己的安装情况.# find / -name httpd.conf 若找不到.# vim /usr/local/apache2/etc/httpd.conf添加 ServerName localhost:80重启报错:apache2 address already in use:make_sock:could not bind to a...原创 2020-03-17 19:11:23 · 916 阅读 · 0 评论 -
无法获得锁 /var/lib/dpkg/lock-frontend - open (11: 资源暂时不可用)
问题:无法获得锁 /var/lib/dpkg/lock-frontend - open (11: 资源暂时不可用)sudo apt-get install openssh-server openssh-clientE: 无法获得锁 /var/lib/dpkg/lock-frontend - open (11: 资源暂时不可用)E: Unable to acquire the dpkg...原创 2020-03-17 16:42:38 · 1035 阅读 · 0 评论 -
node错误 /usr/bin/env: node: No such file or directory
问题安装了node后,执行npm run xxx的命令的时候,报错,提示如下:/usr/bin/env: node: No such file or directory解决1. 执行一个npm命令怎么提示/usr/bin/env这个错误...创建一个软连接,如下:ln -s /usr/bin/nodejs /usr/bin/node2. 因为npm执行的时候默认是使用/...原创 2020-03-11 19:16:47 · 13515 阅读 · 1 评论 -
Delta RPMs disabled because /usr/bin/applydeltarpm not installed 报错
解决方法:# yum provides '*/applydeltarpm' 查看依赖包的位置 # yum -y install deltarpm 安装命令原创 2020-03-08 19:17:48 · 1189 阅读 · 0 评论 -
xshell : WARNING! The remote SSH server rejected X11 forwarding request.
一、问题展示:二、解决方法1)进入 这个 /etc/ssh/sshd_config 文件2)配置Xshell 6连接属性,如下,取消勾取即可:3) 再次登录原创 2020-03-04 17:47:10 · 366 阅读 · 0 评论 -
nginx 提示the "ssl" directive is deprecated, use the "listen ... ssl" directive instead
问题:[root@a conf.d]# nginx -s reloadnginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/conf.d/ssl.conf:4该问题是由于新版nginx采用新的方式进行监听https请求咯.解决方法...原创 2020-03-03 16:16:51 · 4245 阅读 · 0 评论 -
Xshell 如何让关掉声音
xshell 当按键错误时候,会发出系统声音,比较吵人.原创 2020-02-26 19:52:52 · 3914 阅读 · 0 评论 -
ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'mysql'
提示:ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'mysql'。发现是因为mysql数据库的user表里,存在用户名为空的账户即匿名账户,导致登录的时候是虽然用的是root,但实际是匿名登录的,通过错误提示里的''@'localhost'可以看出来,于是解决办法见方法二。方法一:1.关闭mysql...原创 2019-12-09 18:31:49 · 1042 阅读 · 0 评论 -
记录CentOS8 开机卡住的问题解决过程
Centos8 不能正常启动,不断的自启,于是分析排查这个问题,首先重启系统,开机时按下任意键进入GUN界面:按下e进入以下界面:把rhgb quiet删掉,回车,按 Ctrl+x 重新引导系统,这样就能看到到底是哪一步卡住了,导致我们系统启动不起来。以下是我的开机过程:通过信息发现,是我们selinux安全管理工具的配置出现了错误,现在找到了原因所在.解决方...原创 2019-11-27 15:56:52 · 15116 阅读 · 0 评论 -
File "/usr/bin/yum-config-manager", line 133 except yum.Errors.RepoError, e:
报错如下:遇到这个错误是因为我升级了Python到3.7.2,但是yum-config-manager这个文件头的Python没有改成Python2,如下:[root@python ~]# python -VPython 3.7.2再次执行,问题解决....原创 2019-10-30 08:21:55 · 3766 阅读 · 0 评论 -
rabbitmq ERROR: epmd error for host deb:address (cannot connect to host/port)解决方法
进入/etc/hosts# vi /etc/hosts进行 主机解析再启动rabbitmq-server OK原创 2019-10-17 09:56:00 · 4966 阅读 · 5 评论 -
Linux安装tomcat Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
问题:[root@h2 ~]# /usr/local/tomcat/bin/catalina.sh restart Neither the JAVA_HOME nor the JRE_HOME environment variable is definedAt least one of these environment variable is needed to run this pr...原创 2019-10-16 13:44:14 · 751 阅读 · 0 评论 -
Cannot uninstall ‘requests’. It is a distutils installed project and thus we cannot accurately deter
安装pip时报错解决:Cannot uninstall ‘requests’. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.解决办法:pip ...原创 2019-10-10 16:34:16 · 320 阅读 · 0 评论 -
CentOS 7 出现ping socket Address family not supported by protocol的解决办法
系统中ping 命令出现如下的问题:ping: socket: Address family not supported by protocolping: socket: 协议不支持的地址族解决方法:yum downgrade -y http://vault.centos.org/7.2.1511/os/x86_64/Packages/iputils-20121221-7...原创 2019-07-23 12:21:24 · 5966 阅读 · 0 评论 -
拉取Docker镜像时提示 no space left on device 问题解决
问题原因出现此问题一般是 docker根目录空间不足导致解决方法修改其Docker Root Dir的值,指向一个更大空间的目录.方法步骤 1、查看 docker 的根目录[root@node2 k8s]# docker info | grep -i "docker root dir" WARNING: You're not using the ...原创 2019-07-01 10:48:05 · 13439 阅读 · 3 评论 -
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for...原创 2019-10-10 16:22:06 · 12828 阅读 · 0 评论 -
Centos安装jdk配置环境时报:-bash: export: command not found
centos安装jdk完,在进行环境配置完成后,输入source /etc/profile时,报了如下错误:-bash: export: command not found打开profile文件:vi /etc/profile进行排查,结果发现是配置jdk环境时是复制进去的,配置信息格式不对齐,把export全部对齐后,再进行source /etc/profile,问题解决了。调整前:...原创 2019-10-09 14:45:13 · 822 阅读 · 0 评论 -
添加samba用户提示 Failed to add entry for user.
问题:原因:增加samba用户提示Failed to add entry for usersmbpasswd -a test01(用户名)New SMB password:Retype new SMB password:Failed to add entry for user test01.解决办法:这是因为没有加相应的系统账号,所以会提示Failed to add e...原创 2019-10-09 11:22:31 · 3647 阅读 · 0 评论 -
解决apache启动错误"httpd:Could not reliably determine..."
总结在配置及启动apache2时出现报错的处理方法启动apache遇到错误:[root@python ~]# service apache2.4 start AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using fe80::6d3:c949:61aa:...原创 2019-06-21 10:00:03 · 695 阅读 · 0 评论 -
gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting
问题再现[root@zh64 ~]# tar zxvf webbench-1.5.tar.gz -C /usr/src/gzip: stdin: not in gzip formattar: Child returned status 1tar: Error is not recoverable: exiting now查看文件真正的属性[root@zh64 ~]# f...原创 2019-07-01 15:11:53 · 47074 阅读 · 6 评论 -
Linux源码安装heartbeat可能出现的错误以及解决办法
安装前准备yum -y install glib2-devel libtool-ltdl-devel net-snmp-devel bzip2-devel ncurses-devel openssl-devel libtool libxml2-devel gettext gettext-devel bison flex zlib-devel mailx which libxslt-de...原创 2019-07-03 15:37:55 · 1381 阅读 · 0 评论 -
服务 tomcat 不支持 chkconfig
列出问题在安装完tomcat后想添加的开机自启动的操作,但是报错tomcat 服务不支持 chkconfig[root@zh ~]# chkconfig --list注意:该输出结果只显示 SysV 服务,并不包含原生 systemd 服务。SysV 配置数据可能被原生 systemd 配置覆盖。 如果您想列出 systemd 服务,请执行 'systemctl li...原创 2019-07-05 15:29:09 · 3508 阅读 · 0 评论 -
Mysql 启动报错解析:Starting MySQL.. ERROR! The server quit without updating PID file (/usr/local/mysql/dat
问题[root@centos74 ~]# service mysqld startStarting MySQL.. ERROR! The server quit without updating PID file (/usr/local/mysql/data/mysqld.pid).分析解决1、 可能已经存在mysqld 进程.[root@centos74 ~]#...原创 2019-07-18 09:18:28 · 111917 阅读 · 6 评论 -
DISCUZ -- 解决set_magic_quotes_runtime()出错的方法
php7 不向后的兼容的变更在php7中,很多致命错误以及可恢复的致命错误,都被转换为异常来处理了。这些异常继承自Error类,此类实现了Throwable接口(所有异常都实现了这个基础接口)这就意味着,当发生错误的时候,以前的代码中的一些错误处理代码将无法被触发。因为在php7版本中,已经使用抛出异常的错误处理机制了。(如果代码中没有捕获Error的异常,那么会引发致命错误)...原创 2019-07-16 16:09:16 · 6719 阅读 · 0 评论 -
WARNING: bridge-nf-call-iptables is disabled 解决
出现问题[root@centos74 ~]# docker infoWARNING: bridge-nf-call-iptables is disabledWARNING: bridge-nf-call-ip6tables is disabled解决方法[root@centos74 ~]# tail -2 /etc/sysctl.conf # 添加如下两行n...原创 2019-07-17 10:32:45 · 1839 阅读 · 1 评论 -
pigz is needed by docker-ce-18.03.1.ce-1.el7.centos.x86_64 问题
出现问题[root@centos74 ~]# rpm -ivh docker-ce-18.03.1.ce-1.el7.centos.x86_64.rpmerror: Failed dependencies: pigz is needed by docker-ce-18.03.1.ce-1.el7.centos.x86_64解决问题由上可以看出 安装 docker ...原创 2019-07-17 10:31:50 · 1363 阅读 · 0 评论 -
containerd.io >= 1.2.2-3 is needed by docker-ce 解决
到下面地址下载相匹配的版本:https://download.docker.com/linux/centos/7/x86_64/stable/Packages/原创 2019-07-17 10:38:18 · 5657 阅读 · 0 评论 -
Requires: container-selinux >= 2.9 问题解决
1)查看所有仓库中所有docker版本,并选择特定版本安装[root@centos74 ~]# yum list docker-ce --showduplicates | sort -r2) 安装docker-ce-17.12.1.ce[root@centos74 ~]# yum -y install docker-ce-17.12.1.ce出现如下报错:3) 解决co...原创 2019-07-17 10:56:54 · 1465 阅读 · 0 评论 -
Docker报错 WARNING: IPv4 forwarding is disabled. Networking will not work.
问题[root@cen76-1 ~]# docker run -d --name nginx-volume-test1 -v /data nginxWARNING: IPv4 forwarding is disabled. Networking will not work.解决办法[root@cen76-1 ~]# echo "net.ipv4.ip_forward=...原创 2019-07-29 11:04:32 · 676 阅读 · 0 评论 -
使用nsenter进入Docker容器后端报错:mesg: ttyname failed: No such device
问题[root@cen76-1 ~]# cat docker_in.sh #!/bin/bash# Use nsenter to access dockerdocker_in(){NAME_ID=$1PID=$(docker inspect --format "{{ .State.Pid }}" $NAME_ID)nsenter --target $PID --mo...原创 2019-07-29 11:15:07 · 1925 阅读 · 0 评论 -
Centos 7 升级 docker engine 问题
问题之前已经安装过旧版本的docker,在安装的时候报错如下:Transaction check error: file /usr/bin/docker from install of docker-ce-cli-1:18.09.8-3.el7.x86_64 conflicts with file from package docker-common-2:1.13.1-96.git...原创 2019-07-21 20:19:42 · 439 阅读 · 0 评论 -
CentOS7 执行yum 出现/var/run/yum.pid 已被锁定 - 解决方法
问题[root@centos7 ~]# yum repolist已加载插件:fastestmirror, langpacks/var/run/yum.pid 已被锁定,PID 为 17403 的另一个程序正在运行。Another app is currently holding the yum lock; waiting for it to exit... 另一个应用程序是:...原创 2019-08-06 08:50:24 · 2664 阅读 · 0 评论 -
yum 报错:db5 错误(-30973) 来自 dbenv->failchk:BDB0087 DB_RUNRECOVERY: Fatal error, run database recovery..
问题[root@centos7 yum.repos.d]# yum repolist错误:rpmdb: BDB0113 Thread/process 78322/139625893844800 failed: BDB1507 Thread died in Berkeley DB library错误:db5 错误(-30973) 来自 dbenv->failchk:BDB0087...原创 2019-07-28 17:37:52 · 5400 阅读 · 1 评论 -
FTP上传经常中断,解决思路.
首先要确认您使用的是主动模式(Port)还是被动模式(PASV).如果为主动模式,需要确认您在服务器上开放了高端端口,并且在FTP Server中指定了这些端口;如果使用的是被动模式,则需要您本地可开放相关端口用于数据交互,但如果您的网络结构受限(如防火墙、路由限制),可能造成无法正常使用,出现频繁连接中断;如果排除以上问题,请确认您本地的网络环境是否稳定,同时您的服务器带宽是否被占满...原创 2019-10-08 13:10:44 · 4551 阅读 · 0 评论 -
CentOS系统安装libssl-dev时No package libssl-dev availab
libssl-dev是ubuntu系统的库,而centos系统对应的是openssl-devel ,centos中运行yum install openssl-develubuntu系统运行apt-get install libssl-dev原创 2019-10-08 16:21:05 · 10038 阅读 · 1 评论