Month: May 2010

FFMPEG Installation

FFMPEG and it’s related modules Installation through Script:   Details:All FFmpeg packages are installed from source except codecs. The main dependency for installing ffmpeg is: yum Ffmpeg installation will only work on redhat and suse (requires yum) distributions. FFmpeg installation will work in cpanel and plesk servers.How to run:Wget the above script to /usr/src folder […]

Continue Reading

Plesk DBWebadmin(PHPMyAdmin) Error

Plesk – DBWebAdmin Error:Get the following error when try to use PHPMyAdmin in the Parallels Panel: “#1045 – Access denied for user ‘pma_xxxxxxx’@’localhost’ (using password: YES)” APPLIES TO:* Plesk 8.x for Linux/Unix CauseThe problem is caused by mismatch between user login credentials stored in phpMyAdmin configuration and database.Using instructions below you may repair the configuration. […]

Continue Reading

Plesk Fatal exception error and Fix

Plesk Fatal Exception Error: Unable to create or delete domains under Plesk panel. Failed domain creation: Unable to update domain data: dnsmng::remove() failed: dnsmng failed: dnsmng: Unable to open DNS config file: Permission denied System error 13: Permission denied 0: /usr/local/psa/admin/htdocs/domains/create_domain.php:150 Fix: 1. Disable the selinux. vi /etc/sysconfig/selinux SELINUX=disabled SELINUXTYPE=targeted SETLOCALDEFS=0 2. Improper permission of […]

Continue Reading

Linux Tips & Tricks

TIP 1: NTP Is NTP Working? STEP 1 (Test the current server): Try issuing the following command: $ ntpq -pn remote refid st t when poll reach delay offset jitter =================================================== tock.usno.navy 0.0.0.0 16 u – 64 0 0.000 0.000 4000.00 The above is an example of a problem. Compare it to a working configuration. […]

Continue Reading

OpenVZ Installation On CentOS 5

OpenVZ Installation On CentOS 5 OpenVZ is the open-source branch of Virtuozzo, a commercial virtualization solution used by many providers that offer virtual servers. In order to install OpenVZ, Follow the below steps, First Step , we need to add the OpenVZ repository to yum cd /etc/yum.repos.d .wget http://download.openvz.org/openvz.repo rpm –import http://download.openvz.org/RPM-GPG-Key-OpenVZ The repository contains […]

Continue Reading

Mysql Queries in Linux

How to resolve mysql_connect() Error Warning: mysql_connect() [function.mysql-connect]: Access denied for user ‘username’@’localhost’ (using password: YES) Possible root cause for this problem is proper privilege not assigned to the particular user. So providing proper privileges will solve this issue. $grant all privileges on “Database_Name” to “username@localhost” identified by “password” If the mysql resides in the […]

Continue Reading

Plesk VPS Migration for plesk 9 series

1. Upload migration agent and modules to the source server. For example for Parallels Plesk Panel, there are two folders: “/usr/local/psa/PMM/agents/shared” and “/usr/local/psa/PMM/agents/PleskX”. Use the command below to copy the Migration Manager: destination ~# scp -r /usr/local/psa/PMM/agents/shared/* /usr/local/psa/PMM/agents/PleskX/* root@source:temporary_migration_directory/ 2. Login to source server and change to directory /temporary_migration_directory. Run migration agent (PleskX.pl) with parameter […]

Continue Reading