当前位置: 移动技术网 > IT编程>数据库>Mysql > mysql 5.7.17 安装配置方法图文教程(ubuntu 16.04)

mysql 5.7.17 安装配置方法图文教程(ubuntu 16.04)

2017年12月12日  | 移动技术网IT编程  | 我要评论

在mysql官网上下载最新版的ubuntu linux专用的mysql。我这里下载的是:

mysql-server_5.7.17-1ubuntu16.04_amd64.deb-bundle.tar

也可从以下mirrors下载:

解压文件 命令为:

复制代码 代码如下:
root@ubuntu:/fly/mysql# tar -xvf ../mysql-server_5.7.17-1ubuntu16.04_amd64.deb-bundle.tar -c ./ 

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

-rw-r--r--  1 7155 31415    841472 nov 28 05:50 libmysqlclient20_5.7.17-1ubuntu16.04_amd64.deb 
-rw-r--r--  1 7155 31415   1189512 nov 28 05:50 libmysqlclient-dev_5.7.17-1ubuntu16.04_amd64.deb 
-rw-r--r--  1 7155 31415  17383814 nov 28 05:50 libmysqld-dev_5.7.17-1ubuntu16.04_amd64.deb 
-rw-r--r--  1 7155 31415     12644 nov 28 05:50 mysql-client_5.7.17-1ubuntu16.04_amd64.deb 
-rw-r--r--  1 7155 31415     71282 nov 28 05:50 mysql-common_5.7.17-1ubuntu16.04_amd64.deb 
-rw-r--r--  1 7155 31415      6815 nov 28 05:50 mysql-community_5.7.17-1ubuntu16.04_amd64.changes 
-rw-r--r--  1 7155 31415   7357222 nov 28 05:50 mysql-community-client_5.7.17-1ubuntu16.04_amd64.deb 
-rw-r--r--  1 7155 31415  24698654 nov 28 05:50 mysql-community-server_5.7.17-1ubuntu16.04_amd64.deb 
-rw-r--r--  1 7155 31415 133305884 nov 28 05:50 mysql-community-source_5.7.17-1ubuntu16.04_amd64.deb 
-rw-r--r--  1 7155 31415  23384678 nov 28 05:50 mysql-community-test_5.7.17-1ubuntu16.04_amd64.deb 
-rw-r--r--  1 7155 31415     12636 nov 28 05:50 mysql-server_5.7.17-1ubuntu16.04_amd64.deb 
-rw-r--r--  1 7155 31415     12652 nov 28 05:50 mysql-testsuite_5.7.17-1ubuntu16.04_amd64.deb 

我的安装的顺序是:
1.mysql-common_5.7.17-1ubuntu16.04_amd64.deb
2.libmysqlclient20_5.7.17-1ubuntu16.04_amd64.deb
3.libmysqlclient-dev_5.7.17-1ubuntu16.04_amd64.deb
4.libmysqld-dev_5.7.17-1ubuntu16.04_amd64.deb

5.mysql-community-client_5.7.17-1ubuntu16.04_amd64.deb
6.mysql-client_5.7.17-1ubuntu16.04_amd64.deb
7.mysql-community-source_5.7.17-1ubuntu16.04_amd64.deb

这里需要再安装一个依赖包叫libmecab2,安装好后,继续安装最后一个:
8.mysql-community-server_5.7.17-1ubuntu16.04_amd64.deb
安装过程中需要设置数据库密码。
到这里,所有的已经安装完毕。输入mysql -u root -p可以登陆数据库了。

root@ubuntu:/fly/mysql# dpkg -i mysql-common_5.7.17-1ubuntu16.04_amd64.deb  
dpkg: warning: downgrading mysql-common from 5.7.17-1ubuntu16.10 to 5.7.17-1ubuntu16.04 
(reading database ... 212644 files and directories currently installed.) 
preparing to unpack mysql-common_5.7.17-1ubuntu16.04_amd64.deb ... 
unpacking mysql-common (5.7.17-1ubuntu16.04) over (5.7.17-1ubuntu16.10) ... 
setting up mysql-common (5.7.17-1ubuntu16.04) ... 
root@ubuntu:/fly/mysql# dpkg -i libmysqlclient20_5.7.17-1ubuntu16.04_amd64.deb  
dpkg: warning: downgrading libmysqlclient20:amd64 from 5.7.17-1ubuntu16.10 to 5.7.17-1ubuntu16.04 
(reading database ... 212644 files and directories currently installed.) 
preparing to unpack libmysqlclient20_5.7.17-1ubuntu16.04_amd64.deb ... 
unpacking libmysqlclient20:amd64 (5.7.17-1ubuntu16.04) over (5.7.17-1ubuntu16.10) ... 
setting up libmysqlclient20:amd64 (5.7.17-1ubuntu16.04) ... 
processing triggers for libc-bin (2.23-0ubuntu5) ... 
root@ubuntu:/fly/mysql# dpkg -i libmysqlclient-dev_5.7.17-1ubuntu16.04_amd64.deb  
dpkg: warning: downgrading libmysqlclient-dev from 5.7.17-1ubuntu16.10 to 5.7.17-1ubuntu16.04 
(reading database ... 212644 files and directories currently installed.) 
preparing to unpack libmysqlclient-dev_5.7.17-1ubuntu16.04_amd64.deb ... 
unpacking libmysqlclient-dev (5.7.17-1ubuntu16.04) over (5.7.17-1ubuntu16.10) ... 
setting up libmysqlclient-dev (5.7.17-1ubuntu16.04) ... 
processing triggers for man-db (2.7.5-1) ... 
root@ubuntu:/fly/mysql# dpkg -i libmysqld-dev_5.7.17-1ubuntu16.04_amd64.deb  
dpkg: warning: downgrading libmysqld-dev from 5.7.17-1ubuntu16.10 to 5.7.17-1ubuntu16.04 
(reading database ... 212644 files and directories currently installed.) 
preparing to unpack libmysqld-dev_5.7.17-1ubuntu16.04_amd64.deb ... 
unpacking libmysqld-dev (5.7.17-1ubuntu16.04) over (5.7.17-1ubuntu16.10) ... 
setting up libmysqld-dev (5.7.17-1ubuntu16.04) ... 
root@ubuntu:/fly/mysql# dpkg -i mysql-community-client_5.7.17-1ubuntu16.04_amd64.deb  
dpkg: warning: downgrading mysql-community-client from 5.7.17-1ubuntu16.10 to 5.7.17-1ubuntu16.04 
(reading database ... 212644 files and directories currently installed.) 
preparing to unpack mysql-community-client_5.7.17-1ubuntu16.04_amd64.deb ... 
unpacking mysql-community-client (5.7.17-1ubuntu16.04) over (5.7.17-1ubuntu16.10) ... 
setting up mysql-community-client (5.7.17-1ubuntu16.04) ... 
processing triggers for man-db (2.7.5-1) ... 
root@ubuntu:/fly/mysql# dpkg -i mysql-client_5.7.17-1ubuntu16.04_amd64.deb  
dpkg: warning: downgrading mysql-client from 5.7.17-1ubuntu16.10 to 5.7.17-1ubuntu16.04 
(reading database ... 212644 files and directories currently installed.) 
preparing to unpack mysql-client_5.7.17-1ubuntu16.04_amd64.deb ... 
unpacking mysql-client (5.7.17-1ubuntu16.04) over (5.7.17-1ubuntu16.10) ... 
setting up mysql-client (5.7.17-1ubuntu16.04) ... 
root@ubuntu:/fly/mysql# dpkg -i mysql-community-source_5.7.17-1ubuntu16.04_amd64.deb  
dpkg: warning: downgrading mysql-community-source from 5.7.17-1ubuntu16.10 to 5.7.17-1ubuntu16.04 
(reading database ... 212644 files and directories currently installed.) 
preparing to unpack mysql-community-source_5.7.17-1ubuntu16.04_amd64.deb ... 
unpacking mysql-community-source (5.7.17-1ubuntu16.04) over (5.7.17-1ubuntu16.10) ... 
setting up mysql-community-source (5.7.17-1ubuntu16.04) ... 
root@ubuntu:/fly/mysql# dpkg -i mysql-community-server_5.7.17-1ubuntu16.04_amd64.deb  
selecting previously unselected package mysql-community-server. 
(reading database ... 212644 files and directories currently installed.) 
preparing to unpack mysql-community-server_5.7.17-1ubuntu16.04_amd64.deb ... 
unpacking mysql-community-server (5.7.17-1ubuntu16.04) ... 
setting up mysql-community-server (5.7.17-1ubuntu16.04) ... 
update-alternatives: using /etc/mysql/mysql.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode 
processing triggers for systemd (229-4ubuntu13) ... 
processing triggers for ureadahead (0.100.0-19) ... 
processing triggers for man-db (2.7.5-1) ... 
root@ubuntu:/fly/mysql# mysql -u root -p 
enter password:  
welcome to the mysql monitor.  commands end with ; or \g. 
your mysql connection id is 3 
server version: 5.7.17 mysql community server (gpl) 
 
copyright (c) 2000, 2016, 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简单安装方式:

1. sudo apt-get install mysql-server

2. apt-get isntall mysql-client

3.  sudo apt-get install libmysqlclient-dev

安装过程中会提示设置密码什么的,注意设置了不要忘了,安装完成之后可以使用如下命令来检查是否安装成功:

sudo netstat -tap | grep mysql

通过上述命令检查之后,如果看到有mysql 的socket处于 listen 状态则表示安装成功。

登陆mysql数据库可以通过如下命令:

mysql -u root -p

-u 表示选择登陆的用户名, -p 表示登陆的用户密码,上面命令输入之后会提示输入密码,此时输入密码就可以登录到mysql。

然后通过 show databases; 就可以查看当前的数据库。

我们选择 mysql数据库就行下一步操作,使用use mysql 命令,显示当前数据库的表单:show tables

mysql下如何执行sql脚本

mysql> create database mydatabase; 
query ok, 1 row affected (0.00 sec) 
 
mysql> use mydatabase; 
database changed 
mysql> source ./mysql.sql 
query ok, 0 rows affected, 1 warning (0.00 sec) 
query ok, 0 rows affected (0.00 sec) 
query ok, 0 rows affected (0.33 sec) 
records: 0 duplicates: 0 warnings: 0 
query ok, 0 rows affected, 1 warning (0.00 sec) 
query ok, 0 rows affected (0.00 sec) 
query ok, 0 rows affected, 1 warning (0.00 sec) 
query ok, 0 rows affected (0.04 sec) 
query ok, 0 rows affected, 1 warning (0.00 sec) 
query ok, 0 rows affected (0.00 sec) 
 
mysql> show tables; 

dpkg安装出现的问题:

安装mysql server时产生软件依赖问题:
mysql-community-server depends on apparmor; however:
package apparmor is not installed.
mysql-community-server depends on libmecab2 (>= 0.996-1.2ubuntu1); however:
package libmecab2 is not installed.
那就先安装上:
sudo apt -get install libmecab2
然后mysql-community-server,mysql-server就能正常使用了

在ubuntu下安装任何软件都提示以下错误:

you might want to run 'apt-get -f install' to correct these:
the following packages have unmet dependencies:
 kate : depends: kdelibs4c2a (>= 4:3.5.9) but it is not going to be installed
        depends: libqt3-mt (>= 3:3.3.8b) but it is not going to be installed
        recommends: kregexpeditor but it is not installable
 kscope : depends: kdelibs4c2a (>= 4:3.5.7-1) but it is not going to be installed
          depends: libaudio2 but it is not going to be installed
          depends: libqt3-mt (>= 3:3.3.8really3.3.7) but it is not going to be installed
          depends: cscope but it is not going to be installed
          depends: exuberant-ctags but it is not going to be installed
          depends: graphviz but it is not going to be installed
e: unmet dependencies. try 'apt-get -f install' with no packages (or specify a solution).

解决方法:

     删除提示的kate和kscope两个未完全安装的软件。

 $sudo dpkg --purge kate
 $sudo dpkg --purge kscope

精彩专题分享:mysql不同版本安装教程 mysql5.7各版本安装教程 mysql5.6各版本安装教程

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持移动技术网。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网