Ubuntu 12.04下安装MySQL图解

先下载好mysql的linux安装包,从官网下,我下载的是5.6社区版, 下载后传到ubuntu上去。

包放在~/download目录下,全部安装命令如下:

1、解压tar.gz

tar –xzf  mysql-5.6.26-linux-glibc2.5-x86_64.tar.gz

2、重命名解压的文件夹

mv mysql-5.6.26-linux-glibc2.5-x86_64 mysql

3、将mysql文件夹移动到/usr/local目录下

sudo mv ~/download/mysql  /usr/local

4、进入mysql目录

cd /usr/local/mysql

5、增加mysql用户及组

sudo useradd -r  mysql

6、将mysql文件夹own及grp变更为mysql

sudo chown -R mysql:mysql mysql/

7、执行mysql安装脚本

sudo scripts/mysql_install_db --user=mysql

(若未安装libaio包,会有一个报错提示,安装libaio-dev后,再运行脚本即可。如果还是出错可以删除rm -rf /etc/my.cnf)

sudo apt-get install libaio-dev

8、将目录权限变更回来,仅保留data目录为mysql用户

sudo chown -R root:root mysql .

sudo chown -R mysql:mysql  data

9、将mysql配置文件拷贝到etc目录(全局配置)

注意:5.6版本的默认配置文件名称由原先的my-medium变更为了my-default。

sudo cp support-files/my-default.cnf /etc/my.cnf

10、启动mysql

sudo bin/mysqld_safe --user=mysql &

11、初始化mysql root用户密码

sudo bin/mysqladmin -u  root -p   ‘用户自定义密码‘;

#ps -A|grep mysql 
   显示类似:
  1829 ?        00:00:00 mysqld_safe
   1876 ?        00:00:31 mysqld
  2.#kill -9 1829
  3.#kill -9 1876

12、复制mysql.server脚本到/etc/init.d(初始化服务,有些人喜欢改成mysql,在这里改就可以)

sudo cp support-files/mysql.server /etc/init.d/mysql.server

14、查看mysql运行状态

sudo service mysql.server status
如果运行正常,会显示 MySQL running。

如果显示 not running,应该是前面没有启动服务,可直接用service mysql.server start启动

sudo service mysql.server [status|start|stop]

15、让mysql开机启动[defaults],取消开机启动[remove]

sudo update-rc.d -f mysql.server defaults  [remove]

16、将mysql/bin/mysql命令加入到用户命令中,或将mysql/bin目录加入path

加入用户命令:

sudo ln -s /usr/local/mysql/bin/mysql /usr/local/bin/mysql

加入环境变量:

export PATH=$PATH:/usr/local/mysql/bin

17、允许root用户远程登录

1>进入mysql: mysql –u root –p

2>改变数据库: use mysql;

3>从任意主机登录: grant all privileges on *.* to [email protected]"%" identified by "密码文字" with grant option;

4>从指定主机登录: grant all privileges on *.* to [email protected]"192.168.1.101" identified by "passw0rd" with grant option;

5>授权生效: flush privileges;

6>查看host为%授权是否添加: select * from user;

7>查看数据库字符集: show variables like ‘character%‘;

启动完mysql后,我们接着可以测试一下,使用“mysql”命令来进入mysql数据库的控制台
$mysql -u root

在这里之所以用-u root是因为我现在是一般用户(firehare),如果不加-u root的话,mysql会以为是firehare在登录。注意,我在这里没有进入根用户模式,因为没必要。一般来说,对mysql中的数据库进行操作,根本没必要进入根用户模式,只有在设置时才有这种可能。

进入mysql之后,最要紧的就是要设置Mysql中的root用户密码了,否则,Mysql服务无安全可言了。
mysql> GRANT ALL PRIVILEGES ON *.* TO [email protected] IDENTIFIED BY "123456";
如果需要使用root从其他机器远程访问可以使用
mysql> GRANT ALL PRIVILEGES ON *.* TO [email protected]“%” IDENTIFIED BY "123456";
注意,我这儿用的是123456做为root用户的密码,但是该密码是不安全的,请大家最好使用大小写字母与数字混合的密码,且不少于8位。

配置文件参考:

[html] view plain copy

  1. # For advice on how to change settings please see
  2. # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html
  3. # *** DO NOT EDIT THIS FILE. It‘s a template which will be copied to the
  4. # *** default location during install, and will be replaced if you
  5. # *** upgrade to a newer version of MySQL.
  6. [client]
  7. port        = 3306
  8. default-character-set=utf8
  9. # Here is entries for some specific programs
  10. # The following values assume you have at least 32M ram
  11. [mysqld]
  12. character_set_server=utf8
  13. lower_case_table_names=1
  14. init_connect=‘SET NAMES utf8‘
  15. lower_case_table_names=1
  16. max_connections=3000
  17. max_allowed_packet = 32M
  18. thread_cache_size = 16
  19. thread_concurrency = 8
  20. query_cache_size = 128M
  21. # Remove leading # and set to the amount of RAM for the most important data
  22. # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
  23. # innodb_buffer_pool_size = 128M
  24. # Remove leading # to turn on a very important data integrity option: logging
  25. # changes to the binary log between backups.
  26. # log_bin
  27. # These are commonly set, remove the # and set as required.
  28. # basedir = .....
  29. # datadir = .....
  30. # port = .....
  31. # server_id = .....
  32. # socket = .....
  33. # Remove leading # to set options mainly useful for reporting servers.
  34. # The server defaults are faster for transactions and fast SELECTs.
  35. # Adjust sizes as needed, experiment to find the optimal values.
  36. join_buffer_size = 16M
  37. sort_buffer_size = 16M
  38. # read_rnd_buffer_size = 2M
  39. sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
  40. [mysqldump]
  41. quick
  42. quote-names
  43. max_allowed_packet = 32M
  44. [mysql]
  45. no-auto-rehash

参考文章: http://blog.csdn.net/njchenyi/article/details/17615391

时间: 2024-10-12 17:02:06

Ubuntu 12.04下安装MySQL图解的相关文章

Angularjs学习---angularjs环境搭建,ubuntu 12.04下安装nodejs、npm和karma

1.下载angularjs 进入其官网下载:https://angularjs.org/?,建议下载最新版的:https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.7/angular.js 所有版本:https://code.angularjs.org/ 2.示例1 HelloWorld ! 新建一个helloworld.html <!doctype html> <html ng-app> <head> &

Ubuntu 12.04 下安装 Eclipse

方法一:(缺点是安装时附加openjdk等大量程序并无法去除,优点是安装简单) $ sudo apt-get install eclipse 方法二:(优点是安装内容清爽,缺点是配置麻烦)1.安装JDK,参考 Ubuntu 12.04 下安装 JDK 7 2.下载 Eclipse 从 http://www.eclipse.org/downloads/index-developer.php下载合适版本,如:Eclipse IDE for C/C++ Developers 3.解压文件$ sudo

Ubuntu 12.04下安装ibus中文输入法

这是最完整的安装方法: ibu是一个框架,可以支持多种输入法,像是pinyin,五笔等. 1,安装ibus框架 终端输入以下命令: sudo apt-get install ibus ibus-clutter ibus-gtk ibus-gtk3 ibus-qt4 2,启用Ibus框架 终端输入以下命令: im-switch -s ibus 3,重新启动Computer,或者注销当前用户. 4,安装相应输入法引擎: 如安装拼音: sudo apt-get install ibus-pinyin

Ubuntu 12.04下安装OpenCV 2.4.5总结

> 系统配置:Ubuntu 12.04 安装步骤: 1.官网下载OpenCV2.4.5  http://opencv.org/ 解压到home/用户名/opencv2.4.5 2.安装cmake $sudo apt-get install cmake 3.编译opencv (1)在刚才opencv的解压目录下新建build文件夹 $cd ~/opencv2.4.5 $mkdir build $cd build $cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE

Ubuntu 16.04下安装MySQL详解

Ubuntu 16.04下安装MySQL详解分别依次输入以下3个命令: sudo apt-get install mysql-server sudo apt install mysql-client sudo apt install libmysqlclient-dev 安装成功后可以通过下面的命令测试是否安装成功: sudo netstat -tap | grep mysql 出现如下信息证明安装成功: >>> sudo netstat -tap | grep mysql tcp 0

ubuntu 12.04下安装Qt出现cannot execute binary file的解决方案

最近在ubuntu 12.04下安装QT的过程中,遇到一个问题. ./qt-opensource-linux-x64-5.7.0.run出现了bash: ./qt-opensource-linux-x64-5.7.0.run: cannot execute binary file. 我用我自己的解决方案分享给大家,同时也为自己以后做个笔记. 第一:查看Linux当前操作系统名称(信息).命令:uname -a出现下面这个:Linux ubuntu 3.5.0-23-generic #35~pre

ubuntu 12.04下安装中文输入法

在Ubuntu 12.04以及基于Ubuntu的发行版上安装fcitx小企鹅输入法,并安装Linux版本搜狗输入法. 方法: 提供两种输入法,一种添加PPA安装,第二种直接添加源安装. 下面是第二种直接安装(个人觉得比较方便:) 实现过程: 先 卸载ibus输入法: sudo apt-get remove ibus 然后 sudo gedit /etc/apt/sources.list 在打开的sources.list中加入以下两行: deb http://ppa.launchpad.net/f

ubuntu 14.04下安装mysql 5.5

1.ubuntu下安装mysql需要一些命令 (1)sudo apt-get install mysql-server 安装过程中会出现如下窗口,需要用户输入相关的数据库密码: (2)sudo apt-get isntall mysql-client (3)sudo apt-get install libmysqlclient-dev 安装完成之后,可以用下面的命令检查是否安装成功 sudo netstat -tap | grep mysql 通过上述命令检查之后,如果看到有mysql 的soc

ubuntu 12.04下安装openldap,slapd.conf找不到的解决方法

https://help.ubuntu.com/12.04/serverguide/openldap-server.html ubuntu安装openldap经历了一系列挫折,网上找了半天资料都是一模一样,根本不能解决问题. 1.使用 apt-get install slapd ldap-utils,提示已经是最新版本 2. 在/etc/ldap目录下看到了有ldap.conf  sasl2  schema  slapd.d,没有之前熟悉的slapd.conf文件, 原来ubuntu安装ldap