共计 1068 个字符,预计需要花费 3 分钟才能阅读完成。
一、安装
apt-get install MySQL-server 需要设置账号密码
apt-get isntall mysql-client
apt-get libmysqlclient-dev
2.sudo netstat -tap | grep mysql 查看是否安装成功
root@xyz:~# netstat -tap | grep mysql
tcp6 0 0 [::]:mysql [::]:* LISTEN 7510/mysqld –> 安装成功
二、设置 mysql 远程访问
1. 编辑 mysql 配置文件,把其中 bind-address = 127.0.0.1 注释了
vi /etc/mysql/mysql.conf.d/mysqld.cnf
2. 使用 root 进入 mysql 命令行,执行如下 2 个命令,示例中 mysql 的 root 账号密码:root
grant all on *.* to root@’%’ identified by ‘root’ with grant option;
flush privileges;
3. 重启 mysql
/etc/init.d/mysql restart
三、MySQL 修改 root 密码的多种方法
方法 1:用 SET PASSWORD 命令
mysql -u root
mysql> SET PASSWORD FOR ‘root’@’localhost’ = PASSWORD(‘newpass’);
方法 2:用 mysqladmin
mysqladmin -u root password “newpass”
如果 root 已经设置过密码,采用如下方法
mysqladmin -u root password oldpass “newpass”
方法 3:用 UPDATE 直接编辑 user 表
mysql -u root
mysql> use mysql;
mysql> UPDATE user SET Password = PASSWORD(‘newpass’) WHERE user = ‘root’;
mysql> FLUSH PRIVILEGES;
在丢失 root 密码的时候,可以这样
mysqld_safe –skip-grant-tables&
mysql -u root mysql
mysql> UPDATE user SET password=PASSWORD(“new password”) WHERE user=’root’;
mysql> FLUSH PRIVILEGES;
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-07/145938.htm