Showing posts with label Virtuzzo. Show all posts
Showing posts with label Virtuzzo. Show all posts
0

Installing packages in VPS

Wednesday, November 7, 2007

You can install the packages for a prticular VEID using using the following way:
1. Login into the main VPS
2. Verify whether the particular package to be installed is listed in the 'vzpkgls'
"vzpkgls | grep packageName"
3. Install the package using the "vzpkgadd VEID packageName"

example to install the spamassassin for VEID 347
# vzpkgls | grep spamassassin
# vzpkgadd 347 psa-spamassassin-fc4 (psa-spamassassin-fc4 is the corresponding pkg name)

0

How to create login for VZPP (Virtuzzo Power Panel)

You can create the login details for the VZPP (Virtuzzo Power Panel) using the following command.

vzctl set VEID --save --userpasswd Username:NEWPASSWORD

(example: vzctl set 347 --save --userpasswd username:mypass)

You can login into the VZPP (https://IP:4643) using the corresponding Username and NEWPASSWORD.

0

Virtuzzo - Unable to enable sendmail in Virtuzzo - Plesk

Tuesday, November 6, 2007

Unable to enable sendmail in Virtuzzo - Plesk

Issue:

Unable to enable the sendmail using "Virtuzzo -> system services -> xinetd (tab) -> sendmail" sec
tion.



Fix:

This is mainly occurring due to one entry in the sendmail file (which is used by the VPS)

Check the file /etc/xinetd.d/sendmail file. It will look like following:
service smtp
{
disable=yes
socket_type = stream
protocol = tcp
wait = no
user = root
group = root
server = /usr/sbin/sendmail
server_args = -bs -Am
nice = 5
instances = 10
}

Modify it to :
service smtp
{
disable=no
socket_type = stream
protocol = tcp
wait = no
user = root
group = root
server = /usr/sbin/sendmail
server_args = -bs -Am
nice = 5
instances = 10
}

restart the xinetd using:
/etc/init.d/xinetd restart

Verify the sendmail status using "Virtuzzo -> system services -> xinetd (tab) -> sendmail". You c
an see that the status of sendmail now changed to enabled.