This issue comes with openvz nodes. After the creation of VE, we may face an issue like following, ———————————- # vzctl enter 101 enter into VE 101 failed Unable to open pty: No such file or directory ——————————— Its solution is simple. Please do the following procedure # vzctl exec  101 /sbin/MAKEDEV tty # vzctl [...]

Red5 Flash media server development: How to install and configure ? What is red5 server ? Red5 is an Open Source Flash Server written in Java that supports: * Streaming Audio/Video (FLV and MP3) * Recording Client Streams (FLV only) * Shared Objects * Live Stream Publishing * Remoting (AMF) This is an amazing application [...]

Introduction: In general csf is giving good compatibility with cpanel servers . But in a vps (openvz or Virtuzzo) the csf configuration is something different. Sometimes you may get an error as follow after the csf installation in vps ————– Error: iptables command [/sbin/iptables -v -A LOGDROPIN -p tcp -m limit --limit 30/m --limit-burst 5 [...]

1. Stop/ kill the mysqld # service mysql stop #pkill -9 mysqld 2) Start the mysql in safe mode as follows # mysqld –skip-grant-tables –user=root &   3) Now update the mysql user tables and root password as follows   #mysql mysql>use mysql;  mysql>UPDATE user SET Password=PASSWORD(‘YOUR_PASSWORD’)  WHERE Host=’localhost’ AND User=’root’;  mysql>flush privileges; Now add [...]

It is little difficult for upgrading Python in cpanel servers. Because if you upgrade python directly , the yum package manager will not work. So you need to reinstall all old rpms again. When you required to upgrade python on Cpanel server? The latest Mailman have some bugs. It need Python version of 2.4.6 at [...]