XREAのWebサーバに設置したMovable Typeのデータベース・テーブル一覧を確認する方法
XREAのWebサーバに設置したMovable Typeのデータベース・テーブル一覧を確認する方法を以下にメモしておく。
(1)XREAの管理画面にログイン後、「管理メニュー」内の「ホスト情報登録」をクリックし、「FTP/SSH接続許可ホスト入力」画面を開く。
(2)自分のホスト情報(IPアドレス)が表示されていることを確認したら、「SSH接続」ボタンをクリックする。5分〜10分程度待つとSSHでの接続ができるようになる。
(3)PuTTY等のSSH接続クライアントを起動し、ドメイン名(例:www.nobuneko.com)を入力して接続を実行する。
(4)SSH接続に成功するとユーザ名、パスワードの入力を求められるので、XREAから発行されているユーザ名、パスワードを入力する。
<例>
bash-2.05a$ mysql -p XREAで設定しているユーザ名
Enter password:
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 6235884 to server version: 4.0.26-standard
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
(5)「show databases」でデータベース一覧を表示する。
<例>
mysql> show databases;
+----------+ | Database | +----------+ | catdb | +----------+ 1 row in set (0.00 sec)
※データベース名一覧が表示される。
上記は「catdb」というデータベースのみが存在している例。
(6)「use データベース名」で使用したいデータベースを選択する。
<例>
mysql> use catdb ※データベースとして「catdb」を使用するという意味。
Database changed
(7)「show tables」でデータベースの一覧を表示する。
<例>
mysql> show tables;※データベース「catdb」のテーブル名一覧を表示する。
+----------------------+ | Tables_in_catdb | +----------------------+ | mt_as_ua_cache | | mt_asset | | mt_asset_meta | | mt_association | | mt_author | | mt_author_meta | | mt_blog | | mt_blog_meta | | mt_category | | mt_category_meta | | mt_comment | | mt_comment_meta | | mt_config | | mt_entry | | mt_entry_meta | | mt_field | | mt_fileinfo | | mt_ipbanlist | | mt_log | | mt_notification | | mt_objectasset | | mt_objectscore | | mt_objecttag | | mt_permission | | mt_placement | | mt_plugindata | | mt_profileevent | | mt_profileevent_meta | | mt_role | | mt_session | | mt_tag | | mt_tbping | | mt_tbping_meta | | mt_template | | mt_template_meta | | mt_templatemap | | mt_touch | | mt_trackback | | mt_ts_error | | mt_ts_exitstatus | | mt_ts_funcmap | | mt_ts_job | +----------------------+ 42 rows in set (0.00 sec)