centos關於安裝mariadb的問題總結
阿新 • • 發佈:2018-11-15
最簡單的
這是基本,安裝後,預設是root使用者登入,無需密碼的,剛開始,不知道,以為是mysql配置密碼的方式,進行密碼配置,後來按照mysql的配置方式配置,完全沒有效果,依舊是免密碼登入。後來找到從網上找到答案
進行MariaDB的相關簡單配置
mysql_secure_installation
首先是設定密碼,會提示先輸入密碼
Enter current password for root (enter for none):<–初次執行直接回車
設定密碼
Set root password? [Y/n] <– 是否設定root使用者密碼,輸入y並回車或直接回車
New password: <– 設定root使用者的密碼
Re-enter new password: <– 再輸入一次你設定的密碼
其他配置
Remove anonymous users? [Y/n] <– 是否刪除匿名使用者,回車
Disallow root login remotely? [Y/n] <–是否禁止root遠端登入,回車,
Remove test database and access to it? [Y/n] <– 是否刪除test資料庫,回車
Reload privilege tables now? [Y/n] <– 是否重新載入許可權表,回車
初始化MariaDB完成,接下來測試登入
mysql -uroot -ppassword
完成。
在完成以後,我進行密碼登入mysql,可是我依舊登入不上去,原因不明,後來我改用簡單的弱密碼。結果可以登入成功。
再後來,我想使用unix_socket進行密碼登入(沒辦法,愛折騰)