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)
Installing packages in VPS
Wednesday, November 7, 2007
Posted in: Virtuzzo | 0 Comments | Email This
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.
Posted in: Virtuzzo | 0 Comments | Email This
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.
Posted in: Virtuzzo | 0 Comments | Email This