ubuntu 安装 mysql

来源:互联网 发布:云计算平台特点 编辑:程序博客网 时间:2024/06/05 00:49

1   打开命令行  需要管理员,第一步下载安装完了需要设置用户名密码不要忘记了
  #sudo apt-get install mysql-server
 
  #sudo apt-get install mysql-client
 

  #sudo apt-get install libmysqlclient-dev


2  检查是否安装成功   

sudo netstat -tap | grep mysql

如果显示为LISTEN就已经成功安装

 sudo netstat -tap|grep mysql
tcp        0      0 localhost:mysql         *:*                     LISTEN      21707/mysqld   


3 登录mysql  -u 后面输入用户名   -p 后面输入密码

mysql -u root -p

root@lcy:/home/lcy/downloads# mysql -u root -pEnter password: Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 5Server version: 5.7.17-0ubuntu0.16.04.1 (Ubuntu)Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.


0 0
原创粉丝点击