From 5ab04509c336bc32d3e086bebd8cc2af7e3e1456 Mon Sep 17 00:00:00 2001 From: David Mc Ken Date: Fri, 9 Dec 2022 07:03:07 -0400 Subject: [PATCH] Remove MySQL specific documentation --- ...ning-PowerDNS-Admin-on-Ubuntu-or-Debian.md | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/docs/wiki/install/Running-PowerDNS-Admin-on-Ubuntu-or-Debian.md b/docs/wiki/install/Running-PowerDNS-Admin-on-Ubuntu-or-Debian.md index 91738dd..d3bc834 100644 --- a/docs/wiki/install/Running-PowerDNS-Admin-on-Ubuntu-or-Debian.md +++ b/docs/wiki/install/Running-PowerDNS-Admin-on-Ubuntu-or-Debian.md @@ -5,29 +5,20 @@ First setup your database accordingly: ## Install required packages: -###Install Python 3 development package +### Install required packages for building python libraries from requirements.txt file ```bash -sudo apt install python3-dev +sudo apt install -y python3-dev git libsasl2-dev libldap2-dev libssl-dev libxml2-dev libxslt1-dev libxmlsec1-dev libffi-dev pkg-config apt-transport-https virtualenv build-essential curl ``` -###Install required packages for building python libraries from requirements.txt file - -```bash -sudo apt install -y git libmysqlclient-dev libsasl2-dev libldap2-dev libssl-dev libxml2-dev libxslt1-dev libxmlsec1-dev libffi-dev pkg-config apt-transport-https virtualenv build-essential curl -``` - -_**Note:**_ I am using MySQL Community server as the database backend. So `libmysqlclient-dev` is required. For MariaDB, and PostgreSQL the required package will be difference. - - -###Install NodeJs +### Install NodeJs ```bash curl -sL https://deb.nodesource.com/setup_14.x | bash - apt install -y nodejs ``` -###Install yarn to build asset files +### Install yarn to build asset files ```bash sudo curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - @@ -36,7 +27,7 @@ sudo apt update -y sudo apt install -y yarn ``` -###Checkout source code and create virtualenv +### Checkout source code and create virtualenv _**Note:**_ Please adjust `/opt/web/powerdns-admin` to your local web application directory ```bash