タグアーカイブ: MySQL
Nagios監視項目追加設定
VPSのCentOS7にインストールしたNagios(過去記事:「NagiosをYUMでインストール」)に監視項目の追加及びダウンタイムスケジューリング設定要領の備忘録です。 ◆追加監視項目 下記の6項目を追加し設定しま Continue Reading
WordPress及びphpMyAdminにアクセスできないエラー
PHP5.6のインストールを無事に終えて、WordPressにアクセスし当ブログが表示されるか確認したところエラーメッセージ「お使いのサーバーの PHP では WordPress に必要な MySQL 拡張を利用できない Continue Reading
PHP5.6をソースからインストール
1 2 3 4 | # cd /usr/src # wget http://jp2.php.net/get/php-5.6.14.tar.gz/from/this/mirror # tar xvzf php-5.6.14.tar.gz # cd php-5.6.14 |
1 | # ./configure --enable-mbstring --with-pgsql=/usr/local/pgsql/ --with-apxs2=/usr/sbin/apxs --with-gd --with-jpeg-dir=/usr/lib/ --with-zlib --with-mysql --with-mysqli --with-pdo-mysql --with-freetype-dir=/usr/include/freetype2/ --enable-gd-native-ttf --enable-gd-jis-conv --enable-zip --with-libdir=/usr/lib64 |
しかし、色々足りないものがあってエラーになる。 足りないパッケージの追加とMakefil Continue Reading
PHP5.6へのアップデートに伴うMySQLアクセス不能の概要
概要 phpMyAdmin4.5.0.2へのアップデートでPHP5.5以降が必要でアクセスできないため、PHPのアップデートを実施 PHP5.4.33 ⇒ PHP5.6.14 PHPパッケージの確認と削除 remiリポジ Continue Reading