Archive for the tag 'changes'

Changes in CL Utilities Parallels Plesk Panel 10.0

Changes in the hosting and user accounts

* (-) client_template utility.
* (*) client utility: the commands –convert-to-reseller and –change-owner are no longer supported; the options -template, -sb-user, -status, and -force are no longer supported.

* (*) client_pref utility: the command –set-iis-app-pool-settings and options -iis-app-pool-turned-on, -cpu-usage-state, -cpu-usage-value were added; the options -manage dashboard, -max-mg, -desktop-preset, -max_redir, -max_resp, -lock-screen, -desktop-preset are no longer supported.

Reference: http://parallels.com/

Changes in SiteBuilder 5.0 New Features

Content templates

Rigid design templates are replaced by content templates. The new templates are extensively researched, localized, and focused on the needs of individuals and small businesses. They are pre-written for each small business type, allowing you to instantly create a site for your small business type.

Modular design

Each website gets a unique modular design. Every module has its own properties and can be managed separately.

Modern UI with in-place editing

Modern-looking, responsive and intuitive UI allows everyone to edit their website to their liking. Content is edited right where it is on a WYSIWYG basis eliminating the need for special previews.

Improved search engine optimization

Support for meta keywords, meta description, header and footer code inclusion, verification of files upload, automatic sitemap.xml and robots.txt generation.

Extended customization

Most of what you see on the website can be customized. This includes colors, sizes, images, content and so on.

Reference: http://parallels.com/

SBDavid

Changes in Parallels Plesk Panel 10

Changes in Parallels Plesk Panel 10

Control Panel and Auxiliary Users : The new Control Panel provides simpler UI for customers and also introduces auxiliary users able to access Control Panel together with customer. The auxiliary users replace former Domain Administrator and mail users, the amount of operations available to the new Control Panel users is defined using a flexible system of user privileges.

Multi-domain hosting : The concept of a domain has been replaced with a concept of a subscription – a hosting unit able to run multiple sites (domains and subdomains) over given resources and services. As the subscriptions belong to customers, the domain administrator role is removed. However, a customer is able to create user accounts that are eligible to manage all the customer’s sites.

Multiple FTP accounts :Customer can create multiple FTP accounts within a single subscription, defining which part of the subscription files can be accessed by each.Integrated

SiteBuilder 5.0 : SiteBuilder 5.0 (former Parallels Plesk Sitebuilder) is the Panel component that is 100% focused on fast and efficient creation of websites.

Reference : http://parallels.com/

Using RPM Verify to Monitor Changes to System Files

It is important for administrators of critical server systems to be able to track changes to files on their systems. Tracking file changes helps detect accidental or malicious modifications such as viruses, root kits, or hacking activity. RPM, the package management system used for all RPM based Linux distributions, provides an easy mechanism for tracking these changes. When a package is installed, the RPM database stores information about each file belonging to that package including the size, date, and MD5 sum among others. This data can later be compared to the existing files on the system to detect any changes.

Verifications are performed with the rpm command and the -V flag. This command should be executed as root so that all file attributes can be read from the system without file permissions getting in the way. For example:

To verify all files in the RPM database:

# rpm -Va

To verify all files belonging to a package, packagename:

# rpm -V packagename

To verify all files belonging a particular RPM file (local, FTP, HTTP):

# rpm -V path_to_the_file.rpm

All applicable files are checked, and any discrepancies are shown. The output is a string of eight characters, followed by an optional attribute marker. The string of eight characters indicates changes in size, permissions, MD5 sum, etc.

S file Size differs
M Mode differs (includes permissions and file type)
5 MD5 sum differs
D Device major/minor number mis-match
L readLink(2) path mis-match
U User ownership differs
G Group ownership differs
T mTime differs

For example:

S.5….T c /etc/wvdial.conf

This example shows that the configuration file, /etc/wvdial.conf, has a different size, MD5 sum, and modified time than the RPM database has on record. In this case, this is probably okay–it is a configuration file and it is normal for them to change.

Using Perl to make changes to your DNS files

Example : You would like to change “v=spf1 a mx ip4:1.2.3.4 ?all” to “v=spf1 a mx ip4:1.2.3.4 -all”

of course, where 1.2.3.4 should be replaced by your server IP.

If you’d rather do this to all of your domain, you can use perl

cd /var/named

perl -pi -e ’s/\?all/\-all/’ *.db

change /var/named to the appropriate directory for your db files for your OS (/etc/bind, /etc/namdb)

Restart named after making the changes.