This tutorial will let you install the G729 Codec on an Asterisk installation in under 5 minutes. Navigate to the codecs directory: cd /usr/lib/asterisk/modules Download the codec Codecs are provided as binary .so files, you can find the archive at http://asterisk.hosting.lv/#bin Take care of the following when picking up one of the files, they depend […]
Red hat linux
Install and configure FTP server on CentOS
Complete answer that solved my question for any others that are after a step by step walkthrough… Install vsftpd using “yum install vsftpd”. Create user with useradd [user_name]. Create user’s password with passwd [user_name]. (You’ll be prompted to specify the password). Create FTP directory in /var/ftp and then bind to the ‘home’ directory you wish […]
Creating the SOAP server with NuSOAP
Creating the SOAP server Create a file called food.php and copy the and paste the below code into it. <?php require_once “lib/nusoap.php”; class food { public function getFood($type) { switch ($type) { case ‘starter’: return ‘Soup’; break; case ‘Main’: return ‘Curry’; break; case ‘Desert’: return ‘Ice Cream’; break; default: break; } } } $server = […]
How to install, setup and configure an OpenVPN Service on CentOS 5
In this tutorial, we will learn how to install, setup and configure an OpenVPN Service on CentOS 5 as well as configuring the firewall to allow vpn traffic. Clients configuration will be done in the linked article, available at the bottom of this tutorial. Topology used in this scenario: 1 Ethernet card (eth0) connected to […]
How To Create a New User and Grant Permissions in MySQL
How to Create a New User Let’s start by making a new user within the MySQL shell: CREATE USER ‘newuser’@’localhost’ IDENTIFIED BY ‘password’; Sadly, at this point newuser has no permissions to do anything with the databases. In fact, if newuser even tries to login (with the password, password), they will not be able to […]
Howto setup Asterisk behind NAT
This HOWTO assumes that your FreePBX system is sitting behind a NATed firewall with no direct connection to the outside world and it is NOT in the DMZ zone. If you have your system facing outside, or have used Mapped IP addresses or other techniques, then it is assumed that you have adequate knowledge to […]
How to Install Webmin on CentOS/RHEL
This article will help you to install and configure Webmin on CentOS, RHEL and Fedora systems. Kindly go through below steps. At the time of last update of this article Webmin 1.780 is the latest available version to download and install. Download Webmin RPM Webmin rpms are available on its official site. Download it from […]
WORDPRESS Asks foe FTP Connection Info?
A common problem is that WordPress is unable to access the filesystem directly, which results in a page indicating that “To perform the requested action, connection information is required.“ What Can I Do About It? In order to fix this issue, you will need to make sure that the scripts which need to write to […]
Asterisk – Setup Elastix in exist CentOS or VPS
Case 1 (With Elastix Repository) Create new repository vi /etc/yum.repos.d/elastix.repo [elastix-base] name=Base RPM Repository for Elastix mirrorlist=http://mirror.elastix.org/?release=2&arch=$basearch&repo=base #baseurl=http://repo.elastix.org/elastix/2/base/$basearch/ gpgcheck=1 enabled=1 gpgkey=http://repo.elastix.org/elastix/RPM-GPG-KEY-Elastix [elastix-updates] name=Updates RPM Repository for Elastix mirrorlist=http://mirror.elastix.org/?release=2&arch=$basearch&repo=updates #baseurl=http://repo.elastix.org/elastix/2/updates/$basearch/ gpgcheck=1 enabled=1 gpgkey=http://repo.elastix.org/elastix/RPM-GPG-KEY-Elastix [elastix-beta] name=Beta RPM Repository for Elastix mirrorlist=http://mirror.elastix.org/?release=2&arch=$basearch&repo=beta #baseurl=http://repo.elastix.org/elastix/2/beta/$basearch/ gpgcheck=1 enabled=0 gpgkey=http://repo.elastix.org/elastix/RPM-GPG-KEY-Elastix [elastix-extras] name=Extras RPM Repository for Elastix mirrorlist=http://mirror.elastix.org/?release=2&arch=$basearch&repo=extras #baseurl=http://repo.elastix.org/elastix/2/extras/$basearch/ gpgcheck=1 enabled=1 gpgkey=http://repo.elastix.org/elastix/RPM-GPG-KEY-Elastix Install […]