ちゃんと覚えておけよ?

忘れちゃいけない事のメモ、覚え書き

mysql5.6+phpmyadmin

mysql5.6 + phpmyadmin

yum install https://ftp.jaist.ac.jp/pub/mysql/Downloads/MySQL-5.6/MySQL-client-5.6.14-1.el6.x86_64.rpm \
              https://ftp.jaist.ac.jp/pub/mysql/Downloads/MySQL-5.6/MySQL-shared-compat-5.6.14-1.el6.x86_64.rpm \
              https://ftp.jaist.ac.jp/pub/mysql/Downloads/MySQL-5.6/MySQL-server-5.6.14-1.el6.x86_64.rpm \
              https://ftp.jaist.ac.jp/pub/mysql/Downloads/MySQL-5.6/MySQL-devel-5.6.14-1.el6.x86_64.rpm \

yum install https://ftp.jaist.ac.jp/pub/mysql/Downloads/MySQL-5.6/MySQL-shared-5.6.14-1.el6.x86_64.rpm
yum --enablerepo=epel install libmcrypt-devel

■PHP configure

./configure --prefix=/usr/local --with-apxs2=/usr/local/apache2/bin/apxs --with-libdir=lib64 --with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d --with-curl --with-curlwrappers --with-pdo-sqlite --with-gd --enable-gd-native-ttf --with-mcrypt --enable-exif --with-jpeg-dir=/usr --with-freetype-dir=/usr --enable-fileinfo --with-bz2 --with-zlib --with-mysql --with-zlib-dir=/usr --enable-zip --enable-phar  --enable-mbstring --enable-mbregex --enable-xml --with-libxml-dir=/usr --enable-dom --enable-soap --with-xsl --enable-xmlreader --enable-xmlwriter --enable-json --enable-posix --with-layout=GNU --enable-ftp --enable-sockets --enable-bcmath --disable-cgi --disable-ipv6

Comment

*