Installing the MongoDB pecl extension on a cPanel server

If your cPanel server has /tmp mounted with the noexec option you may run into the following error when trying to install the extention.

 

"checking whether the C compiler works... configure: error: cannot run C compiled programs."

You can remount /tmp with exec, run the pecl install and than remount /tmp again with no exec:

 

 

  • mount -o,remount,rw,exec /var/tmp
  • pecl install mongo
  • mount -o,remount,rw,noexec /var/tmp

 

If you are not comfortable remounting /tmp. You can try the following instead which will create a symlink to another mount that doesn't have the noexec option.

  • mkdir /root/tmp.pear
  • mkdir /root/tmp.pear-build-root
  • rm -rf /tmp/pear*
  • ln -s /root/tmp.pear /tmp/pear
  • ln -s /root/tmp.pear-build-root /tmp/pear-build-root
  • pecl install mongo

 

 

  • 119 brukere syntes dette svaret var til hjelp
Var dette svaret til hjelp?

Relaterte artikler

EULA

END USER LICENSE AGREEMENT This copy of ServerPing ("the Software Product") and...

Sample Custom Check Script

  /* Sample Custom Check   Upload this PHP script to your server to a directory that is...

System Requirements

Requirements You will need at least one Cent OS 6 (64 bit recommended) VPS/Dedicated server with...

Recovering the MongoDB replicaset after a hard server reboot on 32bit systems

If one of your check servers crashes/was hard rebooted and it is running MongoDB you will most...

Installation Guide

Requirements You will need at least one Cent OS 6 (64 bit recommended) VPS/Dedicated server with...