×


Blog


Database import hangs in Plesk - Fix it Now ?

This article covers methods to resolve Database importing hangs in Plesk with error reading communication packets. Generally, the database import task in Plesk fails due to non-optimized client databases.

The solution to this Plesk error is to simply optimize the databases.


Configure Windows Firewall Rules with PowerShell

This article covers method to Configure Windows Firewall Rules with PowerShell. The New-NetFirewallRule cmdlet creates an inbound or outbound firewall rule and adds the rule to the target computer.

Some parameters are used to specify the conditions that must be matched for the rule to apply, such as the LocalAddress and RemoteAddress parameters. Other parameters specify the way that the connection should be secured, like the Authentication and Encryption parameters. Rules that already exist can be managed with the Get-NetFirewallRule and Set-NetFirewallRule cmdlets.

Filter objects, such as NetFirewallAddressFilter or NetFirewallApplicationFilter, are created with each firewall rule. The filter objects and rules are always one-to-one and are managed automatically.


To enable all three network profiles. Domain, Public and Private, use this command:

Set-NetFirewallProfile -All -Enabled True

Or set the specific profile instead All:

Set-NetFirewallProfile -Profile Public -Enabled True

To disable the firewall for all three network location, use the command:

Set-NetFirewallProfile -All -Enabled False


Plesk "system error 13 : permission denied" – Fix it Now ?

This article covers how to fix Plesk "system error 13 : permission denied". Plesk service cannot execute a backend utility or the utility is unable to change some files due to incorrect permissions.


The RPC server is unavailable – Fix it Now ?

This article covers methods to resolve RPC server error. To prevent the problem from reoccurring, check your firewall settings to see whether RPC data traffic is being blocked. If you use a third-party firewall, check the appropriate settings. If you use the Windows firewall, open the Control Panel and search for 'Windows Firewall". In the "Remote" tab, under "Remote Assistance", all of the boxes should be checked.


How to fix the RPC server error ?

Fortunately, the error can be resolved easily and quickly. You just need to restart the service.

  • From the Start menu (Windows symbol) open the Control Panel.
  • Select "Administrative Tools" and then "Services". Alternatively, you can enter "Services" in the search bar.
  • Find "DCOM Server Process Launcher" in the list and double-click to open it.
  • You are now in the configuration menu for the RPC server. Ideally, the "Startup type" should be set to "Automatic" and the "Service status" should show "Running". If this is not the case, set the "Startup type" to "Automatic" and click the "Start" button under "Service status". Click "OK" to confirm.
  • Now close any programs you have running and restart your computer.


Install Wazuh Server on Ubuntu 20.04 - Step by Step Process ?

This article covers how to go about to install Wazuh Server on Ubuntu 20.04. Wazuh is a free and open source solution for security monitoring.

It monitors hosts at an application and operating system levels and offers  threat detection, incident response, integrity monitoring, and compliance. 


To restart Kibana, Elasticsearch and Wazuh-manager with the below commands:

$ sudo systemctl restart kibana
$ sudo systemctl restart elasticsearch
$ sudo systemctl restart wazuh-manager


Configure filters in Nagios log server - Do it Now ?

This article covers method to customize Nagios Log Server Filters. Basically, to configure filters in Nagios log server, one needs to be familiar with the Filter Configuration options available within the log server.

Filters can be applied to messages before they are sent to Elasticsearch for indexing. They perform actions such as breaking apart messages into fields for easy searching, adding geo location information, resolving IP to DNS names and dropping messages you do not want indexed.