本月博客排行
-
第1名
wy_19921005 -
第2名
mft8899 -
第3名
java-007 - Anmin
- benladeng5225
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
benladeng5225 - wy_19921005
- vipbooks
- kaizi1992
- 青否云后端云
- e_e
- tanling8334
- sam123456gz
- arpenker
- zysnba
- fantaxy025025
- xiangjie88
- wallimn
- lemonhandsome
- jh108020
- ganxueyun
- Xeden
- xyuma
- zhanjia
- wangchen.ily
- johnsmith9th
- zxq_2017
- forestqqqq
- jbosscn
- daizj
- ajinn
- xpenxpen
- 喧嚣求静
- kingwell.leng
- lchb139128
- kristy_yy
- jveqi
- javashop
- lzyfn123
- sunj
- yeluowuhen
- lerf
- silverend
- chenqisdfx
- xiaoxinye
- flashsing123
- bosschen
- lyndon.lin
- zhangjijun
- sunnylocus
- lyj86
- paulwong
- sgqt
最新文章列表
CentOS6.2安装MySQL5.5
从上午到现在一直在装MySQL,查了很多资料终于搞定了。和大家分享下。
操作系统:CentOS 6.2
安装工具:Windows 7的Xshell
一、下载cmake和mysql的安装包
wget http://www.cmake.org/files/v2.8/cmake-2.8.5.tar.gz
wget http://mysql.mirror.kang ...
从源代码构建MYSQL
注:cmake需要手动安装,一般操作系统中不自带。
The sequence for installation from a compressed tar file or Zip
archive source distribution is similar to the process for
installing from a generic binary distribution ...
源码编译安装mysql(适用于5.5全部版本)
1.首先安装cmake
# wget http://www.cmake.org/files/v2.8/cmake-2.8.4.tar.gz
# tar zxvf cmake-2.8.4.tar.gz
# cd cmake-2.8.4
# ./configure
# make
# make install
2.安装前的系统设置
建立mysql安装目录及数据存放目录
# mk ...