2018年12月27日木曜日

Centos7 mariDB インストールと設定

CentOS7にMariDBをインストールと設定

本当に書きたいことは、一番したなんだけどメモとして、、、

# yum install mariadb mariadb-server
#  vi /etc/my.cnf
    character-set-server=utf8
追加する

# systemctl enable mariadb.service
# systemctl start mariadb.service
# mysql_secure_installation

rootのパスワード入力以外はすべて、enter のみ

で、ここが問題で、

# [root@xxxxxxx~]]# mysql -u root -p
Enter password:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

それで、パスワードをコマンドラインで続けて入力するとOKという落ち(笑)

[root@xxxxxxx~]# mysql -u root -pPASSWORD
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 12
Server version: 5.5.60-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]>

Peace!!

0 件のコメント:

コメントを投稿