この文書の現在のバージョンと選択したバージョンの差分を表示します。
両方とも前のリビジョン 前のリビジョン 次のリビジョン | 前のリビジョン | ||
db:mysql:環境構築 [2019/07/15 05:24] sotoyama [インストール] |
db:mysql:環境構築 [2019/07/15 05:53] (現在) sotoyama [起動状態確認] |
||
---|---|---|---|
ライン 11: | ライン 11: | ||
</code> | </code> | ||
- | 以下のように表示されます。 | + | 以下のような感じで表示されます。 |
<code bash> | <code bash> | ||
● mysql.service - LSB: Start and stop the mysql database server daemon | ● mysql.service - LSB: Start and stop the mysql database server daemon | ||
ライン 21: | ライン 21: | ||
├─1884 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib/mys | ├─1884 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib/mys | ||
└─1885 logger -t mysqld -p daemon error | └─1885 logger -t mysqld -p daemon error | ||
- | |||
- | 7月 15 13:10:52 Moon mysqld[1885]: 190715 13:10:52 [Note] InnoDB: 128 rollback segment(s) are activ | ||
- | 7月 15 13:10:52 Moon mysqld[1885]: 190715 13:10:52 [Note] InnoDB: Waiting for purge to start | ||
- | 7月 15 13:10:52 Moon mysqld[1885]: 190715 13:10:52 [Note] InnoDB: Percona XtraDB (http://www.perco | ||
- | 7月 15 13:10:52 Moon mysqld[1885]: 190715 13:10:52 [Note] Plugin 'FEEDBACK' is disabled. | ||
- | 7月 15 13:10:52 Moon mysqld[1885]: 190715 13:10:52 [Note] Server socket created on IP: '127.0.0.1'. | ||
- | 7月 15 13:10:52 Moon mysqld[1885]: 190715 13:10:52 [Note] /usr/sbin/mysqld: ready for connections. | ||
- | 7月 15 13:10:52 Moon mysqld[1885]: Version: '10.0.38-MariaDB-0ubuntu0.16.04.1' socket: '/var/run/m | ||
- | 7月 15 13:10:53 Moon mysql[1692]: ...done. | ||
- | 7月 15 13:10:53 Moon systemd[1]: Started LSB: Start and stop the mysql database server daemon. | ||
- | 7月 15 13:10:53 Moon /etc/mysql/debian-start[1976]: Upgrading MySQL tables if necessary. | ||
</code> | </code> | ||
ライン 69: | ライン 58: | ||
bind-address = 127.0.0.1 | bind-address = 127.0.0.1 | ||
</file> | </file> | ||
+ | |||
+ | ポートを開放します。 | ||
+ | <code bash> | ||
+ | sudo firewall-cmd --add-service=mysql --permanent | ||
+ | sudo firewall-cmd --reload | ||
+ | </code> | ||
mysqlを再起動します。 | mysqlを再起動します。 | ||
ライン 74: | ライン 69: | ||
sudo systemctl restart mysql | sudo systemctl restart mysql | ||
</code> | </code> | ||
+ | |||
+ | ==== クライアントツール ==== | ||
+ | MySQLから[[https://dev.mysql.com/downloads/workbench/|MySQL Workbench]]というフリーのツールが出ています。\\ | ||
+ | CSEを使用したい場合は、Old Password対応をしないと繋げることができません。 | ||
+ |