安装的mysql数据库是:mysql-5.6.4-m7,这个版本的数据库要用cmake工具安装。 CMake是一个跨平台的安装(编译)工具,可以用简单的语句来描述所有平台的安装(编译过程)。他能够输出各种各样的makefile或者project文件,能测试编译器所支持的C++特性,类似UNIX下的automake cmake下载地址:http://www.cmake.org/cmake/resources/software.html
1、安装cmake[root@localhost tmp]# cd cmake-2.8.9/[root@localhost cmake-2.8.9]# ./bootstrap[root@localhost cmake-2.8.9]#make[root@localhost cmake-2.8.9]#make install 如果要更新cmake 只需进入相关目录,执行cmake.makemake install
2、安装mysql[root@localhost mnt]# cd mysql-5.6.4-m7/[root@localhost mnt]# cmake . 可能回出现下面问题:-- Could NOT find Curses (missing:CURSES_LIBRARY CURSES_INCLUDE_PATH)CMake Error at cmake/readline.cmake:83 (MESSAGE):Curses library not found.Please install appropriate package, remove CMakeCache.txt and rerun cmake.On Debian/Ubuntu, package name is libncurses5-dev, on RedHat and derivates it is ncurses-devel.Call Stack (most recent call first):cmake/readline.cmake:136 (FIND_CURSES)cmake/readline.cmake:226 (MYSQL_USE_BUNDLED_LIBEDIT)CMakeLists.txt:262 (MYSQL_CHECK_READLINE)按照上面内容提示的方法进行修改:若是redhat 安装ncurses-devel这个包即可。 [root@localhost mysql-5.6.4-m7]# yum install ncurses-devel*[root@localhost mysql-5.6.4-m7]# rm CMakeCache.txt(注意这里是删除CMakeCache.txt,有一个跟他很相似的文件,别删错了!)[root@localhost mysql-5.6.4-m7]#make[root@localhost mysql-5.6.4-m7]#make install
3、安装默认的数据库 [mysql@localhost mysql]$ cd scripts/[mysql@localhost scripts]$ ls[mysql@localhost scripts]$ sudo ./mysql_install_db --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data/ --user=mysql 安装完后有这么一段提示,可以仔细看看:To start mysqld at boot time you have to copysupport-files/mysql.server to the right place for your system PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !To do so, start the server, then issue the following commands: /usr/local/mysql//bin/mysqladmin -u root password "new-password"/usr/local/mysql//bin/mysqladmin -u root -h localhost.localdomain password "new-password" Alternatively you can run:/usr/local/mysql//bin/mysql_secure_installation which will also give you the option of removing the testdatabases and anonymous user created by default.This isstrongly recommended for production servers. See the manual for more instructions.You can start the MySQL daemon with:cd /usr/local/mysql/ ; /usr/local/mysql//bin/mysqld_safe & You can test the MySQL daemon with mysql-test-run.plcd /usr/local/mysql//mysql-test ; perl mysql-test-run.pl
CentOS 6.3 安装MySQL与SQLyog连接RHEL5.5上Oracle 10g客户端的安装相关资讯 MySQL安装教程
- RedHat 6.3 源码安装 MySQL-5.5.29 (12/27/2012 11:18:51)
- Hadoop集群(第10期)_MySQL关系数 (12/23/2012 12:57:58)
- Ubuntu 12.10 下MySQL 5.1.65 解压 (12/05/2012 08:48:43)
| - CentOS上MySQL安装配置操作说明 (12/26/2012 15:52:34)
- Linux下编译安装MySQL5.5 (12/16/2012 10:38:17)
- CentOS 6.3安装MySQL 5.5 (11/29/2012 08:18:36)
|
本文评论 查看全部评论 (0)