MySQLのインストールから文字コードの変更、初期設定
MySQLのインストールから文字コードの変更、初期設定
自分のメモ用です。
目次
1,前提条件
2,インストール
3,文字コードの設定
4,起動
5,確認
1,前提条件
OS : CentOS7.5
DB : Mysql5.7
2,インストール
//デフォルトでmysql installを実行するとmariadbが入るため一応削除
yum remove mariadb-libs
rm -rf /var/lib/mysql/
//リポジトリ追加
yum localinstall http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm
//インストールバージョン確認
yum info mysql-community-server
//インストール
yum -y install mysql-community-server
//バージョン確認(まだ起動させません)
mysqld --version
3,文字コードの設定
vi /etc/my.cnf
(※以下を追記)
-------------------------------------------------
[mysqld]
character-set-server=utf8mb4
[client]
default-character-set=utf8mb4
-------------------------------------------------
4,起動
//起動 & 自動起動設定
systemctl enable mysqld.service
systemctl start mysqld.service
//初期パスワード確認
vi /var/log/mysqld.log
以下のような一行があり、そこにパスワードが記載されている。
[Note] A temporary password is generated for root@localhost: ********
//初期化処理
mysql_secure_installation
5,確認
//ログイン
mysql -u root -p
mysql> show variables like '%char%';
+--------------------------------------+----------------------------+
| Variable_name | Value |
+--------------------------------------+----------------------------+
| character_set_client | utf8mb4 |
| character_set_connection | utf8mb4 |
| character_set_database | utf8mb4 |
| character_set_filesystem | binary |
| character_set_results | utf8mb4 |
| character_set_server | utf8mb4 |
| character_set_system | utf8 |
| character_sets_dir | /usr/share/mysql/charsets/ |
| validate_password_special_char_count | 1 |
+--------------------------------------+----------------------------+
Author And Source
この問題について(MySQLのインストールから文字コードの変更、初期設定), 我々は、より多くの情報をここで見つけました https://qiita.com/ego/items/3f56c9f1abf7ff15ee08著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .