How to Restart a Server using Plesk?


Cheap reseller Hosting


Here’s how to restart a server using Plesk. To perform a full server restart, you need administrator (root on Linux, Administrator on Windows) access to the Plesk panel. If you only have access to a client or reseller Plesk account, you will likely not have the necessary permissions.

Steps to Restart the Server:

  1. Log in to Plesk as the Administrator:
    1. Open your web browser.  
    1. Enter your Plesk login URL (usually something like https://your-server-ip:8443 or https://your-domain.com:8443).
    1. Enter your administrator username and password.  
  2. Navigate to the “Tools & Settings” section:
    1. Once logged in, look for the main navigation menu on the left-hand side.  
    1. Click on “Tools & Settings”.
  3. Find the “Server Management” group:
    1. In the “Tools & Settings” page, locate the group of settings related to server administration. This is usually labeled “Server Management”.  
  4. Click on “Services Management”:
    1. Within the “Server Management” group, click on “Services Management”.  
  5. Locate the “Server” service (or similar):
    1. On the “Services Management” page, you will see a list of various services running on the server.  
    1. Look for a service that represents the entire server or operating system. This might be labeled simply as “Server”, or it could have a more specific name depending on your operating system (e.g., initd, systemd).
  6. Use the Restart Button:
    1. Next to the “Server” service (or the appropriate service you identified), you should see a set of control buttons.
    1. Click the “Restart” button. It might look like a circular arrow or a power icon.
  7. Confirmation Prompt:
    1. Plesk will likely display a confirmation prompt asking if you are sure you want to restart the server.Be sure you want to proceed. Restarting the server will interrupt all services and websites hosted on it.
    1. Click “OK” or “Yes” to confirm the restart.
  8. Wait for the Server to Restart:
    1. The server will now begin the restart process. This can take several minutes, depending on your server’s configuration and the number of services running.  
    1. Do not interrupt the process. Close your browser window only after you are sure the server has completely restarted.
  9. Verify the Restart:
    1. Once you believe the server has restarted, try accessing your websites or Plesk panel again to confirm that the server is back online and functioning correctly.

Important Considerations:

  • Impact on Hosted Services: Restarting the server will cause downtime for all websites, email services, and other applications hosted on it. Plan your restarts carefully to minimize disruption.

  • Data Loss Risk: While a normal restart shouldn’t cause data loss, it’s always a good practice to have recent backups of your server data before performing any server-level operations.

  • Troubleshooting: If the server doesn’t come back online after a reasonable amount of time, you may need to contact your hosting provider for assistance. They might have physical access to the server and can diagnose any issues.

  • Alternative Methods (Command Line): If you have SSH or Remote Desktop access to the server, you can also restart it using command-line commands specific to your operating system (e.g., reboot or shutdown -r now on Linux, shutdown /r /t 0 on Windows Server). However, the Plesk interface provides a graphical way to do this.

If you do not see the “Server Management” or “Services Management” sections, it means your Plesk user account does not have the necessary administrator privileges to restart the entire server.

In this case, you must contact your hosting provider or the Plesk administrator for assistance with server restarts. You might only be able to restart individual services within your subscription.


Cheap web Hosting


How to install Zend Optimizer in Cpanel Linux Server


Cheap reseller Hosting


 

install-Zend-Optimizer

Introduction : 

Zend Server is the most complete PHP distribution with a continuously updated set of advanced value-add features designed to optimize productivity, performance, scalability and reliability. It is a free PHP extension to enable the web server to execute files encoded by Zend Guard/Encoder so it’s executed the same as any regular PHP files. Zend Encoder also is useful for encoding PHP files to protect source code. Zend Server supports any and all PHP code and provides deep insights into that code including the most popular PHP applications and frameworks like WordPress, Magento, Drupal, Zend Framework, Symfony, and Laravel. Any code you have in PHP will run on Zend Server. You will need to install Zend Optimizer in your server running Linux.

 

 

Installing zend in cPanel Linux Server follow this Steps:

Step 1 : Log in to your server via SSH with root user.

Step 2 : Run the following command.

 /scripts/installzendopt

Step 3 : Follow the instructions on the screen to install Zend Optimizer.

Step 4 : Then, Restart the apache.

 service httpd restart

Step 5 : To check whether zend optimizer is running and vserion.

 php -v

It would show ioncube or zend optimizer version.

 

install Zend Optimizer

                             

 

            OR

 

Follow the on-screen instructions.

When you want to install Zend Optimizer on a Non-cPanel server please follow the steps:

Step 1 : Download Zend Optimizer.

http://www.zend.com/en/products/guard/optimizer/

Step 2 : Upload the .tar.gz into your web server.

/home/temp

Step 3 : Extract the archive by using the following command.

tar -zxvf filename_here.tar.gz

Step 4 : Now a new directory should appear.

Step 5 : Execute the following command.

./install.sh

Step 6 : Follow the instructions on-screen.

Step 7 : Restart HTTPD (Apache) by using following command.

service httpd restart

 

 

 

That it !


Cheap web Hosting


How to Remove/Uninstall RVSkin from Cpanel/WHM Server ?


Cheap reseller Hosting


RVSkin

rvskin logo

RVSkin is a management software offered with cPanel server that provides a user with complete branding and skinning control over cPanel and Reseller accounts. In a short span of time you will be able to create impressive looking cPanel overlay skins for your end users that are customizable in accordance to your preferences.

 

Uninstall RVSkin from Cpanel

 

To Remove/Uninstall RVSkin from Cpanel/WHM Server

Follow the steps to uninstalling RVSkins from Cpanel/WHM Server

Step 1 : Login to Cpanel/WHM server via SSH

Step 2 : Run the following command as root on the server:

# perl /root/rvadmin/uninstall.pl

.

.

.

.

You will be completely Removed/Uninstall RVSkin from your Cpanel/WHM Server

 

And

 

If for some reason RVskin was installed in a different location, change the path accordingly.

Restart your cpanel by using following command: 

# /etc/rc.d/init.d/cpanel stop

# /etc/rc.d/init.d/cpanel start

 

 


Cheap web Hosting


SSH Connection Sequence


Cheap reseller Hosting


 

ssh

The following series of events help protect the integrity of SSH communication.

SSH Connection Sequence

1) A cryptographic handshake is made with the server

2) The connection between client and remote server is encrypted using symmetric cipher

3) Client authenticates itself

4) Client can now interact safely with remote server over encrypted connection

 

 


Cheap web Hosting


How to install MariaDB Server in cPanel/WHM servers?


Cheap reseller Hosting


How to install MariaDB Server in cPanel/WHM servers?

And

What are the advantages of using MariaDB Server ?

Ans:

 *  Install MariaDB Server in cPanel/WHM servers

1. Backup existing MySQL data

# mysqldump --all-databases --routines --triggers > /home/db_dump/alldb.sql
# service mysql stop
# cp -r /var/lib/mysql/mysql /home/db_dump/
# service mysql start

2. Select MySQL version as MariaDB

# /usr/share/lve/dbgovernor/db-select-mysql --mysql-version=mariadb100

MariaDB versions:

mariadb55 for MariaDB v5.5
mariadb100 for MariaDB v10.0
mariadb101 for MariaDB v10.1

3. Install MariaDB

# /usr/share/lve/dbgovernor/db-select-mysql --install-now

Final step is to recompile PHP and Apache in the server.

# /scripts/easyapache

 * Advantages of using MariaDB Server

1) Faster and safer replication.

2) Indexes for the MEMORY(HEAP) engine are faster.

3) CHECKSUM TABLE is faster.

4) MariaDB improved the performance of character set conversions.

5) Pool of Threads in MariaDB 5.1 and even better in MariaDB 5.5.

6) There are some improvements to the DBUG code to make its execution faster when debug is compiled in but not used.

7) Our use of the Aria storage engine enables faster complex queries.

8) The test suite has been extended and now runs much faster than before, even though it tests more things.


Cheap web Hosting


How to Installation Linux Malware Detect (Maldet) On Linux


Cheap reseller Hosting


Linux Malware Detect (Maldet) :

Linux Malware Detect (LMD) is a malware scanner for Linux released under the GNU GPLv2 license, that is designed around the threats faced in shared hosted environments. It uses threat data from network edge intrusion detection systems to extract malware that is actively being used in attacks and generates signatures for detection.

Follow the steps below to install maldet on your server.

A) Install maldet on your server

1) SSH to your server
2) Download the tar file and install it.

cd /usr/local/src/ && wget http://www.rfxn.com/downloads/maldetect-current.tar.gz && tar -xzvf maldetect-current.tar.gz && cd maldetect-* && sh install.sh

This will automatically install a cronjob inside /etc/cron.daily/maldet so a daily scan will be run for local cPanel or Plesk accounts.

B) Update to the latest version and virus signatures:

maldet -d && maldet -u

C) Run the first scan manually

Launch a background scan for all user’s public_html and public_ftp in all home directories, run the following command:

maldet -b –scan-all /home?/?/public_?

D) Verify the scan report

1) List all scan reports time and SCANID:

maldet –report list

2) Show a specific report details :

maldet –report SCANID

3) Show all scan details from log file:

grep “{scan}” /usr/local/maldetect/event_log

E) Clean the malicious files

The quarantine is disabled. You will have to launch it manually.

maldet -q SCANID


Cheap web Hosting