1.首先在命令行输入mysql,看一下本地计算机上是否有mysql。 2.卸载mysql服务: 首先查看安装的rpm的包:rpm –qa |grep mysql 对之前的服务进行删除。rpm –e mysql –server yum –y remove mysql-lib-5.1.52*。 3.下载...
分类:
数据库 时间:
2014-06-28 18:56:02
阅读次数:
628
Type the following command to install ntp:# yum install -y ntpTurn on service:#chkconfig ntpd onSynchronize the system clock with 0.pool.ntp.org serve...
分类:
其他好文 时间:
2014-06-28 14:45:54
阅读次数:
185
安装apache:yum install httpd httpd-devel启动apache:/etc/init.d/httpd start此时输入服务器的IP地址,应该看到apache的服务页面,端口不用输,apache默认就是使用80端口安装mysql:yum install mysql mys...
分类:
Web程序 时间:
2014-06-28 12:24:21
阅读次数:
211
http://www.csdn.net/article/2012-08-23/2809053-PostgreSQL-is-Our-New-Default一、安装(以root身份进行)1、检出最新的postgresql的yum配置从http://yum.pgsqlrpms.org/reporpms/r...
分类:
数据库 时间:
2014-06-28 11:55:23
阅读次数:
260
在某些情况下想把centos中的数据库相关安装文件全部删除掉,需要用到yum命令,具体方法如下:查找mysql相关的安装文件:[root@localhost ~]# rpm -qa | grep mysqlmysql-5.1.47-1.fc11.i586mysql-server-5.1.47-1.f...
分类:
数据库 时间:
2014-06-21 12:05:15
阅读次数:
248
Given a sorted linked list, delete all duplicates such that each element appear only once.For example, Given 1->1->2, return 1->2. Given 1->1->2->3->3...
分类:
其他好文 时间:
2014-06-21 07:30:11
阅读次数:
157
Given an array and a value, remove all instances of that value in place and return the new length.The order of elements can be changed. It doesn't mat...
分类:
其他好文 时间:
2014-06-21 07:17:47
阅读次数:
210
第一步, #yum install codeblocks codeblocks-contrib codeblocks-devel第二步,到官方下载源码包,我下的是wxX11的3.0版的。#tar ***.tar.gz#./configure#make && make install安装完毕!新建pr...
分类:
其他好文 时间:
2014-06-20 23:45:39
阅读次数:
399
How to remove a network bridge in Windows Server 2008 R2症状:删除网桥的时候,按理说应该在“网络连接”中选择要被删除的网桥,右键点击,然后选择“删除”。但是实际操作中发现网桥很难删掉。有时候会报告“没有权限”错误,有时候报告“一个未知错误”,有...
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.Do not allocate extra space for...
分类:
其他好文 时间:
2014-06-20 21:48:33
阅读次数:
254