• 解决Warning: /dev/root does not exist, could not boot

    日期:

    安装过程中出错,提示如下: Warning: /dev/root does not exist, could not boot 上网查到解决方法,共两步: 1、把U盘的Lable(即标签)修改成CENTOS; 2、在安装界面上按TAB键,修改启动路径,把CENTOS\x207\x20x86_64改成 CENTOS 修改完,按 Ctrl + X 既...

  • 解决CentOS安装过程报错

    日期:

    CentOS安装过程报错 Unable to read group information from repositories. This is a problem with the generation of your install tree 网上搜到说是bug http://bbs.linuxtone.org/thread-16947-1-1.html 个人解决办法:把boot大小由200改为1024安装不报...

  • 解决centos6系统报出的kernel bug的方案

    日期:

    今年的第一天上班,就让我意外的发现有两台服务器日志里出现了管理kernel bug的报错。 Feb1415:24:15svn3kernel:EOI Feb1415:24:15svn3kernel:swapper:pageallocationfailure.order:1,mode:0x20 Feb1415:24:15svn3kernel:Pid:0, comm :swapperNottainted2.6.3...

  • 解决克隆 centos虚拟机后修改克隆后的机器的ip、mac、uuid失败的问题

    日期:

    1 执行如下命令 # rm -f /etc/udev/rules.d/70-persistent-net.rules 2 重启虚拟机 # reboot 3 重新配置ip地址 # vi /etc/sysconfig/network-scripts/ifcfg-eth0 删除MACADDR和UUID选项 4 重启网络服务 # service network restart...

  • CentOS报错You don't have permission to access on this server

    日期:

    CentOS出错You dont have permission to access on this server 检查http.conf发现没错之后,查找资料后发现时selinux的问题,所以需要关闭这个服务: 1 vi /etc/sysconfig/selinux 2 SELINUX=enforcing 改为 SELINUX=disabled 重启后生效 不需重启 执行命令:...

  • Apache出现 You don't have permission to access /phpmyadmin/ on this server. 解决办法

    日期:

    在 CentOS5.3 + MySQL 5.0.45 + Apache2.2.3 + PHP5.1.6(都是系统自带的)中运行PHP程序出错。 装好 apache+php+mysql 后,拷贝(tar / mv )一份 phpmyadmin 过后运行出错: You dont have permission to access / on this server 有人说把selinux关掉就好了,...

  • 解决centos7下tomcat启动正常,无法访问项目的问题

    日期:

    centos7防火墙不再采用iptables命令,改用firewalld 禁用防火墙命令: # systemctl stop firewalld.service# systemctl disable firewalld.service# systemctl status firewalld.service 启动一个服务:systemctl start firewalld.service关闭一个服务:syst...

  • 解决CentOS开机启动卡在进度条

    日期:

    CentOS6 开机启动卡在进度条,按ESC显示启动详细信息,如下错误: Starting NFS services: [ OK ] Starting NFS quotas: Cannot register service: RPC: Unable to receive; errno = Connection refused rpc.rquotad: unable to register (RQUOTAPROG, RQUOTA...

  • 解决ssh登录报错-bash fork retry Resource temporarily unavailable

    日期:

    SSH用非root用户登录报错,bash fork retry Resource temporarily unavailable。 引起该问题的原因可能是/etc/security/limits.d/90-nproc.conf文件中nproc达到了上限,或者上述配置文件只针对特定用户放开了限制,而其它用户依然还有限制。 这里的90-nproc.c...

  • 解决CentOS中无法使用setup命令 -bash:setup: command

    日期:

    出现这个问题是因为 Minimal 安装模式 所以并没有安装 setuptool 软件. 解决办法为: 使用yum 源直接下载安装 或者 去下载 setuptool 软件包安装 #安装setuptool yum install setuptool #可以发现执行setup后不全,再安装一个用于系统服务管理 yum install nt...