MySQL/MySQL接続時にWelcomeメッセージを表示しない方法
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
#navi(../)
* MySQL接続時にWelcomeメッセージを表示しない方法 [#vd35db...
mysqlコマンドを利用しMySQLサーバに接続したとき、Welcomeメ...
このメッセージを表示抑止する方法を以下に記します。
#contents
#htmlinsertpcsp(db-top.html,db-sp.html)
* Welcomeメッセージの抑止 [#o29322a2]
通常の接続の場合、Welcomeメッセージが表示されます。
# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 6
Server version: 5.1.61 Source distribution
Copyright (c) 2000, 2011, Oracle and/or its affiliates. ...
Oracle is a registered trademark of Oracle Corporation a...
affiliates. Other names may be trademarks of their respe...
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the cu...
mysql>
mysqlコマンドに-sオプションを追加することにより、Welcome...
$ mysql --help
<snip>
-s, --silent Be more silent. Print results with a...
each row on new line.
<snip>
以下、-sオプションを追加した場合の実行結果です。~
Welcomeメッセージが表示されず、mysqlプロンプトがすぐに表...
# mysql -u root -p -s
Enter password:
mysql>
尚、-sオプションにより以下のようなメッセージも表示されな...
Query OK, 0 rows affected (0.00 sec)
終了行:
#navi(../)
* MySQL接続時にWelcomeメッセージを表示しない方法 [#vd35db...
mysqlコマンドを利用しMySQLサーバに接続したとき、Welcomeメ...
このメッセージを表示抑止する方法を以下に記します。
#contents
#htmlinsertpcsp(db-top.html,db-sp.html)
* Welcomeメッセージの抑止 [#o29322a2]
通常の接続の場合、Welcomeメッセージが表示されます。
# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 6
Server version: 5.1.61 Source distribution
Copyright (c) 2000, 2011, Oracle and/or its affiliates. ...
Oracle is a registered trademark of Oracle Corporation a...
affiliates. Other names may be trademarks of their respe...
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the cu...
mysql>
mysqlコマンドに-sオプションを追加することにより、Welcome...
$ mysql --help
<snip>
-s, --silent Be more silent. Print results with a...
each row on new line.
<snip>
以下、-sオプションを追加した場合の実行結果です。~
Welcomeメッセージが表示されず、mysqlプロンプトがすぐに表...
# mysql -u root -p -s
Enter password:
mysql>
尚、-sオプションにより以下のようなメッセージも表示されな...
Query OK, 0 rows affected (0.00 sec)
ページ名: