7
10

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 5 years have passed since last update.

teeコマンドでMySQLの操作を記録する

Last updated at Posted at 2016-12-19

チームでWEBアプリケーションを開発する場合、どうしてもMySQLを直接操作しなければならない場合があります。
チームに若手がいたりすると、操作時のエラーメッセージを記録せずに先輩社員に質問したりする場合もあり、トラブルシューティングが困難になるケースもあります。
そんなときにMySQLのteeコマンドを使うと、実行時の出力をファイルにも書き出してくれるので便利です。

実行例

-- user_console.logファイルに操作を記録開始
mysql> tee /tmp/user_console.log
Logging to file '/tmp/user_console.log'
-- 何かのコマンドを実行する
mysql> use db
Database changed
mysql> show tables;
+----------------------------------------------+
| Tables_in_db                                 |
+----------------------------------------------+
| test_db                                      |
+----------------------------------------------+
1 rows in set (0.01 sec)

-- ファイルへの出力を終了
mysql> notee
Outfile disabled.
mysql> quit
Bye

少ない手順で操作ログを記録できるので、チームで徹底するのも良いと思います。

7
10
1

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
7
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?