Question
How to install Web Presence Builder 17.8.12 Standalone in Plesk for CentOS 8/Debian 10?
Answer
Debian 10
- Connect to the server via SSH.
- Open/create the file
/etc/apt/sources.list
. In this example, we are using the vi editor.# vi /etc/apt/sources.list
- Add the content below then save and close the file.
deb http://download.plesk.com/WPB/Standalone/17.8.12 buster all
- Download the gpg file:
# wget http://download.plesk.com/WPB/Standalone/17.8.12/wpb.gpg
- Install the gpg file:
# apt-get install gnupg && apt-key add wpb.gpg
- Update package list for the newly added repository:
# apt-get update
- Start Web Presense Builder installation:
# apt-get install wpb
CentOS 8
- Connect to the server via SSH.
- Install EPEL repository:
# yum install epel-release
- Open/create the file
/etc/yum.repos.d/wpb.repo
. In this example, we are using the vi editor.# vi /etc/yum.repos.d/wpb.repo
- Add the content below then save and close the file.
[wpb_17_8_12-dist]
name=wpb 17.8.12
baseurl=http://download.plesk.com/WPB/Standalone/17.8.12/dist-rpm-CentOS-8-x86_64/
enabled=1
gpgcheck=0
[wpb_17_8_12-thirdparty]
name=wpb 17.8.12
baseurl=http://download.plesk.com/WPB/Standalone/17.8.12/thirdparty-rpm-CentOS-8-x86_64/
enabled=1
gpgcheck=0 - Update YUM cache:
# yum makecache
- Start Web Presense Builder installation:
# yum install wpb