centos7 mysql環境配置

2022-08-01 16:51:11 字數 3972 閱讀 5253

用命令 yum -y remove

yum -y remove mysql-community-client-5.6.38-2.el7.x86_64

解除安裝不掉的用 rpm -ev 

依次解除安裝 直到沒有

(也可以指定安裝目錄     yum --installroot=/usr/local/mysql --releasever=/ -y install mysql-server  )我沒試,這樣裝環境變數配置都不用你管,裝上直接啟動就行。安裝路徑是預設的。

一路 y 

根據步驟安裝就可以了,

預設配置檔案路徑: 

配置檔案:/etc/my.cnf 

日誌檔案:/var/log/var/log/mysqld.log 

服務啟動指令碼:/usr/lib/systemd/system/mysqld.service 

socket檔案:/var/run/mysqld/mysqld.pid

配置  my.cnf        vim /etc/my.cnf

[mysqld]

## remove leading # and

set to the amount of ram for

the most important data

# cache

in mysql. start at 70% of total ram for dedicated server, else

10%.

# innodb_buffer_pool_size =128m

## remove leading # to turn on a very important data integrity option: logging

# changes to the binary log between backups.

# log_bin

## remove leading # to

set options mainly useful for

reporting servers.

# the server defaults are faster

fortransactions and fast selects.

# adjust sizes

asneeded, experiment to find the optimal values.

# join_buffer_size =128m

# sort_buffer_size =2m

# read_rnd_buffer_size =2m

datadir=/var/lib/mysql

socket=/var/lib/mysql/mysql.sock

server_id = 1

expire_logs_days = 3

# disabling symbolic-links is

recommended to prevent assorted security risks

symbolic-links=0

log-error=/var/log/mysqld.log

啟動:service mysqld start

重啟:service mysqld restart

檢視臨時密碼

可以看到  輸入 mysql -u root -p   密碼 進入      第一次登陸 ,需要重置密碼 要不什麼也不能操作 

接下來重置密碼:5.7.20 為了安全密碼           必須包含 數字字母符號

踩過的坑啊,設定了好幾次。還有這ip不能是% 不知道為什麼  反正第一次設定成%沒成功  登上去之後再改就可以改了。

把密碼改簡單的方法

最後記得重新整理許可權;

flush privileges 

也可以 直接再新增新使用者     

create user 『root『@『%『 identified by 『您的密碼『;

grant all privileges on *.* to 'root'@'192.168.0.1' identified by '123456';

如圖:

當然,如果想給所有ip都賦予許可權,則這樣:

grant all privileges on *.* to 'root'@'%' identified by '123456';

3.使授權立即生效

flush privileges;
1.如果發現找不到密碼!!!!!

解決:只能通過忘記密碼的方式修改密碼!!! 在安裝的過程中發現找不到密碼???折騰了好長時間 通過修改密碼找回之後發現、原來之前安裝的資料庫在了,就沒有生產新的資料庫!!用的還是之前的配置。

2.看mysql啟動了沒?初始化資料庫了沒?  一般直接啟動 資料庫 就可以 用grep "password" /var/log/mysqld.log    看到隨機密碼了

解決:修改mysql的登入設定:

#vi /etc/my.cnf

重新啟動mysqld

重新啟動mysqld

#/etc/init.d/mysqld restart ( service mysqld restart )

use mysql 

update user set password=password("12345") where user="root";

mysql 5.7的資料庫沒有了password欄位 用的是authentication_string欄位

mysql> update mysql.user set authentication_string=password('root') where user='root' ;

flush privileges;

修改密碼之後在改回來

CentOS7 mysql離線安裝

第一 刪除mariadb 第三 強制安裝6個rpm檔案 rpm ivh mysql community rpm nodeps force 第四 檢視mysql初始密碼和登入mysql root localhost download grep password var log mysqld.log 2...

CentOS 7 MySQL 常用操作

命令列登入 opt lampp bin mysql uroot p mnt mysql bin mysql uroot p 啟動服務 opt lampp lampp startmysql service mysql start 檢視程序 ps aux grep mysql 配置檔案 opt lamp...

Centos7 Mysql修改密碼

mysql u root p 為什麼需要設定,因為不設定直接修改密碼會報 error 1819 hy000 your password does not satisfy the current policy requirements錯誤 為了解決1819錯誤,所以需要設定兩個全域性屬性 第乙個 驗證...