Ubuntu LTS 22.04 (MariaDB vs MySQL)

sigh

OK. Here’s a Q&A that took place before:

SO, what we’re all doing (those of us with 20.04 and MySQL) is waiting for the 7 installer. That way we can do a fresh install of 22.04, run the 7 installer, have MariaDB and simply migrate our databases over and be done with it.

You want to wing all of your stuff, fine. Knock yourself out. We’re waiting for the easy and new fix that will be bullet proof.

One of the first things these people will tell you is to NOT start changing all of your repos because you WILL break things in Virtualmin.

Hopefully you’ll get that.

That’s talking about migrating from MySQL to MariaDB on existing installs of course that will be difficult. There is no problem with installing MariaDB on a fresh install. That isn’t “winging” anything - VM6 fully supported MariaDB the only thing you had to do was install it manually when you set up the VPS.

And that is what this entire thread is all about.

Congratulations on FINALLY getting it.

So recently installed Ubuntu LTS 22.04 on a server… seems like virtualmin isn’t supported on it. Just wonder if maybe I should just install Ubuntu LTS 20 instead? Just rather get on with things but reading this thread it seemed like a beta might be available soon but how soon? next week end of next month?

If I go with Ubuntu LTS 20 will I be able to upgrade Ubuntu to LTS 22 easily? (yeah I’ve not used it before so not sure how feasible that is usually with Ubuntu)

The entire thread is about MariaDB, not Ubuntu 22.04, and about not having to do anything yourself?!

You’re crazy - MariaDB is fully supported as it is, all you have to do is install it on the server!!

Give me a sec I can test Ubuntu LTS 22.04 with the beta installer in a moment.

Okay do you want the good news or the bad news?

The good news is that you CAN install Virtualmin 7-RC8 fine on Ubuntu 22.04. The bad news is that there isn’t much point because there are literally no Virtualmin repos for it yet and it literally doesn’t set up any.

Wipe the system and install ubuntu 20.04 and use that for now (with the stable version 6.x installer).

You can upgrade Ubuntu in-place later it should be fine. Again there’s no problem with MariaDB… if that’s what you want just install it, I’ll test this in about an hour or so when I rebuild this particular VPS. :wink:

The main benefit to 22.04 is it comes with OpenSSL 3.0, nothing to do with whether you can run MariaDB or not!!

That’s not right? We tested yesterday and it was working on both Debian 11 and Ubuntu 22.04.

We’d need to see specific errors, if that is not the behavior you’re seeing.

I’ve already wiped that VPS and reverting back to 20.04 as we speak. I still have the tab open though:

Webmin     : 1.994
Usermin    : 1.840
Virtualmin : 7.1-1
Theme      : 19.93.1
OS         : Ubuntu Linux 22.04

Sorry I can’t be of more help there.

This, once again, is why we are waiting for the Virtulamin 7 installer.

Can you MAKE it work? Yes.

But if you’re doing a brand new install, why not wait to where you don’t have to club yourself over the head trying to make it work?

It’s literally impossible for it to have Webmin/Virtualmin, etc. if it didn’t configure the repos. There is no way for software to get installed if it doesn’t setup the repositories. We install everything via the system package manager.

There may be a problem (in the listed package repositories, maybe, I don’t know, I’ll have to check). But, it’s not that the install script does not configure our software repositories (and there’s only one Virtualmin repo now for Ubuntu and Debian).

Look in the file /etc/apt/sources.list.d/virtualmin.list

That’s where our repo is configured. Just one line is all it needs.

Well it installed fine on Ubuntu 2022… I had already previously installed mariadb, post install picked it up and its all working good so far.

Why? The beta Virtualmin 7 installer uses Mariadb for all supported distros, including Ubuntu. That was only a useful thing to do if you wanted Mariadb and were using the Virtualmin 6 installer.

1 Like

because I was wanting to use mariadb on ubuntu22 before virtualmin was even installed… was just stating having it already installed caused no issues

Yeah it seems like a bad idea to install something that VM uses/manages prior to installing VM, that’s bound to break the system or to cause issues.

The issue is that VM needs to be installed on a virgin OS before you install anything. I just tested that idea with the version 6 installer and as expected VM uninstalls it and installs MySQL (and will just about break the system too). To install MariaDB on 20.04 with the version 6 installer you first install Virtualmin, then remove MySQL, install MaraDB, re-check configuration, and then run the post-install wizard in Virtualmin.

The only things that are safe to install before you install Virtualmin is software that has nothing to do with VM or Webmin that it doesn’t know about and won’t touch, and I imagine that’s much the same for any server control panel.

If you’re intending to use your VPS in production or you need stability, I’d recommend Ubuntu 20.04 LTS, and upgrade later once you know that 22.04 is fully supported and can be safely upgraded.

The version 6 installation route for Ubuntu 20.04 LTS + MariaDB + PHP 8.1, I’ve just tested this fully on a fresh VPS:

sudo add-apt-repository ppa:ondrej/php
sudo add-apt-repository ppa:ondrej/nginx
sudo apt update
apt list --upgradable
sudo apt full-upgrade
sudo /bin/rm -v /etc/ssh/ssh_host_*
sudo dpkg-reconfigure openssh-server
sudo timedatectl set-timezone Australia/Sydney
reboot
wget https://software.virtualmin.com/gpl/scripts/install.sh
sudo /bin/sh install.sh -m -f -n host.example.org -b LEMP
sudo systemctl stop mysql
sudo apt purge mysql-server mysql-client mysql-common mysql-server-core-* mysql-client-core-*
sudo rm -Rf /etc/mysql /var/lib/mysql /var/log/mysql
sudo apt autoremove
echo "/usr/sbin/mysqld { }" > /etc/apparmor.d/usr.sbin.mysqld
apparmor_parser -v -R /etc/apparmor.d/usr.sbin.mysqld
sudo apt install mariadb-server
sudo apt-get install php8.1-{curl,pdo,fpm,zip,gd,xml,xmlrpc,mysql,common,mbstring,imagick}
sudo apt-get purge php5.6-{cli,pdo,fpm,zip,gd,xml,mysql,cgi} php7.*-{cli,pdo,fpm,zip,gd,xml,mysql,cgi} php8.0-{cli,pdo,fpm,zip,gd,xml,mysql,cgi}
sudo apt-get autoclean
sudo apt-get autoremove
reboot

If you get a prompt asking if you wish to overwrite /etc/apparmor.d/usr.sbin.mysqld when you install MariaDB select Yes. Because I added the ppa:ondrej/php repo before installing VM it installed every version of PHP found there from 5.6 to 8.1, if you prefer you can install VM first then add the repo and install php 8.1 with the same command as above and you should only need to remove version 7.4 in that case which is the version provided by the Focal repo (Ubuntu 20.04’s repo). You can simplify the steps above of course if you want (and note I’m installing the minimal version with LEMP stack with my install command).

Now before you run the post-install wizard in Virtualmin run “Re-Check Configuration”, reboot the VPS (this may not be strictly necessary but it won’t hurt), and then run the post-install wizard.


No, there are Virtualmin 7 repos already. Installing Ubuntu 22.04 will work just fine, and recommend over installing Ubuntu 20.04.


@Valeyard simply remove manually /etc/apt/sources.list.d/virtualmin.list file and run virtualmin-install-rc8.sh script with -s flag to set up the repos only, of course if you are sure that your existing installation really defaults to MariaDB and not MySQL.

Sorry to clarify I can see the repo exists (a combined one), but it didn’t set up the repo properly when I ran it yesterday.

Installing MariaDB in the way I described isn’t a big deal. I know it looks like some hacked workaround, but it’s really not it’s just about providing VM the software you want at the time that you set it up and then VM will still set everything up like normal, make a root MariaDB password etc:

And then create users and databases just fine when you set up the virtual servers. Similar thing with the PHP versions - if you needed both php8.0 and php8.1 that’d be fine, but you’re best off doing what I do and removing the previous version/versions that you don’t need before completing the setup. On Ubuntu 22.04 it’s the other way around, you would need to install the older version/versions to use them as it provides 8.1 (unless you add the ppa:ondrej/php repo beforehand, but then it installs all versions 5.6-8.1).

What is the output of the following command on your system:

apt-cache show virtualmin-lamp-stack

The output of apt-cache show virtualmin-lemp-stack

Package: virtualmin-lemp-stack
Priority: optional
Section: admin
Installed-Size: 44
Maintainer: Joe Cooper <joe@virtualmin.com>
Architecture: all
Version: 6.1.4+ubuntu-20.04
Replaces: virtualmin-base
Depends: bsdutils, libcrypt-ssleay-perl, unzip, zip, fcgiwrap, openssl, python3, nginx-full | nginx-extras, webmin-virtualmin-nginx, webmin-virtualmin-nginx-ssl, php-pear, php-cgi, php-cli, php-fpm, php-mysql, ntpdate, postfix, postfix-pcre
Recommends: ruby, ri, bind9, spamassassin, spamc, procmail, procmail-wrapper, libdbd-mysql-perl, quota, iptables, firewalld, mysql-server, mysql-client, mysql-common, awstats, webalizer, dovecot-core, dovecot-imapd, dovecot-pop3d, proftpd-basic, clamav-base, clamav-daemon, clamav, clamav-freshclam, clamav-docs, clamav-testfiles, libsasl2-2, libsasl2-modules, sasl2-bin, jailkit, fail2ban, postgrey, php-mbstring, libconfig-inifiles-perl, milter-greylist, unrar, p7zip, xz-utils, etckeeper, certbot, libauthen-oath-perl
Suggests: postgresql, postgresql-client, libdbd-pg-perl, libpg-perl
Filename: pool/main/v/virtualmin-lemp-stack/virtualmin-lemp-stack_6.1.4+ubuntu-20.04_all.deb
Size: 13800
MD5sum: 15f508e784b04b8698b8efca38e2a676
SHA1: fc7021f7a80a0b84436b6ae71ba35d95e6480e15
SHA256: bbeed655321d6f72f0b5b7cf64a98e7027cd2723335369b91c17cf0a9f18a09f
SHA512: 569dee4ef0864ac9134810016da100f41c174ff38aad1ae55b83dc9ac92ce8d65ae7c5efb1fa4cea0c04aed9cbb84d56e6d976b66e48d8513f0fbaa76f6dee5b
Description: Metapackage for Virtualmin LEMP Stack.
 This is a fake package to depend on packages for a LEMP Stack.
 .
 This packages depends on a variety of packages needed for a full LEMP
 stack. When combined with virtualmin-core, installs everything needed
 for a complete web hosting system with control panel.
 .
 This file auto-generated by generate-lemp.sh
Description-md5: 0ed6deddf3ac0c72488e72f24537f36f
Homepage: https://github.com/virtualmin/virtualmin-lemp-stack-ubu
Multi-Arch: foreign

Package: virtualmin-lemp-stack
Priority: optional
Section: admin
Installed-Size: 44
Maintainer: Joe Cooper <joe@virtualmin.com>
Architecture: all
Version: 6.1.3+ubuntu-20.04
Replaces: virtualmin-base
Depends: bsdutils, libcrypt-ssleay-perl, unzip, zip, fcgiwrap, openssl, python3, nginx-full | nginx-extras, webmin-virtualmin-nginx, webmin-virtualmin-nginx-ssl, php-pear, php-cgi, php-cli, php-fpm, php-mysql, ntpdate, postfix, postfix-pcre
Recommends: ruby, ri, bind9, spamassassin, spamc, procmail, procmail-wrapper, libdbd-mysqlb-perl, quota, iptables, firewalld, mariadb-server, mariadb-client, mariadb-common, awstats, webalizer, dovecot-core, dovecot-imapd, dovecot-pop3d, proftpd-basic, clamav-base, clamav-daemon, clamav, clamav-freshclam, clamav-docs, clamav-testfiles, libsasl2-2, libsasl2-modules, sasl2-bin, jailkit, fail2ban, postgrey, php-mbstring, libconfig-inifiles-perl, milter-greylist, unrar, p7zip, xz-utils, etckeeper, certbot, libauthen-oath-perl
Suggests: postgresql, postgresql-client, libdbd-pg-perl, libpg-perl
Filename: pool/main/v/virtualmin-lemp-stack/virtualmin-lemp-stack_6.1.3+ubuntu-20.04_all.deb
Size: 13800
MD5sum: 310ad9756495ca86cc3a08b107ae5e62
SHA1: 21ff1e4ed8e9c1dcc194ad387ae08e49301d968c
SHA256: 8b5abd524ca22de1beaa168b220ffb3241320187e0592c5f7c35147eeda036b3
SHA512: adcc5c028fdec50262bcbbc8273cca59c850cb56a001e16550ec6f02ac5bfd56161216b20eba565d4869f53fe5df5239b51ed71367f842b7d37f0cf2d1bdd345
Description: Metapackage for Virtualmin LEMP Stack.
 This is a fake package to depend on packages for a LEMP Stack.
 .
 This packages depends on a variety of packages needed for a full LEMP
 stack. When combined with virtualmin-core, installs everything needed
 for a complete web hosting system with control panel.
 .
 This file auto-generated by generate-lemp.sh
Description-md5: 0ed6deddf3ac0c72488e72f24537f36f
Homepage: https://github.com/virtualmin/virtualmin-lemp-stack-ubu
Multi-Arch: foreign

Package: virtualmin-lemp-stack
Priority: optional
Section: admin
Installed-Size: 44
Maintainer: Joe Cooper <joe@virtualmin.com>
Architecture: all
Version: 6.1.2+ubuntu-20.04
Replaces: virtualmin-base
Depends: bsdutils, libcrypt-ssleay-perl, unzip, zip, fcgiwrap, openssl, python3, nginx-full | nginx-extras, webmin-virtualmin-nginx, webmin-virtualmin-nginx-ssl, php-pear, php-cgi, php-cli, php-fpm, php-mysql, ntpdate, postfix, postfix-pcre
Recommends: ruby, ri, bind9, spamassassin, spamc, procmail, procmail-wrapper, libdbd-mariadb-perl, quota, iptables, firewalld, mariadb-server, mariadb-client, mariadb-common, awstats, webalizer, dovecot-core, dovecot-imapd, dovecot-pop3d, proftpd-basic, clamav-base, clamav-daemon, clamav, clamav-freshclam, clamav-docs, clamav-testfiles, libsasl2-2, libsasl2-modules, sasl2-bin, jailkit, fail2ban, postgrey, php-mbstring, libconfig-inifiles-perl, milter-greylist, unrar, p7zip, xz-utils, etckeeper, certbot, libauthen-oath-perl
Suggests: postgresql, postgresql-client, libdbd-pg-perl, libpg-perl
Filename: pool/main/v/virtualmin-lemp-stack/virtualmin-lemp-stack_6.1.2+ubuntu-20.04_all.deb
Size: 13818
MD5sum: d133bbca731025c4e37c857af49d828e
SHA1: 0d318976d5ae977b0248fb7e7cd52f11dfae8d4f
SHA256: 603451d79848fa94d53e1186b4fa2031c74d6dd030266acbf68c5489cf029d9f
SHA512: 5ae52d476b2ea5d254cf917486f26451a2f820c8e5e036654aa58dcf62adad33dccaa44c10940e2e6212c23b4fb8506e50dbe3d308cb29676733e33d87079089
Description: Metapackage for Virtualmin LEMP Stack.
 This is a fake package to depend on packages for a LEMP Stack.
 .
 This packages depends on a variety of packages needed for a full LEMP
 stack. When combined with virtualmin-core, installs everything needed
 for a complete web hosting system with control panel.
 .
 This file auto-generated by generate-lemp.sh
Description-md5: 0ed6deddf3ac0c72488e72f24537f36f
Homepage: https://github.com/virtualmin/virtualmin-lemp-stack-ubu
Multi-Arch: foreign

Package: virtualmin-lemp-stack
Priority: optional
Section: admin
Installed-Size: 44
Maintainer: Joe Cooper <joe@virtualmin.com>
Architecture: all
Version: 6.1.1+ubuntu-20.04
Replaces: virtualmin-base
Depends: bsdutils, libcrypt-ssleay-perl, unzip, zip, fcgiwrap, openssl, python3, nginx-full, webmin-virtualmin-nginx, webmin-virtualmin-nginx-ssl, php-pear, php-cgi, php-cli, php-fpm, php-mysql, ntpdate, postfix, postfix-pcre
Recommends: ruby, ri, bind9, spamassassin, spamc, procmail, procmail-wrapper, libdbd-mysql-perl, quota, iptables, firewalld, mysql-server, mysql-client, mysql-common, awstats, webalizer, dovecot-core, dovecot-imapd, dovecot-pop3d, proftpd-basic, clamav-base, clamav-daemon, clamav, clamav-freshclam, clamav-docs, clamav-testfiles, libsasl2-2, libsasl2-modules, sasl2-bin, jailkit, fail2ban, postgrey, php-mbstring, libconfig-inifiles-perl, milter-greylist, unrar, p7zip, xz-utils, etckeeper, certbot, libauthen-oath-perl
Suggests: postgresql, postgresql-client, libdbd-pg-perl, libpg-perl
Filename: pool/main/v/virtualmin-lemp-stack/virtualmin-lemp-stack_6.1.1+ubuntu-20.04_all.deb
Size: 13786
MD5sum: 79a7fbea656436640d8a4ff269f4be3c
SHA1: e32c71539f5e8fc9aae84383a215340e32102995
SHA256: 2e7a64934520596dafb74d762aa5807ecfafa0e7e1e5e2cc5deb2d519e045ec3
SHA512: 8bb1573b198067b24224c14b575b7f9d43f2c59336c9ff24d327639b780bb74bb69accbd7cac4654b78ac927ccbd6bf59bc472b22c981cfa25e3b76e16340b03
Description: Metapackage for Virtualmin LEMP Stack.
 This is a fake package to depend on packages for a LEMP Stack.
 .
 This packages depends on a variety of packages needed for a full LEMP
 stack. When combined with virtualmin-core, installs everything needed
 for a complete web hosting system with control panel.
 .
 This file auto-generated by generate-lemp.sh
Description-md5: 0ed6deddf3ac0c72488e72f24537f36f
Homepage: https://github.com/virtualmin/virtualmin-lemp-stack-ubu
Multi-Arch: foreign

Package: virtualmin-lemp-stack
Priority: optional
Section: admin
Installed-Size: 44
Maintainer: Joe Cooper <joe@virtualmin.com>
Architecture: all
Version: 6.1.0+ubuntu-20.04
Replaces: virtualmin-base
Depends: bsdutils, libcrypt-ssleay-perl, unzip, zip, fcgiwrap, openssl, python3, nginx-full, webmin-virtualmin-nginx, webmin-virtualmin-nginx-ssl, php-pear, php, php-cgi, php-cli, php-fpm, php-mysql, ntpdate, postfix, postfix-pcre
Recommends: ruby, ri, bind9, spamassassin, spamc, procmail, procmail-wrapper, libdbd-mysql-perl, quota, iptables, firewalld, mysql-server, mysql-client, mysql-common, awstats, webalizer, dovecot-core, dovecot-imapd, dovecot-pop3d, proftpd-basic, clamav-base, clamav-daemon, clamav, clamav-freshclam, clamav-docs, clamav-testfiles, libsasl2-2, libsasl2-modules, sasl2-bin, jailkit, fail2ban, postgrey, php-mbstring, libconfig-inifiles-perl, milter-greylist, unrar, p7zip, xz-utils, etckeeper, certbot
Suggests: postgresql, postgresql-client, libdbd-pg-perl, libpg-perl
Filename: pool/main/v/virtualmin-lemp-stack/virtualmin-lemp-stack_6.1.0+ubuntu-20.04_all.deb
Size: 13768
MD5sum: 4103a18a977e23b779a73ce31a625aaf
SHA1: 4eeead25cd8b39d351c407c677ea722585e22db0
SHA256: 86691805cba38b7f6c1e300734b5c141b5198930cc3531f3972975fd313cba4e
SHA512: db1e80986dc56d59562781641367f16447a93d85b9b511864e040064a73ada619d7fe8708a14bd867718c0c22da9dea3689f320382fccebe8eda781f4d0ea5e1
Description: Metapackage for Virtualmin LEMP Stack.
 This is a fake package to depend on packages for a LEMP Stack.
 .
 This packages depends on a variety of packages needed for a full LEMP
 stack. When combined with virtualmin-core, installs everything needed
 for a complete web hosting system with control panel.
 .
 This file auto-generated by generate-lemp.sh
 .
 This file auto-generated by generate-lemp.sh
Description-md5: a1ba3522fc9217ba3edd9893d0b8c6fd
Homepage: https://github.com/virtualmin/virtualmin-lemp-stack-ubu
Multi-Arch: foreign

Package: virtualmin-lemp-stack
Priority: optional
Section: admin
Installed-Size: 44
Maintainer: Joe Cooper <joe@virtualmin.com>
Architecture: all
Version: 6.0.13+ubuntu-18.04
Replaces: virtualmin-base
Depends: bsdutils, libcrypt-ssleay-perl, unzip, zip, fcgiwrap, openssl, python, nginx-full | nginx-extras, webmin-virtualmin-nginx, webmin-virtualmin-nginx-ssl, php-pear, php-cgi, php-cli, php-fpm, ntpdate, postfix, postfix-pcre, php7.2-cgi, php7.2-fpm, php7.2-cli
Recommends: ruby, irb, rdoc, ri, bind9, spamassassin, spamc, procmail, procmail-wrapper, libdbd-mysql-perl, quota, iptables, firewalld, mysql-server, mysql-client, mysql-common, awstats, webalizer, dovecot-core, dovecot-imapd, dovecot-pop3d, proftpd, clamav-base, clamav-daemon, clamav, clamav-freshclam, clamav-docs, clamav-testfiles, libsasl2-2, libsasl2-modules, sasl2-bin, php5-mysql, jailkit, fail2ban, postgrey, php-mysql, php-mbstring, php7.2-mysql, php7.2-mbstring, libconfig-inifiles-perl, milter-greylist, unrar, p7zip, xz-utils, etckeeper, certbot, libauthen-oath-perl
Suggests: postgresql, postgresql-client, libdbd-pg-perl, libpg-perl
Filename: pool/main/v/virtualmin-lemp-stack/virtualmin-lemp-stack_6.0.13+ubuntu-18.04_all.deb
Size: 13848
MD5sum: cfc3453ef8b832bb225adec88a2beaf5
SHA1: 6467dfd876bd0c3cd35d131c80d4f2bcb382414a
SHA256: 340f413381cf42e106c54e590419028736b6a97f2dadb63fb80341d00d91c457
SHA512: 57d0156e8a470e7d6bd38b7efb886b0f93d00e237fc3bd34466011b6af95455b44c152270288292453271d9915b222a385d9ed3c0c5b79e650e16dded258b883
Description: Metapackage for Virtualmin LEMP Stack.
 This is a fake package to depend on packages for a LEMP Stack.
 .
 This packages depends on a variety of packages needed for a full LEMP
 stack. When combined with virtualmin-core, installs everything needed
 for a complete web hosting system with control panel.
 .
 This file auto-generated by generate-lemp.sh
Description-md5: 0ed6deddf3ac0c72488e72f24537f36f
Homepage: https://github.com/virtualmin/virtualmin-lemp-stack-ubu
Multi-Arch: foreign

Package: virtualmin-lemp-stack
Priority: optional
Section: admin
Installed-Size: 44
Maintainer: Joe Cooper <joe@virtualmin.com>
Architecture: all
Version: 6.0.12+ubuntu-18.04
Replaces: virtualmin-base
Depends: bsdutils, libcrypt-ssleay-perl, unzip, zip, fcgiwrap, openssl, python, nginx-full | nginx-extras, webmin-virtualmin-nginx, webmin-virtualmin-nginx-ssl, php-pear, php-cgi, php-cli, php-fpm, ntpdate, postfix, postfix-pcre, php7.2-cgi, php7.2-fpm, php7.2-cli
Recommends: ruby, irb, rdoc, ri, bind9, spamassassin, spamc, procmail, procmail-wrapper, libdbd-mysql-perl, quota, iptables, firewalld, mysqlb-server, mariadb-client, mariadb-common, awstats, webalizer, dovecot-core, dovecot-imapd, dovecot-pop3d, proftpd, clamav-base, clamav-daemon, clamav, clamav-freshclam, clamav-docs, clamav-testfiles, libsasl2-2, libsasl2-modules, sasl2-bin, php5-mysql, jailkit, fail2ban, postgrey, php-mysql, php-mbstring, php7.2-mysql, php7.2-mbstring, libconfig-inifiles-perl, milter-greylist, unrar, p7zip, xz-utils, etckeeper, certbot, libauthen-oath-perl
Suggests: postgresql, postgresql-client, libdbd-pg-perl, libpg-perl
Filename: pool/main/v/virtualmin-lemp-stack/virtualmin-lemp-stack_6.0.12+ubuntu-18.04_all.deb
Size: 13866
MD5sum: 0494b495851753628d3a1d7b9ee1005a
SHA1: 8d8627b85aedfe0e82b9d3e37f67ee9412ea24dc
SHA256: fc78318cf224a6724a7ae7d753e9ebe2c4f1464287033f0314342a56233974e0
SHA512: 592d7758e3ee90dc59197253a981c62ea1bd659652b904e795cb4344a4f149bf145a15f664daabfd6670147ab4c7ada9529cbeac8bccd544204fba222aa659a7
Description: Metapackage for Virtualmin LEMP Stack.
 This is a fake package to depend on packages for a LEMP Stack.
 .
 This packages depends on a variety of packages needed for a full LEMP
 stack. When combined with virtualmin-core, installs everything needed
 for a complete web hosting system with control panel.
 .
 This file auto-generated by generate-lemp.sh
Description-md5: 0ed6deddf3ac0c72488e72f24537f36f
Homepage: https://github.com/virtualmin/virtualmin-lemp-stack-ubu
Multi-Arch: foreign

Package: virtualmin-lemp-stack
Priority: optional
Section: admin
Installed-Size: 44
Maintainer: Joe Cooper <joe@virtualmin.com>
Architecture: all
Version: 6.0.11+ubuntu-18.04
Replaces: virtualmin-base
Depends: bsdutils, libcrypt-ssleay-perl, unzip, zip, fcgiwrap, openssl, python, nginx-full | nginx-extras, webmin-virtualmin-nginx, webmin-virtualmin-nginx-ssl, php-pear, php-cgi, php-cli, php-fpm, ntpdate, postfix, postfix-pcre, php7.2-cgi, php7.2-fpm, php7.2-cli
Recommends: ruby, irb, rdoc, ri, bind9, spamassassin, spamc, procmail, procmail-wrapper, libdbd-mysql-perl, quota, iptables, firewalld, mariadb-server, mariadb-client, mariadb-common, awstats, webalizer, dovecot-core, dovecot-imapd, dovecot-pop3d, proftpd, clamav-base, clamav-daemon, clamav, clamav-freshclam, clamav-docs, clamav-testfiles, libsasl2-2, libsasl2-modules, sasl2-bin, php5-mysql, jailkit, fail2ban, postgrey, php-mysql, php-mbstring, php7.2-mysql, php7.2-mbstring, libconfig-inifiles-perl, milter-greylist, unrar, p7zip, xz-utils, etckeeper, certbot, libauthen-oath-perl
Suggests: postgresql, postgresql-client, libdbd-pg-perl, libpg-perl
Filename: pool/main/v/virtualmin-lemp-stack/virtualmin-lemp-stack_6.0.11+ubuntu-18.04_all.deb
Size: 13856
MD5sum: 965b7617d6a9a1121bb8329f14b5a73c
SHA1: 797c93af8370c86fd29ef356fbb4ef3be8f54fe8
SHA256: 9e6f82891d093112c77b3aa900c79c929926deed2727ec51ccc52ba21d131a28
SHA512: beae28f9d6f3280ea7499d676d28473447a3149e3bdd30385e6ccd44cab349c672396fcf0175df1c003f77f96858c0862f3b6beec98b86fb8a4b5529b77648df
Description: Metapackage for Virtualmin LEMP Stack.
 This is a fake package to depend on packages for a LEMP Stack.
 .
 This packages depends on a variety of packages needed for a full LEMP
 stack. When combined with virtualmin-core, installs everything needed
 for a complete web hosting system with control panel.
 .
 This file auto-generated by generate-lemp.sh
Description-md5: 0ed6deddf3ac0c72488e72f24537f36f
Homepage: https://github.com/virtualmin/virtualmin-lemp-stack-ubu
Multi-Arch: foreign

Package: virtualmin-lemp-stack
Priority: optional
Section: admin
Installed-Size: 44
Maintainer: Joe Cooper <joe@virtualmin.com>
Architecture: all
Version: 6.0.10+ubuntu-18.04
Replaces: virtualmin-base
Depends: bsdutils, libcrypt-ssleay-perl, unzip, zip, fcgiwrap, openssl, python, nginx-full, webmin-virtualmin-nginx, webmin-virtualmin-nginx-ssl, php-pear, php-cgi, php-cli, php-fpm, ntpdate, postfix, postfix-pcre, php7.2-cgi, php7.2-fpm, php7.2-cli
Recommends: ruby, irb, rdoc, ri, bind9, spamassassin, spamc, procmail, procmail-wrapper, libdbd-mysql-perl, quota, iptables, firewalld, mysql-server, mysql-client, mysql-common, awstats, webalizer, dovecot-core, dovecot-imapd, dovecot-pop3d, proftpd, clamav-base, clamav-daemon, clamav, clamav-freshclam, clamav-docs, clamav-testfiles, libsasl2-2, libsasl2-modules, sasl2-bin, php5-mysql, jailkit, fail2ban, postgrey, php-mysql, php-mbstring, php7.2-mysql, php7.2-mbstring, libconfig-inifiles-perl, milter-greylist, unrar, p7zip, xz-utils, etckeeper, certbot, libauthen-oath-perl
Suggests: postgresql, postgresql-client, libdbd-pg-perl, libpg-perl
Filename: pool/main/v/virtualmin-lemp-stack/virtualmin-lemp-stack_6.0.10+ubuntu-18.04_all.deb
Size: 13848
MD5sum: dae8868d9a62f0bf443988b1bb658c5c
SHA1: 86953c6f57d8d1daeb10ec25cfaf9a4bcedd800b
SHA256: f4a0f8b21a5ed4cbea916b9bfddde12a3909f5b2c69ca8e5ac1f1e8d3af138c7
SHA512: f37abaa414097bcf3f2a8570624202dff64d49b5c9629f9cc98484b225400eb421a41743b307df3d36867043c2b578019d2f2dfe44b138970d0621e826817f9c
Description: Metapackage for Virtualmin LEMP Stack.
 This is a fake package to depend on packages for a LEMP Stack.
 .
 This packages depends on a variety of packages needed for a full LEMP
 stack. When combined with virtualmin-core, installs everything needed
 for a complete web hosting system with control panel.
 .
 This file auto-generated by generate-lemp.sh
Description-md5: 0ed6deddf3ac0c72488e72f24537f36f
Homepage: https://github.com/virtualmin/virtualmin-lemp-stack-ubu
Multi-Arch: foreign

Package: virtualmin-lemp-stack
Priority: optional
Section: admin
Installed-Size: 44
Maintainer: Joe Cooper <joe@virtualmin.com>
Architecture: all
Version: 6.0.10+ubuntu-16.04
Replaces: virtualmin-base
Depends: bsdutils, libcrypt-ssleay-perl, unzip, zip, fcgiwrap, openssl, python, nginx-full, webmin-virtualmin-nginx, webmin-virtualmin-nginx-ssl, php-pear, php-cgi, php-cli, php-fpm, ntpdate, postfix, postfix-pcre, php7.0-cgi, php7.0-fpm, php7.0-cli
Recommends: ruby, irb, rdoc, ri, bind9, spamassassin, spamc, procmail, procmail-wrapper, libdbd-mysql-perl, quota, iptables, firewalld, mysql-server, mysql-client, mysql-common, awstats, webalizer, dovecot-core, dovecot-imapd, dovecot-pop3d, proftpd, clamav-base, clamav-daemon, clamav, clamav-freshclam, clamav-docs, clamav-testfiles, libsasl2-2, libsasl2-modules, sasl2-bin, php5-mysql, jailkit, fail2ban, postgrey, php-mysql, php-mbstring, php7.0-mysql, php7.0-mbstring, libconfig-inifiles-perl, milter-greylist, unrar, p7zip, xz-utils, etckeeper
Suggests: postgresql, postgresql-client, libdbd-pg-perl, libpg-perl
Filename: pool/main/v/virtualmin-lemp-stack/virtualmin-lemp-stack_6.0.10+ubuntu-16.04_all.deb
Size: 13808
MD5sum: 047c50c1c96d77a06278e219aaf66d4d
SHA1: 0015fd06179a85f40b1e40e7244725a39c7b6ccf
SHA256: 345e9e61551a71a75a04cac4a4b5c7e8c004f7961abb379aa573fceced9c087c
SHA512: fc3059fe2396ba75b816efe3239793df6357e8be2b949bd014fcc614a0728f9a73ec783d900a8a6bc7060857de001f3c7f9dfeb81141374f4c2a63bb9f5ef941
Description: Metapackage for Virtualmin LEMP Stack.
 This is a fake package to depend on packages for a LEMP Stack.
 .
 This packages depends on a variety of packages needed for a full LEMP
 stack. When combined with virtualmin-core, installs everything needed
 for a complete web hosting system with control panel.
 .
 This file auto-generated by generate-lemp.sh
Description-md5: 0ed6deddf3ac0c72488e72f24537f36f
Homepage: https://github.com/virtualmin/virtualmin-lemp-stack-ubu
Multi-Arch: foreign

Package: virtualmin-lemp-stack
Priority: optional
Section: admin
Installed-Size: 44
Maintainer: Joe Cooper <joe@virtualmin.com>
Architecture: all
Version: 6.0.9+ubuntu-18.04
Replaces: virtualmin-base
Depends: bsdutils, libcrypt-ssleay-perl, unzip, zip, fcgiwrap, openssl, python, nginx-full, webmin-virtualmin-nginx, webmin-virtualmin-nginx-ssl, php-pear, php-cgi, php-cli, php-fpm, ntpdate, postfix, postfix-pcre, php7.2-cgi, php7.2-fpm, php7.2-cli
Recommends: ruby, irb, rdoc, ri, bind9, spamassassin, spamc, procmail, procmail-wrapper, libdbd-mysql-perl, quota, iptables, firewalld, mysql-server, mysql-client, mysql-common, awstats, webalizer, dovecot-core, dovecot-imapd, dovecot-pop3d, proftpd, clamav-base, clamav-daemon, clamav, clamav-freshclam, clamav-docs, clamav-testfiles, libsasl2-2, libsasl2-modules, sasl2-bin, php5-mysql, jailkit, fail2ban, postgrey, php-mysql, php-mbstring, php7.2-mysql, php7.2-mbstring, libconfig-inifiles-perl, milter-greylist, unrar, p7zip, xz-utils, etckeeper, certbot, libauthen-oath-perl
Suggests: postgresql, postgresql-client, libdbd-pg-perl, libpg-perl
Filename: pool/main/v/virtualmin-lemp-stack/virtualmin-lemp-stack_6.0.9+ubuntu-18.04_all.deb
Size: 13840
MD5sum: c1269f82e96905f8abc9ffb0d6928ffe
SHA1: 4dac4be06ff003c324b529c72c179ad6de353e31
SHA256: 3810eece198e8577c0dd465cfd65f6c4da2d42d3f4e550b9504392514d338856
SHA512: ab1b997162043d56dffcc9e664966e0172356540881fdcfa63e665d1e5755383c4b8d96bd78e99ee46494696269111c32726efe5e1d989af0c2a731b5b504284
Description: Metapackage for Virtualmin LEMP Stack.
 This is a fake package to depend on packages for a LEMP Stack.
 .
 This packages depends on a variety of packages needed for a full LEMP
 stack. When combined with virtualmin-core, installs everything needed
 for a complete web hosting system with control panel.
 .
 This file auto-generated by generate-lemp.sh
Description-md5: 0ed6deddf3ac0c72488e72f24537f36f
Homepage: https://github.com/virtualmin/virtualmin-lemp-stack-ubu
Multi-Arch: foreign

Package: virtualmin-lemp-stack
Priority: optional
Section: admin
Installed-Size: 44
Maintainer: Joe Cooper <joe@virtualmin.com>
Architecture: all
Version: 6.0.9+ubuntu-16.04
Replaces: virtualmin-base
Depends: bsdutils, libcrypt-ssleay-perl, unzip, zip, fcgiwrap, openssl, python, nginx-full, webmin-virtualmin-nginx, webmin-virtualmin-nginx-ssl, php-pear, php-cgi, php-cli, php-fpm, ntpdate, postfix, postfix-pcre, php7.0-cgi, php7.0-fpm, php7.0-cli
Recommends: ruby, irb, rdoc, ri, bind9, spamassassin, spamc, procmail, procmail-wrapper, libdbd-mysql-perl, quota, iptables, firewalld, mysql-server, mysql-client, mysql-common, awstats, webalizer, dovecot-core, dovecot-imapd, dovecot-pop3d, proftpd, clamav-base, clamav-daemon, clamav, clamav-freshclam, clamav-docs, clamav-testfiles, libsasl2-2, libsasl2-modules, sasl2-bin, php5-mysql, jailkit, fail2ban, postgrey, php-mysql, php-mbstring, php7.0-mysql, php7.0-mbstring, libconfig-inifiles-perl, milter-greylist, unrar, p7zip, xz-utils, etckeeper
Suggests: postgresql, postgresql-client, libdbd-pg-perl, libpg-perl
Filename: pool/main/v/virtualmin-lemp-stack/virtualmin-lemp-stack_6.0.9+ubuntu-16.04_all.deb
Size: 13806
MD5sum: e01e82cf8168c2f770f94357f85c48c2
SHA1: 9a7ee82577a185ea29ed0e4d26c294ba8a576fe5
SHA256: cfb1e49ea5ea4fb52ec6bc549f0c08057828c02171f2884bf195f6a8303a824b
SHA512: a0e1c50a38c2e9aa50c66f07179baaad016d67142be08b7bf4fa92776783a10c774d776ec362010d493db7183b6a804e0da55897b974e087289e86e68b0a88c9
Description: Metapackage for Virtualmin LEMP Stack.
 This is a fake package to depend on packages for a LEMP Stack.
 .
 This packages depends on a variety of packages needed for a full LEMP
 stack. When combined with virtualmin-core, installs everything needed
 for a complete web hosting system with control panel.
 .
 This file auto-generated by generate-lemp.sh
Description-md5: 0ed6deddf3ac0c72488e72f24537f36f
Homepage: https://github.com/virtualmin/virtualmin-lemp-stack-ubu
Multi-Arch: foreign

Package: virtualmin-lemp-stack
Priority: optional
Section: admin
Installed-Size: 44
Maintainer: Joe Cooper <joe@virtualmin.com>
Architecture: all
Version: 6.0.9+ubuntu-14.04
Replaces: virtualmin-base
Depends: bsdutils, libcrypt-ssleay-perl, unzip, zip, fcgiwrap, openssl, python, nginx-full, webmin-virtualmin-nginx, webmin-virtualmin-nginx-ssl, php-pear, php, php-cgi, php-cli, php-fpm, ntpdate, postfix, postfix-pcre, php7.0, php7.0-cgi, php7.0-fpm, php7.0-cli
Recommends: ruby, irb, rdoc, ri, bind9, spamassassin, spamc, procmail, procmail-wrapper, libdbd-mysql-perl, quota, iptables, mysql-server, mysql-client, mysql-common, awstats, webalizer, dovecot-core, dovecot-imapd, dovecot-pop3d, proftpd, clamav-base, clamav-daemon, clamav, clamav-freshclam, clamav-docs, clamav-testfiles, libsasl2-2, libsasl2-modules, sasl2-bin, php5-mysql, php5-mbstring, jailkit, fail2ban, postgrey, php-mysql, php7.0-mysql, libconfig-inifiles-perl, milter-greylist, unrar, p7zip, xz-utils
Suggests: postgresql, postgresql-client, libdbd-pg-perl, libpg-perl
Filename: pool/main/v/virtualmin-lemp-stack/virtualmin-lemp-stack_6.0.9+ubuntu-14.04_all.deb
Size: 13778
MD5sum: 8aedc7117db2ac2f9c0370fac4b2b162
SHA1: 97135291c914eb368dbc02267331e3d8975aa3f4
SHA256: cef3a78c1cc532bbf749b2093d273a70b76d5a6127dcc16842489ae6f44175ec
SHA512: d9f92e8f29fa171796f04338fd1627b253bf4cb61a6607eeef605721ff19520023f6f7bcb315a26c87792aa7cc6409eaf9a8d54a59e4503a20330994a7f0f3fa
Description: Metapackage for Virtualmin LEMP Stack.
 This is a fake package to depend on packages for a LEMP Stack.
 .
 This packages depends on a variety of packages needed for a full LEMP
 stack. When combined with virtualmin-core, installs everything needed
 for a complete web hosting system with control panel.
 .
 This file auto-generated by generate-lemp.sh
Description-md5: 0ed6deddf3ac0c72488e72f24537f36f
Homepage: https://github.com/virtualmin/virtualmin-lemp-stack-ubu
Multi-Arch: foreign

Prefere to stick to Ubuntu LTS 22 now… it’s working so will continue… have another server with Debian9/10 on it with virtualmin that I think I tried Debian11 and Vmin wasn’t available for that back when I installed it. So will upgrade that to Debian11 and use Vmin on that when this is final.