Archive for the tag 'installing'

minimum requirements for installing Parallels Pro Control Panel

Operating system: Any of the following operating systems: FC 6 (Fedora™ Core 6), FC 4, CentOS 4.x (Community Enterprise Operating System 4.x), CentOS 5.x, RHEL 5 (Red Hat® Enterprise Linux ES Release 5), RHEL 4 ES, RHEL 4 AS.

Note: FC 4 operating system is supported only with 32-bit architecture, and all other operating systems are supported with both 32-bit and 64-bit architecture.

The system files /etc/hosts, /etc/resolv.conf, /etc/sysconfig/network, and /etc/sysconfig/network-scripts/ifcfg-eth0 on the target server must include the entries as specified below. If the entries are not present, use an editor to modify the files.

/etc/hosts file.

—/etc/hosts begin file–
127.0.0.1 localhost.localdomain localhost
1.2.3.4 myhost.mydomain.com myhost
—/etc/hosts end file–

Installing C++ preprocessor in DirectAdmin

If you encounter this error message, this would imply that you do not have g++ installed:

checking whether we are using the GNU C++ compiler… no
checking whether g++ accepts -g… no
checking dependency style of g++… none
checking how to run the C++ preprocessor… /lib/cpp
*** The make has failed, do you want to try to make again? (y,n):

The gcc-c++ rpm and all it’s dependancies are required to resolve the issue.

Some dependancies include:

libstdc++-devel
libstdc++

If you have up2date, simply run:

up2date -u gcc-c++

or

yum install gcc-c++

Source include: http://directadmin.com/

If you are installing Parallels Plesk Panel inside a PVC, it is strongly recommended to increase Container parameters as follows:

# Auxiliary parameters

-PRIVVMPAGES=”262144:292912″
+PRIVVMPAGES=”362144:392912″
-NUMFILE=”8192:8192″
+NUMFILE=”12000:12000″

# Disk quota parameters (in form of softlimit:hardlimit)

-DISKSPACE=”1048576:1153434″
+DISKSPACE=”5240709120:5368709120″
-DISKINODES=”200000:220000″
+DISKINODES=”350000:370000″

# Secondary parameters

-KMEMSIZE=”21299200:23429120″
+KMEMSIZE=”24299200:26429120″

Source: http://parallels.com/Plesk/

Before installing Parallels Plesk Panel on Ubuntu

If you are using Ubuntu 8.04 LTS: Before installing Parallels Plesk Panel, switch the AppArmor service off using the command ‘/etc/init.d/boot.apparmor stop’ and remove it from start-up list by ‘update-rc.d -f apparmor remove’

$ sudo update-rc.d -f apparmor remove
Removing any system startup links for /etc/init.d/apparmor …

IMPORTANT: To install Postfix mail server, you have to select the Postfix component for installation in Parallels Products Installer. Both command line interface and web interface of Parallels Products Installer can be used for Postfix mail server selection and installation.

Source : http://parallels.com/Plesk/

Download a distribution that suits your operating system from the URL http://www.parallels.com/en/download/plesk9/ and save it on your server’s hard drive.

To install Parallels Plesk Panel on a number of servers, you may want to set up a mirror of the official Parallels Plesk Panel update server (http://autoinstall.plesk.com) inside your network so as not to download the distribution files through the Internet each time, and then install Parallels Plesk Panel.

If you have Parallels Plesk Panel installed on the server, you can use the parallels_installer binary file, which is stored in the directory /usr/local/psa/admin/bin/ on RPM-based Linux, FreeBSD and Mac OS systems, and /opt/psa/admin/bin/ on deb-based Linux systems.

Prepare the installation script based on the example below. Replace the options in the example script with the ones you prepared, and specify server names in the ‘SERVERS_LIST=’ string separated by white spaces:

#!/bin/sh
SERVERS_LIST=”node1.example.com node2.example.com”
for current_server in $SERVERS_LIST; do
scp parallels_installer root@current_server:
ssh -f root@current_server “parallels_installer –source-type network –source http://updates.example.com/ –target /tmp/plesk –select-release-id PLESK_9_0_0 –install-component base –install-component postgresql –install-component asp –notify-email admin@example.com”
done

Run the script. It will copy the Parallels Products Installer to the specified servers and install Parallels Plesk Panel. Keep the passwords for access to the servers at hand, as you may be required to specify them.

Document Source : http://parallels.com/Plesk/

« Prev - Next »