七牛evm云主机安装配置以及删除mysql

taoyao发表于:2016年07月01日 11:56:42

1,首先查看mysql是否已经安装了

root@ts-play:~# sudo netstat -tap | grep mysqlsudo: unable to resolve host ts-play
tcp        0      0 localhost:mysql         *:*                     LISTEN      18496/mysqld    
tcp        0      0 localhost:mysql         localhost:38702         TIME_WAIT   -               
tcp        0      0 localhost:mysql         localhost:38703         TIME_WAIT   -               
tcp        0      0 localhost:mysql         localhost:38701         TIME_WAIT   -

2,删除mysql重新安装

删除mysql前 先删除一下 /var/lib/mysql 还有 /etc/mysql
sudo rm /var/lib/mysql/ -Rsudo rm /etc/mysql/ -Rsudo apt-get autoremove mysql* --purge
sudo apt-get remove apparmor
sudo apt-get install mysql-server mysql-common

3,登录mysql

root@ts-play:~# mysql -u root -p Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 61Server version: 5.5.49-0ubuntu0.14.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 respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

4,配置mysql

特别注意结尾要加分号

1、show databases; //列出数据库 2、use database_name //使用database_name数据库 3、create database data_name //创建名为data_name的数据库 4、drop database data_name //删除一个名为data_name的数据库