yum install php-pear* on centos

烈酒焚心 提交于 2019-11-28 04:03:48

问题


I'm trying to install pear on my centos.

I've used "*yum install php-pear**" to install pear and it seemed to install with success. No errors. I restart my server.

However when I check out phpinfo(). I see that my php is still built using "--without-pear".

Isn't yum supposed to rebuild my php with pear? What would be possibly going wrong?

Thanks!


回答1:


Try something like

$ pear list

and

$ pear info PEAR

- now if you get a listing of installed packages in the first case and information on what version of pear is installed in the second you're ready to use it.




回答2:


The output of phpinfo() is correct; the binary was built without PEAR. Fortunately what it says there doesn't matter. Look into the sections below to see what is currently available.




回答3:


yum does not rebuild anything. It downloads the necessary software modules and installs it on your machine. Your stock centos php does not have pear pre-compiled, but it will still be able to use pear once you've downloaded your modules.

If you cannot run pear, make sure you have the executable included in your path, or use "locate" to find it.




回答4:


You might still need to configure PEAR, did you check the PEAR site?




回答5:


Resolved, I have installed the given packages and restarted the server.

Try this yum install php-pear php-gd php-pear-DB -y service httpd restart.

it works



来源:https://stackoverflow.com/questions/2119195/yum-install-php-pear-on-centos

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!