標籤:bsp unit its 美團 monit rac centos wget com
自從某次在美團雲把1G 1核的 centos 7 裝到死機,我就斷了源碼編譯安裝mysql的心思。
本次實踐曆程如下
wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpmrpm -ivh mysql-community-release-el7-5.noarch.rpmyum install mysql-community-server
service mysqld restartmysql -u rootmysql> set password for ‘root‘@‘localhost‘ =password(‘vm_52.102‘);
[[email protected] liuhui]# service mysqld restartRedirecting to /bin/systemctl restart mysqld.service[[email protected] liuhui]# mysql -u rootWelcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 2Server version: 5.6.34 MySQL Community Server (GPL)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.mysql> set password for ‘root‘@‘localhost‘ =password(‘password‘);Query OK, 0 rows affected (0.00 sec)
Centos 7 mysql 安裝記