虚拟机安装mysql日志

因项目开发需要安装mysql数据库,之前博主也安装过mysql但是只在windows下,这次我尝试在linux虚拟机上安装,现在将安装步骤整理发布,希望可以帮助到其他人。
1.安装rz命令,博主是新装的虚拟机很多命令都没有,因为要上传文件所以首先要安装rz命令 yum install lrzsz -y
2.上传mysql压缩包mysql-5.7.13-1.el6.x86_64.rpm-bundle.tar,如果没有rpm文件也可以直接在linux上通过wget http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.12-1.el6.x86_64.rpm-bundle.tar命令下载(这种方式需要首先安装wget命令 yum install wget -y)
3.解压压缩包到指定目录下# tar -xvf mysql-5.7.13-1.el6.x86_64.rpm-bundle.tar
虚拟机安装mysql日志_第1张图片
4.安装rpm文件# yum install mysql-community-{server,client,common,libs}-*
虚拟机安装mysql日志_第2张图片
5.安装完毕,启动mysql:# service mysqld start
这里写图片描述
6.mysql默认登录名为root地址localhost,启动后可以通过# grep ‘temporary password’ /var/log/mysqld.log命令查询临时密码
这里写图片描述
7.登陆mysql;

[root@localhost mysql]# mysql -uroot -p
Enter password: (这里输入上面查出来的临时密码)
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.13

Copyright (c) 2000, 2016, 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>

8.修改密码并退出:因为mysql要求密码要包含至少一个大写字母,一个小写字母,一个数字,一个特殊字符,总数至少是8位所以我们设定密码为Passwd0

mysql> alter user root@localhost identified by 'Passwd0';
Query OK, 0 rows affected (0.00 sec)
mysal>exit
Bye
[root@localhost mysql]#

9.查看服务
这里写图片描述
至此mysql安装成功!

你可能感兴趣的:(VMware,mysql,数据库,虚拟机)