博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu mysql
阅读量:4840 次
发布时间:2019-06-11

本文共 802 字,大约阅读时间需要 2 分钟。

To install mysql database in the ubuntu:

    1. sudo apt-get install mysql-server

  2. apt-get isntall mysql-client

  3.  sudo apt-get install libmysqlclient-dev

in the first step it will asked you to enter the root password and you should remember it, or can not login the mysql database.

2. to make sure you have installed mysql database successfully you should enter

  "sudo netstat -tap|grep mysql " in the Terminal to make sure that

3. log in mysql use this command   "mysql -u root -p "

   -u for chose the username to log in -p for the password of the user 

4. use the command "show databases;" can show the databases in mysql database

5 use the command "use databasename" to select the database and "show tables;" show the tables in the database.

 

转载于:https://www.cnblogs.com/someoneHan/p/4614800.html

你可能感兴趣的文章
【mark】linux查看端口占用
查看>>
String的trim()用于去掉字符串前后的空格
查看>>
jquery相关代码
查看>>
USACO 2.3 Zero Sum
查看>>
android 工具类 DateUtil
查看>>
EM算法原理
查看>>
高速排序算法
查看>>
EJB究竟是什么,真的那么神奇吗??
查看>>
数据结构——集合有关
查看>>
NSCondition
查看>>
常用单词7
查看>>
html5中input的type类型有哪些(总结)
查看>>
(转)dp动态规划分类详解
查看>>
手机归属地查询
查看>>
关于运动
查看>>
GridView的RowCommand事件传两个或以上参数
查看>>
剑指Offer编程题2——替换空格
查看>>
ubuntu切换到root
查看>>
MYSQL limit用法
查看>>
Windows7下出现“不支持此接口”的解决方案
查看>>