0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Cloud9 MySQLの文字化け対応

Last updated at Posted at 2020-12-18

Cloud9にはデフォでMySQLがインストールされていますが日本語未対応で文字化けしてしまうのでUTF-8に対応できるように設定します。

###1.new terminalからターミナルに以下のviコマンド(ファイルを開くLinuxコマンド)で展開

sudo vi /etc/my.cnf

続いてキーボードのiキー(Linuxコマンド)を押下しターミナルを編集可能にする

###2.[mysqld] セクションに挿入
挿入場所は[mysqld][mysqld_safe]の間

character-set-server=utf8
[client]
default-character-set=utf8

###3.編集完了
Escキーで編集モードを終了し、q:(Linuxコマンドの強制終了)を入力してEnterキー

これでMySqlはUTF-8に対応しているはずなので実際に開いて確認してみましょう。
確認方法はこちら

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?