12.2 MySQL操作

問題: MySQL (./bin/mysql)にログインする際にエラーが発生しました:

エラー・メッセージ:
  • error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory
  • error while loading shared libraries: libncurses.so.5: cannot open shared object file: No such file or directory
トラブルシューティング・オプション
  • 欠落しているライブラリのシンボリックリンクを作成します(libtinfo.so.6およびlibncurses.so.6がOSに存在する場合):

    コマンド

    ln -s /usr/lib64/libncurses.so.6 /usr/lib64/libncurses.so.5
    ln -s /usr/lib64/libtinfo.so.6 /usr/lib64/libtinfo.so.5
  • 次のコマンドを使用して必要なパッケージをインストールします:
    yum install ncurses-compat-libs