码迷,mamicode.com
首页 > 数据库 > 详细

ubuntu 1204 安装mysql

时间:2015-07-23 17:52:07      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:

检测本机是否有安装mysql

sudo netstat -tap | grep mysql

执行上面的命令之后,看到 mysq 的socket 处于监听状态,说明有安装成功。

安装mysql

sudo apt-get install mysql-server  mysql-client libmysqlclient-dev

安装过程中会提示输入数据库管理员密码(自己设定的),如图
技术分享
技术分享

设置完成之后等待安装完成即可。

mysql 的登陆与退出

$ mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 45
Server version: 5.5.43-0ubuntu0.12.04.1 (Ubuntu)

Copyright (c) 2000, 2015, 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> quit;
Bye

版权声明:本文为博主原创文章,未经博主允许不得转载。

ubuntu 1204 安装mysql

标签:

原文地址:http://blog.csdn.net/u011641885/article/details/47024493

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!