Creating a table with auto_increment

CREATE TABLE example_autoincrement ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, data VARCHAR(100) ); CREATE TABLE example_innodb ( id INT,

Read more

MySQL CDR Backend – Asterisk

To use it, configure the module in cdr_mysql.conf. Create a table called cdr under the database name you will be

Read more

Adding User Accounts mysql – asterisk database

Create mysql user id after logging through root user. mysql -u root -p yourpasswordforroot CREATE USER ‘monty’@’localhost’ IDENTIFIED BY ‘some_pass’;

Read more

“bearercapability notauth” Zoiper error

The error ‘bearercapability notauth’ suggest that the credentials are not correct. If the credentials are definitely correct, this could indicate

Read more

copy a folder under linux server to windows server

MS-Windows shared folder: You can share data between windows and linux system for such use : For example you would

Read more

install phpmyadmin on centos 6

Step 1: Add EPEL Repository in System First step is to install EPEL repository in your system, Install package using

Read more