Skip to main content

Plesk install on a Linux-based server using Command Line

On Linux-based Servers
To install Plesk in a typical configuration:
  1. Log in as root to the server.
  2. Make sure that wget is installed. To do this, issue the following command in the server console:
    • On Debian Linux: apt-get install wget
    • On RHEL and CentOS Linux: yum install wget
  3. Run Plesk installation with the following command:
    wget -O - http://installer.plesk.com/one-click-installer | sh
After installation has finished, you can log in to Plesk at the address https://<host-name-or-IP>:8443 using the username "root" and the root user's password.
To install Plesk with a custom selection of components:
  1. Log in as root to the server.
  2. Make sure that wget is installed. To do this, issue the following command in the server console:
    • On Debian Linux: apt-get install wget
    • On RHEL and CentOS Linux: yum install wget
  3. Download the installer script from http://installer.plesk.com/plesk-installer:
    wget http://installer.plesk.com/plesk-installer
  4. Run the installer: This one is auto select latest versions
    sh ./plesk-installer
  5. Select which versions you want to install on your server using this comand 
  6. To view all available Plesk versions: sh ./plesk-installer --all-versions

Comments

Post a Comment

Popular posts from this blog

HOT TO INSTALL EHCP ON UBUNTU 14.04 VPS

First Download the installation file using this command  wget http://www.ehcp.net/ehcp_latest.tgz Next, extract the package with this command tar -zxvf ehcp_latest.tgz Now lets install EHCP with its simple this command cd ehcp/ . /install .sh When you issued above order, it will then shows you EHCP establishment page with a group of data and guideline about what will occur straightaway. You should simply to peruse it precisely and continue by hitting Enter catch. Kindly do recollect that the introduce procedure will happen in approx 1 hour and it will solicit you arrangement from questions you need to reply (like characterizing your passwords for a few administrations). So hold tight and ensure you have continuous Web association. MYSQL SETUP Step 6 – Enter the password for the MySQL root user and hit OK then re-enter the password again. Step 7 – Next, EHCP will ask your name and your email. Enter it correctly Step 8 – Enter the password for My...

Mailwizz Ubuntu Xenial 16.04 Installation Instructions/Script of Nginx + PHP7-FPM + MariaDB

First zip up the contents of mailwizz/latest into a directory named 'mailwizz'. Unless you are running this manually and using the below script as instructions (which I recommend you do), you will want to save the code as a bash script (install.sh) and run on the server you wish to prepare. Move mailwizz.zip into the /tmp directory on your server - I use sFTP with Transmit because I am on mac, but if you're on Windows you can use putty or whatever - or optionally you can throw mailwizz.zip into your dropbox, copy the share/download URL and curl or wget the archive. If you're using the this as an actual install script with bash, you will want to run `chmod a+x install.sh`. Also, because I am terrible - you will want to switch to root before running this script (I know, I know, "one should never work in root" - what the f*** ever:rolleyes:) you may do so by running `sudo su -` and entering your root password if prompted. Alternatively - you may prepend `sudo `...