Plesk DNS issues, rebuilding DNS named on plesk
- No Comments
- Dec, 16, 2010
- Angelo Schalley
- DNS, Linux, Plesk Linux
Named under plesk can sometimes go haywire. I have seen until now two cases when this happens:
First Scenario
Named will not start due to a faulty zone file. Log into your server by ssh as user root
Read more on Plesk DNS issues, rebuilding DNS named on plesk…
create custom role on vmware esx or virtual center for VCB backup user
- No Comments
- Dec, 16, 2010
- Angelo Schalley
- vmware
To create a VCB role
1 Log on to the VI Client as a user with Administrator privileges.
2 From the VI Client, click Administration in the navigation bar.
Read more on create custom role on vmware esx or virtual center for VCB backup user…
from from esx console command line using perl
- No Comments
- Dec, 16, 2010
- Angelo Schalley
- Linux, vmware
#!/usr/bin/perl -w
use Net::SMTP;
my $smtpServer = 'smtpserver.company.com';
my $mailFrom = 'sender@companyname.com';
my $mailTo = 'recipient@companyname.com';
my $subject = 'Test Mail';
my $emailFile = '/usr/local/bin/report.txt';
sendmail($smtpServer,$mailFrom,$mailTo,$subject,$emailFile);
sub sendmail {
my $smtpserver = $_[0];
my $sender = $_[1];
my $recipient = $_[2];
my $subject = $_[3];
my $filename = $_[4];
Read more on from from esx console command line using perl…