configuring digium TE235 and TE435 card in asterisk vicidial goautodial freepbx elastix

Digium’s (TE235) dual span digital interface cards support 48 (T1 / J1) or 60 (E1) connections to PSTN trunks over two spans (digital circuits). Built exclusively for use with Asterisk and Asterisk-based communications systems, the dual span cards provide the best value in digital connectivity. Digium TE235 and TE435 works with Any version of Asterisk … Read more

Change HostName From Command Line Linux

To change the  hostname, follow the steps shown below. 1. Use hostname command to Change Hostname In this example, we’ll change the hostname from dev-server to prod-server. hostname command by default will display the current hostname as shown below: # hostname dev-server The following will change the hostname to prod-server. # hostname prod-server Once the … Read more

Tech Plays vital Role in Business

Technology Plays Big Role in Small Business An important, but often overlooked, role many small business owners play is chief technology officer. And that’s no small role, a new survey from the National Small Business Association (NSBA) shows. Despite the many challenges posed by keeping up with the rapid pace of change in technology , … Read more

Managing Views in MySQL : Showing mysql view definition

Summary: in this tutorial, you will learn how to manage views in MySQL including displaying, modifying and removing views. Show view definition in MySQL MySQL provides the SHOW CREATE VIEW statement that helps you show view definition. The following is the syntax of the SHOW CREATE VIEW statement:   1 SHOW CREATE VIEW [database_name].[view_ name]; To display the definition of a … Read more

Real-Time Reporting for Call Center

There are various reports to Increase the efficiency and optimize the performance of your call center with comprehensive, real-time analytics. Industry-Standard Metrics Real-time analytics are available for service level, number of calls in progress, number of calls waiting, and the duration of time waiting. Compare call center statistics and performance with company goals and standards. Intuitive Dashboard … Read more

HeidiSQL : MySQL client

One of the best MySQL client i have used is HeidiSQL. HeidiSQL runs fine on Windows (XP, Vista, 7, 8) and – with Wine – on any Linux and newer MacOS X versions. On Windows 64bit, if you have a 32bit version installed in C:Program Files (x86)…, then the 64bit version is installed separately, and can be … Read more

mysql create user and grant permission

Create user  CREATE USER ‘super’@’%’ IDENTIFIED BY PASSWORD ‘*01A6717B58FF5C7EAFFF6CB7C96F7428EA65FE4C’; Grant Permission: GRANT ALL ON *.* TO easy@’10.0.20.212′; Flush Privileges: FLUSH PRIVILEGES  

Relay log read failure: Could not parse relay log event entry. The possible reasons are: the master’s binary log is corrupted

To Resolve such kind of issue, check the master relay log as follow; mysql> slave stop; Query OK, 0 rows affected (0.00 sec) mysql> change master to master_log_file=’mysql-bin.000001′,master_log_pos=207078754; Query OK, 0 rows affected (0.04 sec) mysql> start slave; Query OK, 0 rows affected (0.00 sec) Now you can check , Slave should start working.

MySQL Replication Slave I/O Thread States

Waiting for master update The initial state before Connecting to master. Connecting to master The thread is attempting to connect to the master. Checking master version A state that occurs very briefly, after the connection to the master is established. Registering slave on master A state that occurs very briefly after the connection to the … Read more