vnstat是一个基于命令行的Linux系统流量监控工具。官网:http://humdi.net/vnstat。系统是CentOS6.5 32位。
1、安装vnstat
cd /tmp
wget http://humdi.net/vnstat/vnstat-1.14.tar.gz
tar -zxvf vnstat-1.14.tar.gz
cd vnstat-1.14
make
make install
vnstat是一个基于命令行的Linux系统流量监控工具。官网:http://humdi.net/vnstat。系统是CentOS6.5 32位。
1、安装vnstat
cd /tmp
wget http://humdi.net/vnstat/vnstat-1.14.tar.gz
tar -zxvf vnstat-1.14.tar.gz
cd vnstat-1.14
make
make install
centos下安装svn配置、多项目数据仓库配置
1.环境 centos 6.5 32位
2.安装svn
yum -y install subversion
3.配置
建立版本库目录
mkdir /var/www/svndata
svnserve -d -r /var/www/svndata
确认你已经安装好lnmp我用的是lnmp1.2 系统centos 6.5 32位
1.按照官方文档,下载phalcon源码。我下载到/root目录中
#git clone –depth=1 git://github.com/phalcon/cphalcon.git
2.确定是32位系统
# getconf LONG_BIT
32
#cd /root/cphalcon/build/32bits/
3.找到phpize
#whereis phpize
phpize: /usr/bin/phpize
#/usr/bin/phpize
# ./configure –with-php-config=/usr/local/php/bin/php-config –enable-phalcon
#make
1.把yaf-2.3.3.tgz下载到/root
#tar zxvf yaf-2.3.3.tgz
#cd yaf-2.3.3
2.找到phpize到目录
#whereis phpize
phpize: /usr/bin/phpize
3.执行phpize
#/usr/bin/phpize
Configuring for:
PHP Api Version: 20100412
Zend Module Api No: 20100525
Zend Extension Api No: 220100525
4.再执行一下命令
# ./configure – -with-php-config=/usr/local/php/bin/php-config
# make && make install
求MYSQL中某字段内的重复数据,其中ziduan是表table中的字段,具体请自行替换
select ziduan,count(ziduan) from table group by ziduan having count(ziduan)>1
比如 user_name在user_table 中重复
select user_name,count(*) as count from user_table group by user_name having count>1;