php7 編譯安裝,添加擴展 /usr/local/php/bin/phpize 發現沒有 configurephp
解決辦法mysql
# sudo yum install automakesql
mysql 地址php7
[jun@localhost yilinker-online]$ ps -ef|grep mysql root 1693 1 0 11:25 ? 00:00:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --socket=/var/lib/mysql/mysql.sock --pid-file=/var/run/mysqld/mysqld.pid --basedir=/usr --user=mysql mysql 2264 1693 0 11:25 ? 00:00:08 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64/mysql/plugin --user=mysql --log-error=/var/log/mysqld.log --pid-file=/var/runmysqld/mysqld.pid --socket=/var/lib/mysql/mysql.sock jun 74754 10255 0 16:07 pts/2 00:00:00 grep --color=auto mysql
php-config 地址socket
[jun@localhost yilinker-online]$ sudo find / -name php-config [sudo] password for jun: find: ‘/run/user/1000/gvfs’: 權限不夠 /usr/local/php/bin/php-config /data/www/php-7.0.13/scripts/php-config /data/www/php/bin/php-config
查看而後使用配置ui
# ./configure --help.net
[root@localhost pdo_mysql]# pwd
/data/www/php-7.0.13/ext/pdo_mysql
[root@localhost pdo_mysql]# cd /data/www/php-7.0.13/ext/pdo_mysql/debug
[root@localhost pdo_mysql]# ./configure --with-php-config=/usr/local/php/bin/php-config --with-pdo-mysql=/usrcode
with-php-config php 的配置目錄ip
with-pdo-mysql mysql 的安裝目錄
[root@localhost pdo_mysql]# make && make install /bin/sh /data/www/php-7.0.13/ext/pdo_mysql/libtool --mode=install cp ./pdo_mysql.la /data/www/php-7.0.13/ext/pdo_mysql/modules cp ./.libs/pdo_mysql.so /data/www/php-7.0.13/ext/pdo_mysql/modules/pdo_mysql.so cp ./.libs/pdo_mysql.lai /data/www/php-7.0.13/ext/pdo_mysql/modules/pdo_mysql.la cp ./.libs/pdo_mysql.a /data/www/php-7.0.13/ext/pdo_mysql/modules/pdo_mysql.a chmod 644 /data/www/php-7.0.13/ext/pdo_mysql/modules/pdo_mysql.a ranlib /data/www/php-7.0.13/ext/pdo_mysql/modules/pdo_mysql.a libtool: install: warning: remember to run `libtool --finish /data/www/php-7.0.13/modules' Build complete. Don't forget to run 'make test'. Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20151012/ [root@localhost pdo_mysql]#