ubuntu14.04安装MySQL
程序员文章站
2022-03-27 19:17:55
...
今天开始安装MySQL,本来是去官网下载安装包来安装的,可是安装之后却不能用,估计是要配置吧,在网上搜了很多的资料,结果还是失败。所以只好在软件源中安装,这样就省去很多不必要的麻烦了。 zhiniaobu@telunsu-K55VD:~$ sudo apt-get install mysql-server
今天开始安装MySQL,本来是去官网下载安装包来安装的,可是安装之后却不能用,估计是要配置吧,在网上搜了很多的资料,结果还是失败。所以只好在软件源中安装,这样就省去很多不必要的麻烦了。zhiniaobu@telunsu-K55VD:~$ sudo apt-get install mysql-server [sudo] password for zhiniaobu:
执行该命令后,系统还会自动安装其它的一些软件,在安装过程中会提示输入mysql的登入密码。
如果系统版本不一样,提示的方式可能不一样,不过总体来说都差不多。安装好后,执行命令
zhiniaobu@telunsu-K55VD:~$ mysql ERROR 1045 (28000): Access denied for user 'zhiniaobu'@'localhost' (using password: NO) zhiniaobu@telunsu-K55VD:~$结果出现错误,谷歌了半天,结果越来越没耐心,这时候翻了翻自己买的书籍,输入了下面的命令
zhiniaobu@telunsu-K55VD:~$ mysql -uroot -pmysql其中第一个mysql是命令,-uroot是指定用户为root,-pmysql是输入登入密码,第二个mysql是密码,如果你设置的密码是别的,就换成自己安装时设置的密码,切记密码和-p之间不要有空格,不然会失败的。下面是我成功登入后,查看当前所有存在的数据库。
zhiniaobu@telunsu-K55VD:~$ mysql -uroot -pmysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 61 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> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | +--------------------+ 3 rows in set (0.00 sec) mysql>
上一篇: 男女妙段,难道说的就是你?
推荐阅读
-
理解MySQL——索引与优化总结
-
TopSolid2018怎么破解?Missler TopSolid 2018破解安装图文详细教程
-
iZotope Ozone 8高级版(臭氧8母带)注册破解安装教程(附破解补丁下载)
-
Vocaloid4 Editor怎么安装? Vocaloid4 Editor安装与激活图文详细教程(包括反激活)
-
Mysql在debian系统中不能插入和显示中文的解决方法
-
MYSQL自动备份策略的选择与优劣点分析
-
安装MSDE2000提示“为了安全起见要求使用强 SA 密码
-
无法找到产品Microsoft SQL Server Native Client的安装程序包的解决方法Sqlncli.msi
-
mysql执行时间为负数的原因分析
-
MySQL数据库创建、修改和删除表操作实例介绍