LinuxはMariaDB(Mysql)と簡単な構成をインストールします
1210 ワード
MariaDBのインストールインストールコマンド インストール完了MariaDB、まずMariaDB を起動する.起動 を設定する. MariaDBに関する簡易構成 まずパスワードを設定すると、まずパスワード を入力するように要求されます.パスワード設定 その他の構成 初期化MariaDB完了、テスト登録 が完了しました.
ユーザーの追加、権限の設定ユーザコマンド を作成する.ユーザーを直接作成し、許可するコマンド 外網登録権限 を付与する.権限を付与し、 権限を付与することができる.更新権限
yum -y install mariadb mariadb-server
systemctl start mariadb
systemctl enable mariadb
mysql_secure_installation
Enter current password for root (enter for none):
Set root password? [Y/n]
Remove anonymous users? [Y/n]
mysql -uroot -ppassword
ユーザーの追加、権限の設定
mysql>create user username@localhost identified by 'password';
mysql>grant all on *.* to username@localhost indentified by 'password';
mysql>grant all privileges on *.* to username@'%' identified by 'password';
mysql>grant all privileges on *.* to username@'hostname' identified by 'password' with grant option;
flush privileges;