/bin/rm: cannot remove `libtoolT’: No such file or directory 解决方案
最近在编译MySQL的过程发现错误提示: /bin/rm: cannot remove `libtoolt': No such file or directory 解决方法: 1、确认libtool是否已经安装,如果没有安装的话,则先安装libtool # yum -y ..【继续阅读全文】
View Article解决CentOS6.2下安装ipvsadm-1.26报错
最近研究一下LVS+Keepalived,之前环境都是CentOS5的,这次在CentOS6.2中测试安装缺发现一点小问题,特意记录一下: ipvsadm-1.26.tar.gz (for kernel 2.6.28-rc3 or later) - February 8, 2011 [root@..【继续阅读全文】
View ArticleCentOS6.2下搭建LVS(DR)+Keepalived实现高性能高可用负载均衡服务器
前言部分来源于网络 背景: 随着你的网站业务量的增长你网站的服务器压力越来越大?需要负载均衡方案!商业的硬件如F5又太贵,你们又是创业型互联公司如何有效节约..【继续阅读全文】
View ArticleCentOS6.2下搭建LVS(NAT)+Keepalived实现高性能高可用负载均衡服务器
上一篇文档写的是LVS(DR)+ Keepalived实现高性能高可用负载均衡服务器,这次主要写的是基于LVS(NAT)+ Keepalived实现高性能高可用负载均衡服务器。 其实NAT模式在企业用的不多,我和很多朋友都沟通过这个事..【继续阅读全文】
View ArticleCentOS6.2安装源码httpd-2.4.1错误解决办法
apache常见错误总结: 1、./configure报错 Configuring Apache Portable Runtime library ... checking for APR... configure: error: the --with-apr parameter is incorrect. It must specify an install pr..【继续阅读全文】
View ArticleCentOS6.2下安装apr-1.4.6报错解决办法
我在安装apr的时候出现 [root@www apr-1.4.6]# ./configure --prefix=/usr/local/apr rm: cannot remove `libtoolT': No such file or directory 解决办法: vim configure 在30048行 # $..【继续阅读全文】
View ArticleCentOS6.2解决passwd: Authentication token manipulation error报错
passwd: Authentication token manipulation error这种错误可能有多种原因,就我了解的可能有/etc/passwd等文件+i权限 今天在给学员上课的时候发现提示passwd: Authentication token manipulation error错误,我..【继续阅读全文】
View ArticleCentOS6.2配置php-cgi错误解决办法
[root@host1 php-5.2.10]# /usr/local/php-5.2.10/sbin/php-fpm start Starting php_fpm Apr 10 02:59:31.509496 [ERROR] fpm_unix_conf_wp(), line 124: please specify user and group other than root, pool...
View Articlesudo执行时报错error while loading shared libraries: libsasl2.so.2
执行sudo时报错:内容如下所示 [frank@linuxbrother.com ~]$ sudo su - sudo: error while loading shared libraries: libsasl2.so.2: cannot open shared object file: No such file or directory 解决办法:..【继续阅读全文】
View ArticleCentOS6.2部署Kickstart无人值守环境
前提条件: 将Centos6.2 二章光盘挂载拷贝到/var/ftp/pub/centos/6.2/下 [root@server Packages]# du -sh /var/ftp/pub/centos/6.2/ 5.4G /var/ftp/pub/centos/6.2/ 一、安装TFTP [r..【继续阅读全文】
View ArticleCentOS6.2部署DNS
[root@server ~]# yum -y install bind bind-chroot bind-devel bind-libs bind-utils [root@server ~]# cp -p /etc/named.* /var/named/chroot/etc/ [root@server ~]# cd /var/named/chroot/etc/ [root@serve..【继续阅读全文】
View Article张宴Nginx 0.8.x + PHP 5.2.13(FastCGI)搭建胜过Apache十倍的Web服务器(第6版)故障解决方案
进来准备研究Nginx,很早之前就听说张宴的大名。所以从网上baidu到张宴的blog地址,按照http://blog.s135.com/nginx_php_v6/文章一步步搭建,其中遇到很多问题,特此专门针对目前我的环境将遇到的问题一一整理,..【继续阅读全文】
View ArticleMySQL的主从同步
MySQL的主从同步是一个很成熟的架构:优点为: ①在从服务器可以执行查询工作(即我们常说的读功能),降低主服务器压力 ②在从主服务器进行备份,避免备份期间影响主服务器服务 ③当主服务器出现问题时,可以切..【继续阅读全文】
View Article./libtool: line 990: g++: command not found故障解决
今天空闲准备安装Nginx玩玩,在安装pcre的时候遇到 ./libtool: line 990: g++: command not found报错信息 于是直接yum -y install gcc* 然后继续make OK 通过~~【继续阅读全文】
View ArticleCentOS6.2部署Nginx虚拟主机
[root@host1 ~]# yum -y install gcc* openssl-devel zlib-devel make pcre pcre-devel 安装Nginx [root@host1 ~]# tar -zxvf nginx-0.8.46.tar.gz -C /usr/src/ [root@host1 ~]# cd /usr/src/nginx-0.8.46/ ..【继续阅读全文】
View Article安装Heartbeat-3-0-7各种错误解决方案
进来没事研究一下Heartbeat,其官方下载网站:http://www.linux-ha.org/wiki/Downloads 目前版本: ClusterLabs-resource-agents-v3.9.2-0-ge261943.tar.gz Heartbeat-3-0-7e3a82377fa8.tar.bz2 Pacemaker-1-..【继续阅读全文】
View ArticleCentOS5.5部署zlib导致yum使用不了,报错Yum Segmentation Fault (core Dumped)
在一台CentOS.5.5的机器上使用Yum时突然报错,提示Yum Segmentation Fault (core Dumped) ;并产生core.*文件 解决办法: # rpm -q zlib zlib-devel # cp /usr/lib/libz.so.1.2.3 /usr/local/lib/ # cd /usr/..【继续阅读全文】
View ArticleCentOS5.5升级glibc-2.7
系统:CentOS5.5 环境:glibc-2.5-49.el5_5.7 升级版本:glibc-2.7.tar.gz [root@dev201 ~]# cd /usr/src/ [root@dev201 src]# tar -zxf glibc-2.7.tar.gz [root@dev201 src]# cd glibc-2.7 [root@dev201 ..【继续阅读全文】
View ArticleMySQL用户管理
MySql中添加用户,新建数据库,用户授权,删除用户,修改密码(注意每行后边都跟个;表示一个命令语句结束):1.新建用户登录MYSQL: @>mysql -u root -p @>密码创建用户: mysql> insert into mysql.u..【继续阅读全文】
View Article