なんか文字化けしている・・・そんなときは
UTF8設定を入れてあげる
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# vim /etc/mysql/mysql.conf.d/mysqld.cnf [mysqld] pid-file = /var/run/mysqld/mysqld.pid socket = /var/run/mysqld/mysqld.sock datadir = /var/lib/mysql #log-error = /var/log/mysql/error.log # By default we only accept connections from localhost #bind-address = 127.0.0.1 # Disabling symbolic-links is recommended to prevent assorted security risks symbolic-links=0 character-set-server=utf8 collation-server=utf8_general_ci [client] default-character-set=utf8 |
DockerはDebian系ベースなのかな?
vimなどパッケージをインストールするとき
1 2 |
apt-get -y update apt-get -y install vim |
1 Comment
1 Record
たに wrote:
MySQLの文字コードは、root権限はいって、以下のコマンドで確認します。
show variables like “character%”;
あるあるなのは、上記コマンドの出力結果のうち、「laten1」というものが設定されている(ASCIIのことですが)と、文字化けするので、utf8の設定を入れてあげます。