Plesk – How to Set up a Secondary DNS Server

First, zone transfer for the secondary DNS server should be allowed in Plesk. To do it list secondary DNS server’s IP in NS records for all zones on Plesk server or add it to Access Control List (ACL). ACL is managed under Server > DNS Settings > Common ACL.

For non-Plesk secondary DNS servers:

  1. Create all DNS zones on the secondary DNS server in /etc/named.conf (this file location may differ depending on OS) with slavetype. For example:zone “example.com” { type slave; file “example.com.zone”; masters { 192.168.0.1; }; }

Read More

Install MariaDB on CentOS 6

Step 1. Setting up the MariaDB Repository

You should ensure that the available packages are up to date. For that, simply run the following command in terminal:

yum -y update

Now, add the MariaDB CentOS repository.

Create a new MariaDB repository file /etc/yum.repos.d/mariadb.repo with nano:

nano /etc/yum.repos.d/MariaDB.repo

Read More

How to show your apache status

You can also  check and monitor Apache server’s current status on the web page without using log files. Modify httpd.conf file and add the following code into it:

ExtendedStatus On
<Location /server-status>
SetHandler server-status
Deny from all
Order deny,allow
Allow from localhost 192.168,1,56
Allow from .anotherdomain.com
</Location>

Read More

Cannot Add a new Domain

A DNS record for the domain you are trying to add already exists in the Plesk database, so a new domain with the same name cannot be added.

Resolution

Try finding a record with a similar name in the DNS settings of the existing domains.

If it is difficult to find this manually:

Read More

Install a Mumble Server on CentOS 7

he first step is to go to http://wiki.mumble.info/wiki/Main_Page and download the latest stable release of the Mumble Static Linux Server.

As we are using the CentOS 7 operating system, we have to use the wget command to download it. We can do this by right-clicking on the direct link and select ‘Copy Link Adress’ and then paste it to the command line after the wget command.

wget https://github.com/mumble-voip/mumble/releases/download/1.2.13/murmur-static_x86-1.2.13.tar.bz2

Read More

Plesk Error After NGINX IP Change

Internal error: Dependent row(s) ‘smb_roles.id = 1’ isn’t found for ‘smb_users.roleId = 1’

Symptoms

An error occurs when accessing a subscription in Parallels Plesk Panel (Plesk), going to Subscriptions > domain.com > Open in Control Panel

Internal error: Dependent row(s) 'smb_roles.id = 1' isn't found for 'smb_users.roleId = 1'.
Message     Dependent row(s) 'smb_roles.id = 1' isn't found for 'smb_users.roleId = 1'.
File    Abstract.php
Line    206
Type    Exception

Read More