No application 'MeetMe' for extension error in asterisk

I have three extensions with extension no. 2000,2001,2002.Separately i am able to call from one extension to another but now i want to add all three into the Conference Call.I googled and got to know that MeetMe is the way we can achieve this but i am not able to write the dialplans for it.

Please help me to configure the supporting directories to make things happen . Thanks in advance…

This is my sip.conf

[general]
port = 5060
bindaddr = 0.0.0.0
context = others

[2000]
type=friend
context=my-phones
secret=1234
host=dynamic

[2001]
type=friend
context=my-phones
secret=1234
host=dynamic

[2002]
type=friend
context=my-phones
secret=1234
host=dynamic

This is my extensions.conf

[others]

[my-phones]
exten => 2000,1,MeetMe(2000,i,54321)
exten => 2001,1,Dial(SIP/2001)
exten => 2002,1,Dial(SIP/2002)

This is my meetme.conf

[my-phones]
conf => 2000

But while calling extension no. 2000 from 2001 i am getting error as …

WARNING[5317][C-0000000a]: pbx.c:4872 pbx_extension_helper: No application ‘MeetMe’ for extension (my-phones, 2000, 1)

Please help me to resolve this .Thanks in advance…

Howdy,

Your installation likely doesn’t have app_meeme built and available.

You’ll have to rectify that with your installation.

Cheers

How to add and build app_meeme to make Conference Calls (MeetMe) in asterisk

I see

vikaspandey013: If you’re using Asterisk 11 or 12 (in a new installation I believe you should at least be using Asterisk version 11), you probably want to use ConfBridge instead of MeetMe. If you do not have any DAHDI hardware in your server, using ConfBridge will allow you remove a dependency on the DAHDI kernel modules. It is also optimized for mixing with typical VOIP channels and not mixing audio from channel banks and therefore is more efficient.

app_meetme is deprecated and needs to be turned on specifically when running “make menuselect” before building Asterisk. If you really want to use MeetMe and not ConfBridge, you can find detailed instructions for building Asterisk from source on the Asterisk Wiki. When you get to Using Menuselect to Select Asterisk Options you will want to turn on app_meetme in the deprecated section.