Because of the project, some new extensions need to be installed debian xfce 7.2 x64. The following three are all installed through apt-get. PHP 5.4.4-14deb7u5 (cli) nginx1.2.1 apache 2.2.22 1: Install through the default method (optimal). Most of the commonly used ones are in the debian warehouse and can be downloaded. Note that # represents root and can be passed through su-
Due to the project, some new extensions need to be installed
debian xfce 7.2 x64 The following three are installed through apt-get.
PHP 5.4.4-14+deb7u5 (cli)
nginx1.2.1
apache 2.2.22
1: Install through the default method (optimal). Most of the commonly used ones are in the debian warehouse and can be downloaded.
Note that # stands for root. You can enter root through su – and enter the password.
#apt-get install php5-geoip #apt-get install php-apc #apt-get install libevent-dev
2: Install through pecl (second)
#pecl install mongo #pecl install channel://pecl.php.net/libevent-0.1.0 #pecl install channel://pecl.php.net/proctitle-0.1.2 #pecl install inotify #pecl install yaf
After pecl is installed, you need to do several things. One is to add the corresponding so file to the corresponding ini, and the second is to link the ini to conf.d
For example, the above three extensions, after pecl
In debian
/usr/lib/php5/20100525/mongo.so /usr/lib/php5/20100525/libevent.so /usr/lib/php5/20100525/proctitle.so /usr/lib/php5/20100525/inotify.so /usr/lib/php5/20100525/yaf.so
php5 executes the following shell naming in /etc/php5. This is to create some configuration files. Debian’s php’s php.ini distributes the configuration files to /etc/php5/conf.d, and the contents of conf.d are From /etc/php5/mods-available/ In order to ensure the rigor of the debian package, we will make two links here instead of going directly to conf.d to create the corresponding .ini file.
#echo "extension=mongo.so" > /etc/php5/mods-available/mongo.ini #echo "extension=libevent.so" > /etc/php5/mods-available/libevent.ini #echo "extension=proctitle.so" > /etc/php5/mods-available/proctitle.ini #echo "extension=inotify.so" > /etc/php5/mods-available/inotify.ini #echo "extension=yaf.so" > /etc/php5/mods-available/yaf.ini #ln -s /etc/php5/mods-available/mongo.ini /etc/php5/conf.d/mongo.ini #ln -s /etc/php5/mods-available/libevent.ini /etc/php5/conf.d/libevent.ini #ln -s /etc/php5/mods-available/proctitle.ini /etc/php5/conf.d/proctitle.ini #ln -s /etc/php5/mods-available/inotify.ini /etc/php5/conf.d/inotify.ini #ln -s /etc/php5/mods-available/yaf.ini /etc/php5/conf.d/yaf.ini
Restart nginx’s php5-fcgi or apache and you can see that these modules have been loaded successfully.
3: Install through the extended source code (compiled installation, not recommended for Debian, provided the warehouse does not have it). The php-redis extension is installed
(Redis server needs to be installed by yourself. For the compilation environment and software, just refer to my previous article to install them, such as gcc.
#wget https://redis.googlecode.com/files/redis-2.6.14.tar.gz #tar -zxvf redis #make
)
#tar -zxvf nicolasff-phpredis-2.1.3-124-gd4ad907.tar.gz #cd nicolasff-phpredis-00233a3 #phpize #./configure --with-php-cOnfig=/usr/bin/php-config
#make && make install #echo "extension=redis.so" > /etc/php5/mods-available/redis.ini #ln -s /etc/php5/mods-available/redis.ini /etc/php5/conf.d/redis.ini
Same as above, need to restart the server
4: Install through PHP source code (switch some extensions that are installed by PHP but turned off by default, here we want to enable pcntl)
#mkdir php #cdphp #apt-get source php5
Here we go in php5-(version number)/ext/pcntl
#cd php5-5.4.4/ext/pcntl #phpize #./configure #make && make install #echo "extension=pcntl.so" > /etc/php5/mods-available/pcntl.ini #ln -s /etc/php5/mods-available/pcntl.ini /etc/php5/conf.d/pcntl.ini
Same as above, just restart the server
If php reports an error, PHP Warning: Module ‘pcntl’ already loaded in Unknown on line 0
That means it has been installed. Now it is installed repeatedly. You need to delete the two pcntl.ini files added above. Then go to the
in the php.ini file
disable_functiOns= pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error, pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
Add ; comment out. Just restart the server. Note that php.ini is different in apache2 and nginx. For apache2, it is in /etc/php5/apache2/php.ini. For nginx, I specified /etc/php5/cgi/php in cgi. ini
It depends on which server you use, just comment out which one
5. Install uv through git clone (you need to have a git environment)
#git clone https://github.com/chobie/php-uv.git --recursive #cdphp-uv #cd libuv && make #cd .. #phpize #./configure
If phpize reportsIf it says that config.m4 cannot be found, it means you are using 64-bit and you need to perform the following steps
#make clean #cd ./libuv #make clean
Then modify php-uv/libuv/Makefile
#vim Makefile
Probably change the position of line 27 and add -fPIC
ifdef MSVC uname_S := MINGW endif CPPFLAGS += -Iinclude -Iinclude/uv-private -fPIC CARES_OBJS = CARES_OBJS += src/ares/ares__close_sockets.o
Re-execute the previous
#make #cd .. #phpize #./configure #make && make install
That’s it, then
#echo "extension=uv.so" > /etc/php5/mods-available/uv.ini #ln -s /etc/php5/mods-available/uv.ini /etc/php5/conf.d/uv.ini