Ubuntu 怎么安装mysql5.7

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu 怎么安装mysql5.7相关的知识,希望对你有一定的参考价值。

      先安装好操作系统

  在mysql官网上下载最新版的Ubuntu Linux专用的Mysql。我这里下载的是:mysql-server_5.7.11-1ubuntu14.04_amd64.deb-bundle.tar。

  解压文件 命令为:tar -xvf mysql-server_5.7.11-1ubuntu14.04_amd64.deb-bundle.tar.

  解压开来后,一共有11个deb包,用sudo dpkg -i [包名]命令逐个安装,因为包与包中间存在依赖关系,这里安装有个先后顺序。

  我的安装的顺序是:

  1.mysql-common_5.7.11-1ubuntu14.04_amd64.deb

  2.libmysqlclient20_5.7.11-1ubuntu14.04_amd64.deb

  3.libmysqlclient-dev_5.7.11-1ubuntu14.04_amd64.deb

  4.libmysqld-dev_5.7.11-1ubuntu14.04_amd64.deb

  5而后需要安装一个依赖包叫libaio1,命令为sudo apt-get intall libaio1;

  而后继续:

  5.mysql-community-client_5.7.11-1ubuntu14.04_amd64.deb

  6.mysql-client_5.7.11-1ubuntu14.04_amd64.deb

  7.mysql-community-source_5.7.11-1ubuntu14.04_amd64.deb

  6

  这里需要再安装一个依赖包叫libmecab2,安装好后,继续安装最后一个:

  8.mysql-community-server_5.7.11-1ubuntu14.04_amd64.deb

  安装过程中需要设置数据库密码。

  到这里,所有的已经安装完毕。输入Mysql -uroot-p可以登陆数据库了。

参考技术A 从mysql官网上下载源码,然后手动编译安装即可 参考技术B 关于Ubentu的介绍网上不多,因为比较偏,很多人都在使用CentOS,你可以看看linux就该这么学,里面有ubentu的相关,你可以去看看~!!

ubuntu 怎么安装mysql

在Linux Ubuntu中安装MySQL数据库

#安装MySQL服务器端
~ sudo apt-get install mysql-server

安装过程会弹出提示框,输入root用户的密码,我在这里设置密码为mysql。
安装完成后,MySQL服务器会自动启动,我们检查MySQL服务器程序

# 检查MySQL服务器系统进程
~ ps -aux|grep mysql
mysql 3205 2.0 0.5 549896 44092 ? Ssl 20:10 0:00 /usr/sbin/mysqld
conan 3360 0.0 0.0 11064 928 pts/0 S+ 20:10 0:00 grep --color=auto mysql

# 检查MySQL服务器占用端口
~ netstat -nlt|grep 3306
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN

# 通过启动命令检查MySQL服务器状态
~ sudo /etc/init.d/mysql status
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service mysql status

Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the status(8) utility, e.g. status mysql
mysql start/running, process 3205

# 通过系统服务命令检查MySQL服务器状态
~ service mysql status
mysql start/running, process 3205

3. 通过命令行客户端访问MySQL
安装MySQL服务器,会自动地一起安装MySQL命令行客户端程序。
在本机输入mysql命令就可以启动,客户端程序访问MySQL服务器。

~ mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 42
Server version: 5.5.35-0ubuntu0.12.04.2 (Ubuntu)

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

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

mysql>

使用户名和密码,登陆服务器

~ mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 37
Server version: 5.5.35-0ubuntu0.12.04.2 (Ubuntu)

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

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

mysql>
参考技术A 您好,请问您是想知道ubuntu 怎么安装mysql吗?

以上是关于Ubuntu 怎么安装mysql5.7的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu 怎么安装mysql5.7

ubuntu18.04 安装的mysql5.7怎么找不到库啊?

Unbuntu18.04通过apt源方式安装mysql5.7.22

centos7源码安装mysql5.7怎么卸载

Ubuntu18.04安装、卸载MySQL

ubuntu16全程安装mysql5.7.15!