Tag Archives: Linux - Page 2

Adding Remote JMX for Red5

How to Add JMX for Red5 Server Here we are going to know, How to managing red5 server remotely using JMX. what is red5 server ..? Red5 is an Open Source Flash Server written in Java that supports: Streaming Video …

Read more »

How to create and use private / public keys

Hi all, Here the document for how to create private and public keys for login. This is more helpful others can login to your machine without disclose the password. How to create private key for my machine..? Go to /home/root/.ssh …

Read more »

CentOS Networking FAQ

How to set static ip..? Edit your/etc/sysconfig/network-scripts/ifcfg-eth0 file like this. Then restart your network. How to restart the network..? The command for stop the network is “/etc/init.d/network stop” To start the network “/etc/init.d/network start” OR [root@localhost ~]# /etc/init.d/network restart Shutting …

Read more »

How to add Return-path in php mail

Here is the code for add Return-path in php mail programmatically. $today = date(“F j\\t\h Y, g:i a”); $name = ‘Yourname’; $from = ‘frommail@example.com’; $to = ‘tomail@example.com’; $cc = ‘ccmail@example.com’; $bcc = ‘bccmail@example.com’; $subject = ‘Example Subject’; // To send …

Read more »

How to Add FreeSwitch Service

Hello all, Here how to start freeswitch when machine boots. save these lines as file name freeswitch and copied to /etc/init.d/ folder then run the below comments chkconfig -add /etc/init.d/freeswitch chkconfig freeswitch on you are done. Now Freeswitch will start …

Read more »

Server Virtualization

Server Virtualization What is Virtualization..? Virtualization is a technique of partitioning or dividing the resources of a single server into multiple segregated execution environments. Each of these environments runs independently of the other, thus allowing multiple operating systems to run …

Read more »

How to set the static ip address in ubuntu..?

edit your /etc/network/interfaces file to after that rebooting your network by excecuting the below command… [root@localhost ~]# /etc/init.d/networking restart