k8s安装部署步骤 centos安装rpm包命令( 二 )

安装rpm包 准备好MySQL的安装文件之后,接下来就是开始安装MySQL数据库了 。在安装MySQL的rpm文件的时候,我们不使用rpm -ivh xxx.rpm这样的方式,我们使用yum install xxx.rpm这样的方式来安装 。原因是我们使用yum install xxx.rpm的方式,会很清楚地列出来我们在安装xxx.rpm这个文件的时候,有哪些依赖也需要安装上 。这样能很好的解决各个rpm包在安装的依赖问题 。
通过如下命令来安装已经下载好的rpm文件:
[root@centos-muysql-server ~]# yum install ./mysql-community-*.rpm 启动MySQL数据库 安装完成后,可以使用如下命令来查看、启动、停止MySQL数据库 。
systemctl start mysqld 除了上面的启动MySQL数据库的命令,还有如下的几个命令,你可能需要:
systemctl status mysqldsystemctl stop mysqldsystemctl restart mysqld 登录MySQL数据库 启动数据库之后,我们尝试登录MySQL数据库 。登录的时候,root用户的密码,在启动MySQL数据库的日志文件/var/log/mysqld.log文件中,通过如下命令来查看默认的密码:
[root@centos-muysql-server ~]# cat /var/log/mysqld.log | grep password2021-02-15T09:54:35.911865Z 1 [Note] A temporary password is generated for root@localhost: HbeFh*r)3lic[root@centos-muysql-server ~]# 找到密码之后,我们登录数据库:
[root@centos-muysql-server ~]# mysql -uroot -p"HbeFh*r)3lic"mysql: [Warning] Using a password on the command line interface can be insecure.Welcome to the MySQL monitor.Commands end with ; or g.Your MySQL co

推荐阅读