Linux14.04安装Mysql Linux公社

时间:2024-04-14 22:34:33

今天在Ubuntu 14.04下安装MySQL,本来是去官网下载安装包来安装的,可是安装之后却不能用,估计是要配置吧,在网上搜了很多的资料,结果还是失败。所以只好在软件源中安装,这样就省去很多不必要的麻烦了。

www.linuxidc.com@linuxidc:~$ sudo apt-get install mysql-server
[sudo] password for linuxidc:

Linux14.04安装Mysql   Linux公社

执行该命令后,系统还会自动安装其它的一些软件,在安装过程中会提示输入mysql的登入密码。

Linux14.04安装Mysql   Linux公社

使用Tab键选择确定

Linux14.04安装Mysql   Linux公社

上图,要输入两次密码,我这里就输入v,测试用吗。简单点,记住,后面要用到。
 
如果系统版本不一样,提示的方式可能不一样,不过总体来说都差不多。安装好后,执行命令

www.linuxidc.com@linuxidc:~$ mysql
ERROR 1045 (28000): Access denied for user 'linuxidc'@'localhost' (using password: NO)
www.linuxidc.com@linuxidc:~$

Linux14.04安装Mysql   Linux公社

结果出现错误,Google了半天,结果越来越没耐心,这时候翻了翻自己买的书籍,输入了下面的命令

www.linuxidc.com@linuxidc:~$ mysql -uroot -pv

Linux14.04安装Mysql   Linux公社

其中第一个mysql是命令,-uroot是指定用户为root,-pv是输入登入密码,v是密码,如果你设置的密码是别的,就换成自己安装时设置的密码,切记密码和-p之间不要有空格,不然会失败的。下面是我成功登入后,查看当前所有存在的数据库。

linuxidc@ubuntu:~$ mysql -uroot -pv
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 44
Server version: 5.5.37-0ubuntu0.14.04.1 (Ubuntu)

Copyright (c) 2000, 2014, 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权威指南(原书第2版)》清晰中文扫描版 PDF http://www.linuxidc.com/Linux/2014-03/98821.htm

Ubuntu 14.04 LTS 安装 LNMP Nginx\PHP5 (PHP-FPM)\MySQL  http://www.linuxidc.com/Linux/2014-05/102351.htm

Ubuntu 14.04下搭建MySQL主从服务器 http://www.linuxidc.com/Linux/2014-05/101599.htm

Ubuntu 12.04 LTS 构建高可用分布式 MySQL 集群 http://www.linuxidc.com/Linux/2013-11/93019.htm

Ubuntu 12.04下源代码安装MySQL5.6以及Python-MySQLdb http://www.linuxidc.com/Linux/2013-08/89270.htm

更多Ubuntu相关信息见Ubuntu 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=2

本文永久更新链接地址http://www.linuxidc.com/Linux/2014-05/102366.htm