由于安装HIVE需要mysql管理元数据,临时抱佛脚,安装一下mysql。
如有问题,请再google哈。
linux默认安装了mysql。
版本可能比较低,卸载了先
rpm -qa |grep mysql
rpm -e -allmatches --nodeps
下载mysql
http://www.mysql.com/downloads/mysql/
当时也不知道怎么想的,下了一个源码包。给自己找麻烦。
使用源码安装mysql需要使用cmake编译,cmake没用过,还需要再学习呀。
下载个cmake
http://cmake.org/cmake/resources/software.html
./configure
gmake
make install
添加执行路径安装完成。
下面是 mysql-5.5.19/INSTALL-SOURCE
# Preconfiguration setup
shell> groupadd mysql
shell> useradd -r -g mysql mysql
# Beginning of source-build specific instructions
shell> tar zxvf mysql-VERSION.tar.gz
shell> cd mysql-VERSION
shell> cmake .
shell> make
shell> make install
# End of source-build specific instructions
# Postinstallation setup
shell> cd /usr/local/mysql
shell> chown -R mysql .
shell> chgrp -R mysql .
shell> scripts/mysql_install_db --user=mysql
shell> chown -R root .
shell> chown -R mysql data
# Next command is optional
shell> cp support-files/my-medium.cnf /etc/my.cnf
shell> bin/mysqld_safe --user=mysql &
# Next command is optional
shell> cp support-files/mysql.server /etc/init.d/mysql.server
我就是按照上面的步骤完成了mysql的安装和启动。
反正,目前是对mysql不是十分了解。
到client目录下,执行mysql -uroot -p
测试是否可以登录。
等有时间再好好研究吧。