LoginSignup
0
0

More than 3 years have passed since last update.

[MEMO][開発環境構築] Mysql

Last updated at Posted at 2020-02-01

はじめに

開発環境

Linux

この記事について

環境構築やエラー解決のHowToが中心のメモです。

mysql8.0x

https://dev.mysql.com/downloads/repo/apt/
最新のレポジトリをダウンロードする

sudo apt update
sudo apt install mysql-server
mysql -V

mysql設定

/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
loose-local-infile=1
[client]
loose-local-infile=1

mysql-workbench設定

/usr/share/mysql-workbench/code_editor.xml

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