19

What does that pecl message mean? I mean specifically how does one use the channel described in the error message? ... or in other words how can I address this error (but not specific to mongo, i.e. I get this failure not just when trying to install Mongo but also when trying to install other things and I don't understand how to fix it in general).

Should I be "installing" the channel via pecl somehow? (Much like one adds a channel to yum).

Or what?

geoidesic
  • 4,649
  • 3
  • 39
  • 59

1 Answers1

25

It simply means that mongo extension is deprecated, and you should use mongodb instead:

pecl install mongodb
malcolm
  • 5,486
  • 26
  • 45
  • 1
    And the version numbers have changed. Currently, the latest stable on `mongodb` is 1.1.6. On the deprecated `mongo` it was 1.6.14. – Batandwa Jun 02 '16 at 09:00