MySQL Server Logs : Error log and General Query Log

MySQL Server has several logs that can help you find out what activity is taking place. By Default , No Logs are enabled in MySQL. By default, the server writes files for all enabled logs in the data directory. Logs can be flush by Issuing FLUSH LOGS statement. Binary log is flushed when its size … Read more

The While loop in C

It is often the case in programming that you want to do something a fixed number of times. Perhaps you want to calculate gross salaries of ten different persons, or you want to convert temperatures from centigrade to Fahrenheit for 15 different cities. Let us look at a example which uses a while loop. The … Read more

Enable setup command in CentOS minimal install

setup utility

  Generally setup command is not used to install in centos minimal installation: Here is the step to install setup command in centos: # yum install setuptool -y # yum install system-config-network* -y # yum install system-config-firewall* -y # yum install system-config-securitylevel-tui -y # yum install system-config-keyboard -y # yum install ntsysv -y

Creating Views in MySQL : How to create mysql views

Summary: in this tutorial, you will learn how to create views in MySQL by using the CREATE VIEW statement. Introduction to CREATE VIEW statement The syntax of creating a view in MySQL is as follows:   1234 5   CREATE[ALGORITHM = {MERGE  | TEMPTABLE | UNDEFINED}]VIEW [database_name].[view_name]AS [SELECT  statement] Algorithms The algorithm attribute allows you to control which mechanism is used when … Read more

Broadcasting and Multicasting: what is?

Autodestruct on dialog….: Asterisk issue

WARNING[1812] chan_sip.c: Autodestruct on dialog ‘38617eb73184c21225d3133b398b0dc6@10.0.8.18:5060’ with owner SIP/1000-00000533 in place (Method: BYE). Rescheduling destruction for 10000 ms Solution: We resolved this by looking into the dialplan. It seems that we had a channel held open that Asterisk couldn’t destroy. These built up and Asterisk was unable to successfully make calls. A key thing I … Read more

S Net Expert Technology : Company Profile

s net expert technology

About the Company: S Net Expert Technology is an innovator of Contact Center Software and Enterprise Communications Applications. Working with the team of experts in the domain of customer interactions management solutions, Telecom value added services, S Net Expert Technology has consistently aimed to deliver futuristic applications to un-complicate communications. We offer such Communications Solutions … Read more

Stop firewall services centos : linux firewall service stop at startup

Check the Status of The Iptables IPv4 Firewall Run the following command to check the status of the iptables IPv4 firewall : # service iptables status Disable The Iptables Firewall Use the following commands to stop the Iptables Firewall and remove it from autostart. Disable The Iptables IPv4 Firewall Run the following commands to stop the iptables firewall … Read more