您当前的位置: 首页 > 慢生活 > 程序人生 网站首页程序人生
webman-配置數據庫-pdo_pgsql擴展安裝(php7.3.4)
发布时间:2022-01-31 22:32:33编辑:雪饮阅读()
上篇安裝了php7.3.4的pgsql擴展,但是webman中使用postgresql貌似並不是使用的pgsql這個擴展而是使用的laravel框架中的illuminate數據庫orm軟件包,而illuminate中postgresql使用的擴展貌似是pdo_pgsql擴展。
那麽接下來咱們就來安裝php7.3.4的pdo_pgsql擴展。
當前路徑:
[root@localhost pdo_pgsql]# pwd
/root/php-7.3.4/ext/pdo_pgsql
編譯pdo_pgsql.so
[root@localhost pdo_pgsql]# /usr/local/php734/bin/phpize
Configuring for:
PHP Api Version: 20180731
Zend Module Api No: 20180731
Zend Extension Api No: 320180731
[root@localhost pdo_pgsql]# ./configure --with-php-config=/usr/local/php734/bin/php-config
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for a sed that does not truncate output... /usr/bin/sed
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for PHP prefix... /usr/local/php734
checking for PHP includes... -I/usr/local/php734/include/php -I/usr/local/php734/include/php/main -I/usr/local/php734/include/php/TSRM -I/usr/local/php734/include/php/Zend -I/usr/local/php734/include/php/ext -I/usr/local/php734/include/php/ext/date/lib
checking for PHP extension directory... /usr/local/php734/lib/php/extensions/no-debug-non-zts-20180731
checking for PHP installed headers prefix... /usr/local/php734/include/php
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... re2c
checking for re2c version... 0.14.3 (ok)
checking for gawk... gawk
checking for PostgreSQL support for PDO... yes, shared
checking for pg_config... /usr/bin/pg_config
checking for openssl dependencies... no
checking for PQprepare in -lpq... yes
checking for PQexecParams in -lpq... yes
checking for PQescapeStringConn in -lpq... yes
checking for PQescapeByteaConn in -lpq... yes
checking for PDO includes... checking for PDO includes... /usr/local/php734/include/php/ext
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking the maximum length of command line arguments... 1572864
checking command to parse /usr/bin/nm -B output from cc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if cc supports -fno-rtti -fno-exceptions... no
checking for cc option to produce PIC... -fPIC
checking if cc PIC flag -fPIC works... yes
checking if cc static flag -static works... no
checking if cc supports -c -o file.o... yes
checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
creating libtool
appending configuration tag "CXX" to libtool
configure: creating ./config.status
config.status: creating config.h
[root@localhost pdo_pgsql]# make && make install
/bin/sh /root/php-7.3.4/ext/pdo_pgsql/libtool --mode=compile cc -I/usr/local/php734/include/php/ext -I. -I/root/php-7.3.4/ext/pdo_pgsql -DPHP_ATOM_INC -I/root/php-7.3.4/ext/pdo_pgsql/include -I/root/php-7.3.4/ext/pdo_pgsql/main -I/root/php-7.3.4/ext/pdo_pgsql -I/usr/local/php734/include/php -I/usr/local/php734/include/php/main -I/usr/local/php734/include/php/TSRM -I/usr/local/php734/include/php/Zend -I/usr/local/php734/include/php/ext -I/usr/local/php734/include/php/ext/date/lib -DHAVE_CONFIG_H -g -O2 -c /root/php-7.3.4/ext/pdo_pgsql/pdo_pgsql.c -o pdo_pgsql.lo
mkdir .libs
cc -I/usr/local/php734/include/php/ext -I. -I/root/php-7.3.4/ext/pdo_pgsql -DPHP_ATOM_INC -I/root/php-7.3.4/ext/pdo_pgsql/include -I/root/php-7.3.4/ext/pdo_pgsql/main -I/root/php-7.3.4/ext/pdo_pgsql -I/usr/local/php734/include/php -I/usr/local/php734/include/php/main -I/usr/local/php734/include/php/TSRM -I/usr/local/php734/include/php/Zend -I/usr/local/php734/include/php/ext -I/usr/local/php734/include/php/ext/date/lib -DHAVE_CONFIG_H -g -O2 -c /root/php-7.3.4/ext/pdo_pgsql/pdo_pgsql.c -fPIC -DPIC -o .libs/pdo_pgsql.o
/bin/sh /root/php-7.3.4/ext/pdo_pgsql/libtool --mode=compile cc -I/usr/local/php734/include/php/ext -I. -I/root/php-7.3.4/ext/pdo_pgsql -DPHP_ATOM_INC -I/root/php-7.3.4/ext/pdo_pgsql/include -I/root/php-7.3.4/ext/pdo_pgsql/main -I/root/php-7.3.4/ext/pdo_pgsql -I/usr/local/php734/include/php -I/usr/local/php734/include/php/main -I/usr/local/php734/include/php/TSRM -I/usr/local/php734/include/php/Zend -I/usr/local/php734/include/php/ext -I/usr/local/php734/include/php/ext/date/lib -DHAVE_CONFIG_H -g -O2 -c /root/php-7.3.4/ext/pdo_pgsql/pgsql_driver.c -o pgsql_driver.lo
cc -I/usr/local/php734/include/php/ext -I. -I/root/php-7.3.4/ext/pdo_pgsql -DPHP_ATOM_INC -I/root/php-7.3.4/ext/pdo_pgsql/include -I/root/php-7.3.4/ext/pdo_pgsql/main -I/root/php-7.3.4/ext/pdo_pgsql -I/usr/local/php734/include/php -I/usr/local/php734/include/php/main -I/usr/local/php734/include/php/TSRM -I/usr/local/php734/include/php/Zend -I/usr/local/php734/include/php/ext -I/usr/local/php734/include/php/ext/date/lib -DHAVE_CONFIG_H -g -O2 -c /root/php-7.3.4/ext/pdo_pgsql/pgsql_driver.c -fPIC -DPIC -o .libs/pgsql_driver.o
/bin/sh /root/php-7.3.4/ext/pdo_pgsql/libtool --mode=compile cc -I/usr/local/php734/include/php/ext -I. -I/root/php-7.3.4/ext/pdo_pgsql -DPHP_ATOM_INC -I/root/php-7.3.4/ext/pdo_pgsql/include -I/root/php-7.3.4/ext/pdo_pgsql/main -I/root/php-7.3.4/ext/pdo_pgsql -I/usr/local/php734/include/php -I/usr/local/php734/include/php/main -I/usr/local/php734/include/php/TSRM -I/usr/local/php734/include/php/Zend -I/usr/local/php734/include/php/ext -I/usr/local/php734/include/php/ext/date/lib -DHAVE_CONFIG_H -g -O2 -c /root/php-7.3.4/ext/pdo_pgsql/pgsql_statement.c -o pgsql_statement.lo
cc -I/usr/local/php734/include/php/ext -I. -I/root/php-7.3.4/ext/pdo_pgsql -DPHP_ATOM_INC -I/root/php-7.3.4/ext/pdo_pgsql/include -I/root/php-7.3.4/ext/pdo_pgsql/main -I/root/php-7.3.4/ext/pdo_pgsql -I/usr/local/php734/include/php -I/usr/local/php734/include/php/main -I/usr/local/php734/include/php/TSRM -I/usr/local/php734/include/php/Zend -I/usr/local/php734/include/php/ext -I/usr/local/php734/include/php/ext/date/lib -DHAVE_CONFIG_H -g -O2 -c /root/php-7.3.4/ext/pdo_pgsql/pgsql_statement.c -fPIC -DPIC -o .libs/pgsql_statement.o
/bin/sh /root/php-7.3.4/ext/pdo_pgsql/libtool --mode=link cc -DPHP_ATOM_INC -I/root/php-7.3.4/ext/pdo_pgsql/include -I/root/php-7.3.4/ext/pdo_pgsql/main -I/root/php-7.3.4/ext/pdo_pgsql -I/usr/local/php734/include/php -I/usr/local/php734/include/php/main -I/usr/local/php734/include/php/TSRM -I/usr/local/php734/include/php/Zend -I/usr/local/php734/include/php/ext -I/usr/local/php734/include/php/ext/date/lib -DHAVE_CONFIG_H -g -O2 -o pdo_pgsql.la -export-dynamic -avoid-version -prefer-pic -module -rpath /root/php-7.3.4/ext/pdo_pgsql/modules pdo_pgsql.lo pgsql_driver.lo pgsql_statement.lo -Wl,-rpath,/usr/lib64 -L/usr/lib64 -lpq
cc -shared .libs/pdo_pgsql.o .libs/pgsql_driver.o .libs/pgsql_statement.o -L/usr/lib64 -lpq -Wl,-rpath -Wl,/usr/lib64 -Wl,-soname -Wl,pdo_pgsql.so -o .libs/pdo_pgsql.so
creating pdo_pgsql.la
(cd .libs && rm -f pdo_pgsql.la && ln -s ../pdo_pgsql.la pdo_pgsql.la)
/bin/sh /root/php-7.3.4/ext/pdo_pgsql/libtool --mode=install cp ./pdo_pgsql.la /root/php-7.3.4/ext/pdo_pgsql/modules
cp ./.libs/pdo_pgsql.so /root/php-7.3.4/ext/pdo_pgsql/modules/pdo_pgsql.so
cp ./.libs/pdo_pgsql.lai /root/php-7.3.4/ext/pdo_pgsql/modules/pdo_pgsql.la
PATH="$PATH:/sbin" ldconfig -n /root/php-7.3.4/ext/pdo_pgsql/modules
----------------------------------------------------------------------
Libraries have been installed in:
/root/php-7.3.4/ext/pdo_pgsql/modules
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
Build complete.
Don't forget to run 'make test'.
Installing shared extensions: /usr/local/php734/lib/php/extensions/no-debug-non-zts-20180731/
根據提示,將pdo_pgsql.so加入到php.ini中
[root@localhost pdo_pgsql]# cat /usr/local/php734/lib/php.ini | grep -i /usr/local/php734/lib/php/extensions/no-debug-non-zts-20180731/pdo_pgsql.so
extension=/usr/local/php734/lib/php/extensions/no-debug-non-zts-20180731/pdo_pgsql.so
关键字词:webman,配置,數據庫,pdo_pgsql,擴展,安裝,php7.3.4