重新编译并重新安装php
我正在运行 Fedora Core 10 和 php 5.2.9,没有 ldap。现在我想删除当前的 php 安装并使用 ldap 重新编译最新版本的 php 并安装它。
如何做到这一点?
I am running Fedora Core 10 with php 5.2.9 without ldap. Now i want to remove current php installation and recompile the latest version of php with ldap and install it.
How to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
基本上,从 PHP 网站下载源代码。然后,从终端输入“./configure --prefix=/usr/local/my_php_version”
在输出中,检查它是否识别您的 LDAP 安装(以及 Apache 安装)。如果没有,请查看配置选项以了解如何指定路径。类似“--with-openldap”、“--with apxs”等。
您还应该查看配置选项以激活您需要的功能。
完成后,输入“make”,然后输入“sudo make install”。
另请查看官方安装文档:http://www.php。 net/manual/en/install.unix.php
Basically, download the sources from the PHP website. Then, from a terminal, type './configure --prefix=/usr/local/my_php_version'
In the output, checks if it recognize your LDAP installation (and also the Apache one). If not, take a look at the configuration options to learn how to specify the paths. Something like '--with-openldap', '--with apxs', etc.
You should also take a look at the configuration options to active the features you need.
Once you're done, type 'make', then 'sudo make install'.
Also take a look at the official install documentation: http://www.php.net/manual/en/install.unix.php
您可以将 LDAP 支持添加到已安装的 PHP 中,而无需重新编译 PHP。
您可以安装各种库和模块,而无需重新编译 PHP。要查看可用的库,您可以执行
要为 PHP 安装 LDAP,您可以执行
如果您将 PHP 作为 Apache 模块,则必须重新启动
httpd
才能激活更改Instead of re-compiling the PHP, you can add the LDAP support to the PHP you have installed.
You can install a variety of libraries and modules without recompiling PHP. To see the libraries that are available, you can execute
To install LDAP for your PHP, you can execute
If you have PHP as an Apache module, you must restart the
httpd
to activate the changes