#cd /usr/local/src

# tar xvzf mysql-5.1.34.tar.gz

# cd mysql-5.5.1.34

配置和编译

#chmod +x configure

# ./configure --prefix=/usr/local/mysql --enable-local-infile

#make

make时会提示有abi相关的错误,在makefile文件中的最后,将abi相关的部分删除即可

#make install

安装选项文件,将当前文件作为模板

#cp support-files/my-medium.cnf /etc/my.cnf

设置mysql权限

#cd /usr/local/mysql

#chown -R mysql .

#chgrp -R mysql .

新建mysql允许的表

#/usr/local/mysql/bin/mysql_install_db --user=mysql

#chown -R mysql var

设置mysql开机自启动:

# cp /usr/local/src/mysql-5.1.34/support-files/mysql.server /etc/rc.d/init.d/mysql

#chmod +x /etc/rc.d/init.d/mysql

#chkconfig --add mysql

测试并运行mysql

#/usr/local/mysql/bin/mysqld_safe --user=mysql &

#service mysql start

修改mysql管理员密码
#/usr/local/mysql/bin/mysqladmin -u root password password

使用用户登录mysql
# /usr/local/mysql/bin/mysql -u root -p

链接mysql代码

# cd /usr/local/mysql/bin/
#for file in *;
> do 
> ln -s /usr/local/mysql/bin/$file /usr/bin/$file;
> done

测试mysql在任意地点能启动mysql:

#cd

# mysql -u root -p

Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 7
Server version: 5.1.34-log Source distribution

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

查看端口3306

#netstat -atln

最新文章

  1. MySql超新手入门
  2. 构建基于WCF Restful Service的服务
  3. 解决ClickOnce签名过期问题(转载)
  4. (32)odoo中的编码问题
  5. 基于jQuery的上下左右无缝滚动应用(单行或多行)
  6. 使用 Infragistics 的 NetAdvantage 组件时替换部分菜单语言的方法
  7. PHP文件系统概述
  8. 版本问题 Java:Unsupported major.minor version 51.0 (unable to load class . . .
  9. PC端Web项目开发流程
  10. Linux版微信
  11. C语言完美体系
  12. Unity3D学习笔记(一)GUI控件的调用
  13. day19 python之re模块正则练习
  14. 一起学Hadoop——使用IDEA编写第一个MapReduce程序(Java和Python)
  15. 常用的Lambda表达式
  16. 【转】Angular学习总结--很详细的教程
  17. yii2 Rbac实例 (做完以下这些 会有些小的报错,相信各位都能解决,大多数都是自己命名空间上的问题)。
  18. linux centos 如何设置swap大小?
  19. 遍历input文本框
  20. Python3 断言

热门文章

  1. SQL优化之表连接方式
  2. MySQL知识总结(缓存)
  3. 第十二章 学习 shell脚本之前的基础知识
  4. lazarus for win32 serviceApp
  5. 19. ClustrixDB 执行计划解读
  6. net core 返回404方法
  7. Codeforces 950C Zebras ( 贪心 && 模拟 )
  8. sh_11_九九乘法表
  9. 【Leetcode】2的幂(整数的二进制形式,与运算)
  10. tf.random_uniform出错tensorflow2.0出错