Curl - Your friend for Rest APIs/Calls - Basic Commands
Curl is a wonderful tool for initiate REST APIs or calls. Or, you can literally…
March 20, 2018
I was trying to install mongo extension with pecl.
pecl install mongo
It gave me error:
Then, I tried installing php-commons extension.
It gave me errors:
Error: php55w-common conflicts with php-common-5.4.16-43.el7_4.1.x86_64</li>
I searched php*-devel in yum repo:
yum search devel | grep php
I got “php55w-devel”
I installed it:
yum installphp55w-devel
I tried installing mongo again:
pecl install mongo
Error:
configure: error: Cannot find OpenSSL's <evp.h>
ERROR: `/var/tmp/mongo/configure --with-mongo-sasl=no' failed
I installed openssl-devel
yum install openssl-devel
Again tried:
pecl install mongo
Voila! It installed
Curl is a wonderful tool for initiate REST APIs or calls. Or, you can literally…
Introduction I got my seo backlink work done from a freelancer. It was like 300…
Lets implement a command shell by using a command dispatcher. The objective is…
Youtube APIs are great way to fetch details about video or channels. I’ve…
Goto your command terminal. Type: This will expose port: 27017 by default. You…
Introduction You are having a form having multiple fields. When you render a…
In this post, we will see some of the frequently used concepts/vocabulary in…
System design interview is pretty common these days, specially if you are having…
Introduction You are given an array of integers with size N, and a number K…
Graph Topological Sorting This is a well known problem in graph world…
Problem Statement Given a Binary tree, print out nodes in level order traversal…
Problem Statement Given an array nums of n integers and an integer target, are…