Overview
Adminer (formerly phpMinAdmin) is a full-featured database management tool written in PHP. Conversely to phpMyAdmin, it consist of a single file ready to deploy to the target server. Adminer is available for MySQL, PostgreSQL, SQLite and Oracle.
Adminer Editor is both easy-to-use and user-friendly database data editing tool written in PHP. It is suitable for common users, as it provides high-level data manipulation
This flavour includes both Adminer (all languages, all database types) and Adminer Editor (all languages, only MySQL).
It is a persistent (non-nomad) jail running nginx
, php-fpm
and consul
, node_exporter
.
Configuration
Adminer can be configured using environment variables (pot set-env -E VAR=value
) but it is not a requirement, due to Adminer not having any configuration out of the box.
We have added the ability to use adminer without a login page:
- If you set
DBSERVER
,DBUSER
,DBPASS
,DBNAME
,DBDRIVER
environment variables theindex.php
is modified to push login credentials on load and then includes the main adminer source code.
To deploy adminer-editor
instead of the full Adminer set environment variable EDITOR
to true
.
Installation
- Create your local jail from the image or the flavour files.
- Clone the local jail
- Adjust to your environment:
sudo pot set-env -p <jailname> \ -E DATACENTER=<datacenter name> \ -E CONSULSERVERS="<comma-deliminated list of consul servers>" \ -E GOSSIPKEY=<32 byte Base64 key from consul keygen>] \ -E NODENAME=<name of node> \ -E IP=<IP address> \ -E SERVERNAME=<hostname/IP> \ [ -E REMOTELOG=<IP of syslog-ng server> ] [ -E EDITOR=<true/false> ] [ -E DBSERVER=<IP/hostname of the database> ] [ -E DBUSER=<database username> ] [ -E DBPASS=<database password> ] [ -E DBNAME=<database> ] [ -E DBDRIVER=<driver> ]
Consul configuration:
The DATACENTER
parameter is the name of the datacenter.
The CONSULSERVERS
parameter is a comma-deliminated list of IP addresses for the consul server or cluster. Do not include spaces!
The GOSSIPKEY
parameter is the gossip encryption key for consul agent.
The NODENAME
parameter is the name of the node.
The IP
parameter is the IP address of this image.
Nginx configuration:
The SERVERNAME
parameter is for nginx servername
which sets your hostname
Syslog configuration:
REMOTELOG
is an optional parameter for a remote syslog service, such as via the loki
or beast-of-argh
images on potluck site.
Adminer configuration (All of these are not required, can be left unset!):
EDITOR
- Set this value to true
to deploy Adminer Editor
DBSERVER
- IP or hostname of the database to connect to
DBUSER
& DBPASS
- Database credentials to use to sign-in
DBNAME
- The databse to connect to (Can be left empty)
DBDRIVER
- Which PHP Driver to use:
server
- MySQLsqlite
- SQLite 3sqlite2
- SQLite 2pgsql
- PostgreSQLoracle
- Oracle (beta)
Getting Started
- Image Readme
- How To Use The Ready-Made Image
- Alternatively: Create a Jail With This Flavour Yourself
- Version History
- Manual Image Download Links
- Jenkins Pot Creation Logs
How To Use The Ready-Made Image
FreeBSD 14.1:
pot import -p adminer-amd64-14_1 -t 0.9.3 -U https://potluck.honeyguide.net/adminer
With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p adminer-amd64-14_1 -t 0.9.3 -C potluck.pub -U https://potluck.honeyguide.net/adminer
If you don’t want to use the default pot
bridged network configuration but instead need an individual network setup (e.g. assign a host IP address), after importing it you can simply clone the jail like that (em0 is the host network adapter in this example):
pot clone -P adminer-amd64-14_1 -p my-cloned-jail -N alias -i "em0|10.10.10.10"
Note: Some images might require specific network configuration, double check the Overview-chapter at the top.
Alternatively: Create a Jail With This Flavour Yourself
1. Create Flavour Files
Save all files and directories from https://github.com/hny-gd/potluck/tree/master/adminer to /usr/local/etc/pot/flavours/
2. Create Jail From Flavour
Run
pot create -b <FreeBSD Version> -p <jailname> -t single -N public-bridge -f fbsd-update
with your FreeBSD version (e.g. 14.1) and the name your jail should get.
Note: Some images might require specific network configuration, double check the Overview-chapter at the top.
Version History
0.9
- Version bump for new base image
- Enable milliseconds in syslog-ng for all log timestamps
- Update syslog-ng config to use modern config options
0.8
- Version bump for new base image 14.1
- Extra steps to trim image size
0.7
- Version bump for new base image
- Adjust for php-fpm/php_fpm in RC service
0.6
- Version bump for new base image
0.5
- Version bump for new base image
0.4
- Version bump for new base image
0.3
- Version bump for new base image
- Fix node_exporter zfs issue
0.2
- Version bump for new base image
- FBSD14 base image
0.1
- Init adminer (php, nginx, non-nomad)
These images were built on Wed Nov 6 20:59:02 UTC 2024
Manual Image Download Links
adminer-amd64-14_1_0.9.3.xz (
)
adminer-amd64-14_1_0.9.3.xz.skein (
)
adminer-amd64-14_1_0.9.3.xz.skein.sig (
)
adminer-amd64-14_1_0.9.3.xz.meta (
)
Jenkins Pot Creation Logs
adminer-amd64-14_1_0.9.3:
adminer/adminer:
copy-in -s /usr/local/etc/pot/flavours/adminer.d/local -d /root/.pot_local
adminer/adminer.sh:
#!/bin/sh
# Based on POTLUCK TEMPLATE v3.0
# Altered by Michael Gmelin
RUNS_IN_NOMAD=false
# set the cook log path/filename
COOKLOG=/var/log/cook.log
# check if cooklog exists, create it if not
if [ ! -e $COOKLOG ]
then
echo "Creating $COOKLOG" | tee -a $COOKLOG
else
echo "WARNING $COOKLOG already exists" | tee -a $COOKLOG
fi
date >> $COOKLOG
# -------------------- COMMON ---------------
STEPCOUNT=0
step() {
STEPCOUNT=$(("$STEPCOUNT" + 1))
STEP="$*"
echo "Step $STEPCOUNT: $STEP" | tee -a $COOKLOG
}
exit_ok() {
trap - EXIT
exit 0
}
FAILED=" failed"
exit_error() {
STEP="$*"
FAILED=""
exit 1
}
set -e
trap 'echo ERROR: $STEP$FAILED | (>&2 tee -a $COOKLOG)' EXIT
# -------------- BEGIN PACKAGE SETUP -------------
step "Bootstrap package repo"
mkdir -p /usr/local/etc/pkg/repos
# only modify repo if not already done in base image
# shellcheck disable=SC2016
test -e /usr/local/etc/pkg/repos/FreeBSD.conf || \
echo 'FreeBSD: { url: "pkg+http://pkg.FreeBSD.org/${ABI}/quarterly" }' \
>/usr/local/etc/pkg/repos/FreeBSD.conf
ASSUME_ALWAYS_YES=yes pkg bootstrap
step "Touch /etc/rc.conf"
touch /etc/rc.conf
# this is important, otherwise running /etc/rc from cook will
# overwrite the IP address set in tinirc
step "Remove ifconfig_epair0b from config"
# shellcheck disable=SC2015
sysrc -cq ifconfig_epair0b && sysrc -x ifconfig_epair0b || true
step "Disable sendmail"
service sendmail onedisable
step "Create /usr/local/etc/rc.d"
mkdir -p /usr/local/etc/rc.d
step "Clean freebsd-update"
rm -rf /var/db/freebsd-update
mkdir -p /var/db/freebsd-update
step "Install package consul"
pkg install -y consul
step "Install package openssl"
pkg install -y openssl
step "Install package sudo"
pkg install -y sudo
step "Install package ca_root_nss"
pkg install -y ca_root_nss
step "Install package curl"
pkg install -y curl
step "Install package jq"
pkg install -y jq
step "Install package jo"
pkg install -y jo
step "Install package nano"
pkg install -y nano
step "Install package bash"
pkg install -y bash
step "Install package rsync"
pkg install -y rsync
step "Install package node_exporter"
pkg install -y node_exporter
step "Install nginx"
pkg install -y nginx
step "Install PHP"
pkg install -y php82
step "Install PHP mbstring"
pkg install -y php82-mbstring
step "Install PHP zlib"
pkg install -y php82-zlib
step "Install PHP curl"
pkg install -y php82-curl
step "Install PHP gd"
pkg install -y php82-gd
step "Install PHP extensions"
pkg install -y php82-extensions
step "Install PHP mysqli driver"
pkg install -y php82-mysqli
step "Install PHP odbc driver"
pkg install -y php82-odbc
step "Install PHP pgsql driver"
pkg install -y php82-pgsql
step "Install PHP pdo_sqlite driver"
pkg install -y php82-pdo_sqlite
step "Clean package installation"
pkg clean -ay
# -------------- END PACKAGE SETUP -------------
#
# Create configurations
#
#
# Now generate the run command script "cook"
# It configures the system on the first run by creating the config file(s)
# On subsequent runs, it only starts sleeps (if nomad-jail) or simply exits
#
# clear any old cook runtime file
step "Remove pre-existing cook script (if any)"
rm -f /usr/local/bin/cook
# this runs when image boots
# ----------------- BEGIN COOK ------------------
step "Clean cook artifacts"
rm -rf /usr/local/bin/cook /usr/local/share/cook
step "Install pot local"
tar -C /root/.pot_local -cf - . | tar -C /usr/local -xf -
rm -rf /root/.pot_local
step "Set file ownership on cook scripts"
chown -R root:wheel /usr/local/bin/cook /usr/local/share/cook
chmod 755 /usr/local/share/cook/bin/*
# ----------------- END COOK ------------------
# ---------- NO NEED TO EDIT BELOW ------------
step "Make cook script executable"
if [ -e /usr/local/bin/cook ]
then
echo "setting executable bit on /usr/local/bin/cook" | tee -a $COOKLOG
chmod u+x /usr/local/bin/cook
else
exit_error "there is no /usr/local/bin/cook to make executable"
fi
#
# There are two ways of running a pot jail: "Normal", non-blocking mode and
# "Nomad", i.e. blocking mode (the pot start command does not return until
# the jail is stopped).
# For the normal mode, we create a /usr/local/etc/rc.d script that starts
# the "cook" script generated above each time, for the "Nomad" mode, the cook
# script is started by pot (configuration through flavour file), therefore
# we do not need to do anything here.
#
# Create rc.d script for "normal" mode:
step "Create rc.d script to start cook"
echo "creating rc.d script to start cook" | tee -a $COOKLOG
# shellcheck disable=SC2016
echo '#!/bin/sh
#
# PROVIDE: cook
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
. /etc/rc.subr
name="cook"
rcvar="cook_enable"
load_rc_config $name
: ${cook_enable:="NO"}
: ${cook_env:=""}
command="/usr/local/bin/cook"
command_args=""
run_rc_command "$1"
' > /usr/local/etc/rc.d/cook
step "Make rc.d script to start cook executable"
if [ -e /usr/local/etc/rc.d/cook ]
then
echo "Setting executable bit on cook rc file" | tee -a $COOKLOG
chmod u+x /usr/local/etc/rc.d/cook
else
exit_error "/usr/local/etc/rc.d/cook does not exist"
fi
if [ "$RUNS_IN_NOMAD" != "true" ]
then
step "Enable cook service"
# This is a non-nomad (non-blocking) jail, so we need to make sure the script
# gets started when the jail is started:
# Otherwise, /usr/local/bin/cook will be set as start script by the pot flavour
echo "enabling cook" | tee -a $COOKLOG
service cook enable
fi
# -------------------- DONE ---------------
exit_ok
adminer/adminer+1:
adminer/adminer+1.sh:
adminer/adminer+2:
adminer/adminer+2.sh:
adminer/adminer+3:
adminer/adminer+3.sh:
adminer/adminer+4:
adminer/adminer+4.sh:
=====> Create conf dir (/mnt/srv/pot/jails/adminer-amd64-14_1/conf)
=====> Cloning freebsd-potluck-amd64-14_1_0_0_31 with snap
=====> clone zroot/srv/pot/jails/freebsd-potluck-amd64-14_1_0_0_31/m@1730306249 into zroot/srv/pot/jails/adminer-amd64-14_1/m
=====> Flavour: fbsd-update
=====> Starting adminer-amd64-14_1 pot for the initial bootstrap
=====> mount /mnt/srv/pot/jails/adminer-amd64-14_1/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===> Starting the pot adminer-amd64-14_1
=====> Pot adminer-amd64-14_1 jail params are: allow.set_hostname=false allow.raw_sockets allow.socket_af allow.chflags exec.clean mount.devfs enforce_statfs=2 sysvshm=new sysvsem=new sysvmsg=new children.max=0 devfs_ruleset=4 stop.timeout=10 name=adminer-amd64-14_1 host.hostname=adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net osrelease=14.1-RELEASE-p6 path=/mnt/srv/pot/jails/adminer-amd64-14_1/m persist vnet vnet.interface=epair0b
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg /usr/local/lib/compat/pkg
32-bit compatibility ldconfig path: /usr/lib32 /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=1008049<UP,LOOPBACK,RUNNING,MULTICAST,LOWER_UP> metric 0 mtu 16384
options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
inet 127.0.0.1 netmask 0xff000000
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x6
groups: lo
nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
options=8<VLAN_MTU>
ether 02:e0:6c:3d:d5:0b
inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
groups: epair
media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
status: active
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Clearing /tmp (X related).
Updating /var/run/os-release done.
Creating and/or trimming log files.
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting cron.
Wed Nov 6 20:56:49 UTC 2024
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/adminer-amd64-14_1/m/tmp/fbsd-update.sh
=====> Executing fbsd-update script on adminer-amd64-14_1
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 3 mirrors found.
Fetching public key from update2.freebsd.org... done.
Fetching metadata signature for 14.1-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Fetching 2 metadata files... done.
Inspecting system... done.
Preparing to download files... done.
No updates needed to update system to 14.1-RELEASE-p6.
No updates are available to install.
=====> Stop the pot adminer-amd64-14_1
=====> Remove p4672bd80f181 epair network interfaces
=====> unmount /mnt/srv/pot/jails/adminer-amd64-14_1/m/tmp
=====> unmount /mnt/srv/pot/jails/adminer-amd64-14_1/m/dev
=====> Flavour: adminer
=====> Executing adminer pot commands on adminer-amd64-14_1
=====> mount /mnt/srv/pot/jails/adminer-amd64-14_1/m/tmp
=====> Source /usr/local/etc/pot/flavours/adminer.d/local copied in the pot adminer-amd64-14_1
=====> unmount /mnt/srv/pot/jails/adminer-amd64-14_1/m/tmp
=====> /mnt/srv/pot/jails/adminer-amd64-14_1/m/dev is already unmounted
=====> Starting adminer-amd64-14_1 pot for the initial bootstrap
=====> mount /mnt/srv/pot/jails/adminer-amd64-14_1/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===> Starting the pot adminer-amd64-14_1
=====> Pot adminer-amd64-14_1 jail params are: allow.set_hostname=false allow.raw_sockets allow.socket_af allow.chflags exec.clean mount.devfs enforce_statfs=2 sysvshm=new sysvsem=new sysvmsg=new children.max=0 devfs_ruleset=4 stop.timeout=10 name=adminer-amd64-14_1 host.hostname=adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net osrelease=14.1-RELEASE-p6 path=/mnt/srv/pot/jails/adminer-amd64-14_1/m persist vnet vnet.interface=epair0b
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg /usr/local/lib/compat/pkg
32-bit compatibility ldconfig path: /usr/lib32 /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=1008049<UP,LOOPBACK,RUNNING,MULTICAST,LOWER_UP> metric 0 mtu 16384
options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
inet 127.0.0.1 netmask 0xff000000
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x6
groups: lo
nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
options=8<VLAN_MTU>
ether 02:44:89:a6:1a:0b
inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
groups: epair
media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
status: active
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Clearing /tmp (X related).
Updating /var/run/os-release done.
Creating and/or trimming log files.
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting cron.
Wed Nov 6 20:57:22 UTC 2024
/usr/local/etc/pot/flavours/adminer.sh -> /mnt/srv/pot/jails/adminer-amd64-14_1/m/tmp/adminer.sh
=====> Executing adminer script on adminer-amd64-14_1
WARNING /var/log/cook.log already exists
Step 1: Bootstrap package repo
pkg already bootstrapped at /usr/local/sbin/pkg
Step 2: Touch /etc/rc.conf
Step 3: Remove ifconfig_epair0b from config
Step 4: Disable sendmail
sendmail disabled in /etc/rc.conf
sendmail_submit disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Step 5: Create /usr/local/etc/rc.d
Step 6: Clean freebsd-update
Step 7: Install package consul
Updating FreeBSD repository catalogue...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] Fetching data.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 35518 packages processed.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
consul: 1.19.2
Number of packages to be installed: 1
The process will require 124 MiB more space.
24 MiB to be downloaded.
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching consul-1.19.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing consul-1.19.2...
===> Creating groups
Creating group 'consul' with gid '469'
===> Creating users
Creating user 'consul' with uid '469'
===> Creating homedir(s)
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting consul-1.19.2: ..... done
Step 8: Install package openssl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 9: Install package sudo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 10: Install package ca_root_nss
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 11: Install package curl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 12: Install package jq
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 13: Install package jo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 14: Install package nano
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 15: Install package bash
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 16: Install package rsync
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 17: Install package node_exporter
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
node_exporter: 1.8.2
Number of packages to be installed: 1
The process will require 11 MiB more space.
4 MiB to be downloaded.
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching node_exporter-1.8.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing node_exporter-1.8.2...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting node_exporter-1.8.2: .......... done
=====
Message from node_exporter-1.8.2:
--
If upgrading from a version of node_exporter <0.15.0 you'll need to update any
custom command line flags that you may have set as it now requires a
double-dash (--flag) instead of a single dash (-flag).
The collector flags in 0.15.0 have now been replaced with individual boolean
flags and the -collector.procfs` and -collector.sysfs` flags have been renamed
to --path.procfs and --path.sysfs respectively.
Step 18: Install nginx
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
nginx: 1.26.2_5,3
pcre2: 10.43
Number of packages to be installed: 2
The process will require 9 MiB more space.
2 MiB to be downloaded.
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching nginx-1.26.2_5,3.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching pcre2-10.43.pkg: .......... done
Checking integrity... done (0 conflicting)
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing pcre2-10.43...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting pcre2-10.43: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing nginx-1.26.2_5,3...
===> Creating groups
Using existing group 'www'
===> Creating users
Using existing user 'www'
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting nginx-1.26.2_5,3: .......... done
=====
Message from nginx-1.26.2_5,3:
--
Recent version of the NGINX introduces dynamic modules support. In
FreeBSD ports tree this feature was enabled by default with the DSO
knob. Several vendor's and third-party modules have been converted
to dynamic modules. Unset the DSO knob builds an NGINX without
dynamic modules support.
To load a module at runtime, include the new `load_module'
directive in the main context, specifying the path to the shared
object file for the module, enclosed in quotation marks. When you
reload the configuration or restart NGINX, the module is loaded in.
It is possible to specify a path relative to the source directory,
or a full path, please see
https://www.nginx.com/blog/dynamic-modules-nginx-1-9-11/ and
http://nginx.org/en/docs/ngx_core_module.html#load_module for
details.
Default path for the NGINX dynamic modules is
/usr/local/libexec/nginx.
Step 19: Install PHP
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 3 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
libargon2: 20190702_1
libxml2: 2.11.9
php82: 8.2.24
Number of packages to be installed: 3
The process will require 30 MiB more space.
5 MiB to be downloaded.
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching libxml2-2.11.9.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching libargon2-20190702_1.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching php82-8.2.24.pkg: .......... done
Checking integrity... done (0 conflicting)
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Installing libxml2-2.11.9...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting libxml2-2.11.9: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Installing libargon2-20190702_1...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting libargon2-20190702_1: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Installing php82-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Extracting php82-8.2.24: .......... done
Step 20: Install PHP mbstring
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
php82-mbstring: 8.2.24
Number of packages to be installed: 1
The process will require 4 MiB more space.
918 KiB to be downloaded.
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-mbstring-8.2.24.pkg: .......... done
Checking integrity... done (0 conflicting)
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-mbstring-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-mbstring-8.2.24: .......... done
=====
Message from php82-mbstring-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mbstring.ini.sample
Step 21: Install PHP zlib
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
php82-zlib: 8.2.24
Number of packages to be installed: 1
22 KiB to be downloaded.
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-zlib-8.2.24.pkg: ..... done
Checking integrity... done (0 conflicting)
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-zlib-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-zlib-8.2.24: ........ done
=====
Message from php82-zlib-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zlib.ini.sample
Step 22: Install PHP curl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
php82-curl: 8.2.24
Number of packages to be installed: 1
47 KiB to be downloaded.
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-curl-8.2.24.pkg: ........ done
Checking integrity... done (0 conflicting)
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-curl-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-curl-8.2.24: .......... done
=====
Message from php82-curl-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-curl.ini.sample
Step 23: Install PHP gd
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 14 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
brotli: 1.1.0,1
expat: 2.6.3
fontconfig: 2.15.0_3,1
freetype2: 2.13.3
giflib: 5.2.2
jbigkit: 2.1_3
jpeg-turbo: 3.0.4
lerc: 4.0.0
libdeflate: 1.22
libgd: 2.3.3_13,1
php82-gd: 8.2.24
png: 1.6.44
tiff: 4.6.0
webp: 1.4.0_1
Number of packages to be installed: 14
The process will require 27 MiB more space.
5 MiB to be downloaded.
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/14] Fetching png-1.6.44.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/14] Fetching freetype2-2.13.3.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/14] Fetching jpeg-turbo-3.0.4.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/14] Fetching libgd-2.3.3_13,1.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/14] Fetching fontconfig-2.15.0_3,1.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/14] Fetching php82-gd-8.2.24.pkg: ....... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/14] Fetching giflib-5.2.2.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/14] Fetching jbigkit-2.1_3.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/14] Fetching webp-1.4.0_1.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/14] Fetching brotli-1.1.0,1.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/14] Fetching tiff-4.6.0.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/14] Fetching libdeflate-1.22.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/14] Fetching expat-2.6.3.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/14] Fetching lerc-4.0.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/14] Installing png-1.6.44...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/14] Extracting png-1.6.44: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/14] Installing jpeg-turbo-3.0.4...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/14] Extracting jpeg-turbo-3.0.4: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/14] Installing jbigkit-2.1_3...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/14] Extracting jbigkit-2.1_3: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/14] Installing brotli-1.1.0,1...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/14] Extracting brotli-1.1.0,1: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/14] Installing libdeflate-1.22...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/14] Extracting libdeflate-1.22: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/14] Installing lerc-4.0.0...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/14] Extracting lerc-4.0.0: ........ done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/14] Installing freetype2-2.13.3...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/14] Extracting freetype2-2.13.3: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/14] Installing giflib-5.2.2...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/14] Extracting giflib-5.2.2: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/14] Installing tiff-4.6.0...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/14] Extracting tiff-4.6.0: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/14] Installing expat-2.6.3...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/14] Extracting expat-2.6.3: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/14] Installing fontconfig-2.15.0_3,1...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/14] Extracting fontconfig-2.15.0_3,1: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/14] Installing webp-1.4.0_1...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/14] Extracting webp-1.4.0_1: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/14] Installing libgd-2.3.3_13,1...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/14] Extracting libgd-2.3.3_13,1: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/14] Installing php82-gd-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/14] Extracting php82-gd-8.2.24: ......... done
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
=====
Message from freetype2-2.13.3:
--
The 2.7.x series now uses the new subpixel hinting mode (V40 port's option) as
the default, emulating a modern version of ClearType. This change inevitably
leads to different rendering results, and you might change port's options to
adapt it to your taste (or use the new "FREETYPE_PROPERTIES" environment
variable).
The environment variable "FREETYPE_PROPERTIES" can be used to control the
driver properties. Example:
FREETYPE_PROPERTIES=truetype:interpreter-version=35 \
cff:no-stem-darkening=1 \
autofitter:warping=1
This allows to select, say, the subpixel hinting mode at runtime for a given
application.
If LONG_PCF_NAMES port's option was enabled, the PCF family names may include
the foundry and information whether they contain wide characters. For example,
"Sony Fixed" or "Misc Fixed Wide", instead of "Fixed". This can be disabled at
run time with using pcf:no-long-family-names property, if needed. Example:
FREETYPE_PROPERTIES=pcf:no-long-family-names=1
How to recreate fontconfig cache with using such environment variable,
if needed:
# env FREETYPE_PROPERTIES=pcf:no-long-family-names=1 fc-cache -fsv
The controllable properties are listed in the section "Controlling FreeType
Modules" in the reference's table of contents
(/usr/local/share/doc/freetype2/reference/index.html, if documentation was installed).
=====
Message from php82-gd-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-gd.ini.sample
Step 24: Install PHP extensions
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 19 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
libedit: 3.1.20240808,1
php82-ctype: 8.2.24
php82-dom: 8.2.24
php82-extensions: 1.0
php82-filter: 8.2.24
php82-iconv: 8.2.24
php82-opcache: 8.2.24
php82-pdo: 8.2.24
php82-pdo_sqlite: 8.2.24
php82-phar: 8.2.24
php82-posix: 8.2.24
php82-session: 8.2.24
php82-simplexml: 8.2.24
php82-sqlite3: 8.2.24
php82-tokenizer: 8.2.24
php82-xml: 8.2.24
php82-xmlreader: 8.2.24
php82-xmlwriter: 8.2.24
sqlite3: 3.46.1,1
Number of packages to be installed: 19
The process will require 9 MiB more space.
2 MiB to be downloaded.
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/19] Fetching php82-session-8.2.24.pkg: ........ done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/19] Fetching libedit-3.1.20240808,1.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/19] Fetching php82-posix-8.2.24.pkg: ... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/19] Fetching php82-sqlite3-8.2.24.pkg: ...... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/19] Fetching php82-xmlreader-8.2.24.pkg: ... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/19] Fetching php82-dom-8.2.24.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/19] Fetching php82-xml-8.2.24.pkg: .... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/19] Fetching php82-simplexml-8.2.24.pkg: ..... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/19] Fetching php82-pdo-8.2.24.pkg: ......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/19] Fetching php82-xmlwriter-8.2.24.pkg: .... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/19] Fetching sqlite3-3.46.1,1.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/19] Fetching php82-tokenizer-8.2.24.pkg: .. done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/19] Fetching php82-extensions-1.0.pkg: . done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/19] Fetching php82-ctype-8.2.24.pkg: .. done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/19] Fetching php82-iconv-8.2.24.pkg: .... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/19] Fetching php82-phar-8.2.24.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [17/19] Fetching php82-opcache-8.2.24.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [18/19] Fetching php82-filter-8.2.24.pkg: ..... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [19/19] Fetching php82-pdo_sqlite-8.2.24.pkg: ... done
Checking integrity... done (0 conflicting)
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/19] Installing libedit-3.1.20240808,1...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/19] Extracting libedit-3.1.20240808,1: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/19] Installing php82-dom-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/19] Extracting php82-dom-8.2.24: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/19] Installing php82-pdo-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/19] Extracting php82-pdo-8.2.24: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/19] Installing sqlite3-3.46.1,1...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/19] Extracting sqlite3-3.46.1,1: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/19] Installing php82-session-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/19] Extracting php82-session-8.2.24: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/19] Installing php82-posix-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/19] Extracting php82-posix-8.2.24: ........ done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/19] Installing php82-sqlite3-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/19] Extracting php82-sqlite3-8.2.24: ......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/19] Installing php82-xmlreader-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/19] Extracting php82-xmlreader-8.2.24: ........ done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/19] Installing php82-xml-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/19] Extracting php82-xml-8.2.24: ......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/19] Installing php82-simplexml-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/19] Extracting php82-simplexml-8.2.24: ......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/19] Installing php82-xmlwriter-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/19] Extracting php82-xmlwriter-8.2.24: ........ done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/19] Installing php82-tokenizer-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/19] Extracting php82-tokenizer-8.2.24: ......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/19] Installing php82-ctype-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/19] Extracting php82-ctype-8.2.24: ........ done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/19] Installing php82-iconv-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/19] Extracting php82-iconv-8.2.24: ........ done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/19] Installing php82-phar-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/19] Extracting php82-phar-8.2.24: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/19] Installing php82-opcache-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/19] Extracting php82-opcache-8.2.24: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [17/19] Installing php82-filter-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [17/19] Extracting php82-filter-8.2.24: ......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [18/19] Installing php82-pdo_sqlite-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [18/19] Extracting php82-pdo_sqlite-8.2.24: ......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [19/19] Installing php82-extensions-1.0...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [19/19] Extracting php82-extensions-1.0: ... done
=====
Message from php82-dom-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-dom.ini.sample
=====
Message from php82-pdo-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pdo.ini.sample
=====
Message from php82-session-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-18-session.ini.sample
=====
Message from php82-posix-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-posix.ini.sample
=====
Message from php82-sqlite3-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-sqlite3.ini.sample
=====
Message from php82-xmlreader-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-xmlreader.ini.sample
=====
Message from php82-xml-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xml.ini.sample
=====
Message from php82-simplexml-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-simplexml.ini.sample
=====
Message from php82-xmlwriter-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xmlwriter.ini.sample
=====
Message from php82-tokenizer-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-tokenizer.ini.sample
=====
Message from php82-ctype-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ctype.ini.sample
=====
Message from php82-iconv-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-iconv.ini.sample
=====
Message from php82-phar-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-phar.ini.sample
=====
Message from php82-opcache-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-10-opcache.ini.sample
=====
Message from php82-filter-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-filter.ini.sample
=====
Message from php82-pdo_sqlite-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-pdo_sqlite.ini.sample
Step 25: Install PHP mysqli driver
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
php82-mysqli: 8.2.24
Number of packages to be installed: 1
52 KiB to be downloaded.
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-mysqli-8.2.24.pkg: ........ done
Checking integrity... done (0 conflicting)
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-mysqli-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-mysqli-8.2.24: .......... done
=====
Message from php82-mysqli-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mysqli.ini.sample
Step 26: Install PHP odbc driver
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
php82-odbc: 8.2.24
unixODBC: 2.3.12_1
Number of packages to be installed: 2
The process will require 3 MiB more space.
577 KiB to be downloaded.
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching unixODBC-2.3.12_1.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching php82-odbc-8.2.24.pkg: ...... done
Checking integrity... done (0 conflicting)
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing unixODBC-2.3.12_1...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting unixODBC-2.3.12_1: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-odbc-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-odbc-8.2.24: ......... done
=====
Message from php82-odbc-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-odbc.ini.sample
Step 27: Install PHP pgsql driver
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
php82-pgsql: 8.2.24
postgresql16-client: 16.4
Number of packages to be installed: 2
The process will require 16 MiB more space.
3 MiB to be downloaded.
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching postgresql16-client-16.4.pkg: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching php82-pgsql-8.2.24.pkg: ......... done
Checking integrity... done (0 conflicting)
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing postgresql16-client-16.4...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting postgresql16-client-16.4: .......... done
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-pgsql-8.2.24...
[adminer-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-pgsql-8.2.24: ........ done
=====
Message from postgresql16-client-16.4:
--
The PostgreSQL port has a collection of "side orders":
postgresql-docs
For all of the html documentation
p5-Pg
A perl5 API for client access to PostgreSQL databases.
postgresql-tcltk
If you want tcl/tk client support.
postgresql-jdbc
For Java JDBC support.
postgresql-odbc
For client access from unix applications using ODBC as access
method. Not needed to access unix PostgreSQL servers from Win32
using ODBC. See below.
ruby-postgres, py-psycopg2
For client access to PostgreSQL databases using the ruby & python
languages.
postgresql-plperl, postgresql-pltcl & postgresql-plruby
For using perl5, tcl & ruby as procedural languages.
postgresql-contrib
Lots of contributed utilities, postgresql functions and
datatypes. There you find pg_standby, pgcrypto and many other cool
things.
etc...
=====
Message from php82-pgsql-8.2.24:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pgsql.ini.sample
Step 28: Install PHP pdo_sqlite driver
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 29: Clean package installation
The following package files will be deleted:
/var/cache/pkg/php82-opcache-8.2.24.pkg
/var/cache/pkg/giflib-5.2.2.pkg
/var/cache/pkg/php82-xmlreader-8.2.24.pkg
/var/cache/pkg/php82-curl-8.2.24.pkg
/var/cache/pkg/php82-xml-8.2.24.pkg
/var/cache/pkg/php82-xml-8.2.24~1ea8046aab.pkg
/var/cache/pkg/libedit-3.1.20240808,1.pkg
/var/cache/pkg/php82-gd-8.2.24.pkg
/var/cache/pkg/php82-phar-8.2.24.pkg
/var/cache/pkg/php82-xmlwriter-8.2.24.pkg
/var/cache/pkg/jbigkit-2.1_3.pkg
/var/cache/pkg/consul-1.19.2.pkg
/var/cache/pkg/php82-tokenizer-8.2.24~3715f7ab9c.pkg
/var/cache/pkg/postgresql16-client-16.4~5bd97b2f81.pkg
/var/cache/pkg/php82-odbc-8.2.24.pkg
/var/cache/pkg/php82-session-8.2.24~9bb674e036.pkg
/var/cache/pkg/php82-ctype-8.2.24.pkg
/var/cache/pkg/php82-phar-8.2.24~4607984c9e.pkg
/var/cache/pkg/tiff-4.6.0~9b1d6e8ef0.pkg
/var/cache/pkg/libargon2-20190702_1~4d45a4f3aa.pkg
/var/cache/pkg/libdeflate-1.22.pkg
/var/cache/pkg/php82-posix-8.2.24.pkg
/var/cache/pkg/libxml2-2.11.9~128b31ea34.pkg
/var/cache/pkg/libxml2-2.11.9.pkg
/var/cache/pkg/php82-mysqli-8.2.24.pkg
/var/cache/pkg/php82-zlib-8.2.24.pkg
/var/cache/pkg/php82-simplexml-8.2.24~de84ca9e26.pkg
/var/cache/pkg/php82-sqlite3-8.2.24~b18fd2d5a2.pkg
/var/cache/pkg/php82-posix-8.2.24~f485e92495.pkg
/var/cache/pkg/php82-odbc-8.2.24~1aa2b53c16.pkg
/var/cache/pkg/php82-mbstring-8.2.24.pkg
/var/cache/pkg/unixODBC-2.3.12_1~2c2f5d2f8c.pkg
/var/cache/pkg/png-1.6.44~a626e09ec4.pkg
/var/cache/pkg/php82-xmlreader-8.2.24~cbc5fc3b34.pkg
/var/cache/pkg/php82-dom-8.2.24.pkg
/var/cache/pkg/php82-mysqli-8.2.24~f013ee7dd0.pkg
/var/cache/pkg/php82-filter-8.2.24~167b3fe349.pkg
/var/cache/pkg/pcre2-10.43.pkg
/var/cache/pkg/expat-2.6.3.pkg
/var/cache/pkg/php82-pgsql-8.2.24.pkg
/var/cache/pkg/tiff-4.6.0.pkg
/var/cache/pkg/fontconfig-2.15.0_3,1~f7e4bb76a9.pkg
/var/cache/pkg/php82-opcache-8.2.24~78138b0cf3.pkg
/var/cache/pkg/node_exporter-1.8.2.pkg
/var/cache/pkg/nginx-1.26.2_5,3~339c37ca93.pkg
/var/cache/pkg/php82-gd-8.2.24~e8101302e0.pkg
/var/cache/pkg/php82-pdo_sqlite-8.2.24~cdf894bf41.pkg
/var/cache/pkg/brotli-1.1.0,1.pkg
/var/cache/pkg/php82-dom-8.2.24~c426066d5d.pkg
/var/cache/pkg/freetype2-2.13.3~07f9354984.pkg
/var/cache/pkg/php82-xmlwriter-8.2.24~a5e2d3ef53.pkg
/var/cache/pkg/png-1.6.44.pkg
/var/cache/pkg/expat-2.6.3~3f4ec0c272.pkg
/var/cache/pkg/webp-1.4.0_1.pkg
/var/cache/pkg/php82-mbstring-8.2.24~9e4f0f21c3.pkg
/var/cache/pkg/php82-pdo-8.2.24.pkg
/var/cache/pkg/php82-simplexml-8.2.24.pkg
/var/cache/pkg/libgd-2.3.3_13,1~c843435fa4.pkg
/var/cache/pkg/pcre2-10.43~d476f63222.pkg
/var/cache/pkg/giflib-5.2.2~1b9d82c5b4.pkg
/var/cache/pkg/php82-zlib-8.2.24~f0a01b09c0.pkg
/var/cache/pkg/freetype2-2.13.3.pkg
/var/cache/pkg/libgd-2.3.3_13,1.pkg
/var/cache/pkg/jpeg-turbo-3.0.4.pkg
/var/cache/pkg/php82-8.2.24.pkg
/var/cache/pkg/sqlite3-3.46.1,1~488c793ef1.pkg
/var/cache/pkg/webp-1.4.0_1~92b22f6c56.pkg
/var/cache/pkg/lerc-4.0.0.pkg
/var/cache/pkg/fontconfig-2.15.0_3,1.pkg
/var/cache/pkg/php82-ctype-8.2.24~d75a21e4ab.pkg
/var/cache/pkg/lerc-4.0.0~48ff323b58.pkg
/var/cache/pkg/php82-curl-8.2.24~ce105b2867.pkg
/var/cache/pkg/php82-extensions-1.0.pkg
/var/cache/pkg/php82-iconv-8.2.24~5f2675d72a.pkg
/var/cache/pkg/php82-sqlite3-8.2.24.pkg
/var/cache/pkg/jbigkit-2.1_3~44a5669171.pkg
/var/cache/pkg/node_exporter-1.8.2~d3c8df78fe.pkg
/var/cache/pkg/php82-pdo-8.2.24~8cba5b02cb.pkg
/var/cache/pkg/php82-extensions-1.0~86f4b72346.pkg
/var/cache/pkg/nginx-1.26.2_5,3.pkg
/var/cache/pkg/php82-iconv-8.2.24.pkg
/var/cache/pkg/postgresql16-client-16.4.pkg
/var/cache/pkg/unixODBC-2.3.12_1.pkg
/var/cache/pkg/sqlite3-3.46.1,1.pkg
/var/cache/pkg/php82-filter-8.2.24.pkg
/var/cache/pkg/php82-tokenizer-8.2.24.pkg
/var/cache/pkg/php82-pgsql-8.2.24~db450d3072.pkg
/var/cache/pkg/php82-session-8.2.24.pkg
/var/cache/pkg/jpeg-turbo-3.0.4~a49da1265b.pkg
/var/cache/pkg/libdeflate-1.22~a5d1b47c00.pkg
/var/cache/pkg/consul-1.19.2~ffcc2d4893.pkg
/var/cache/pkg/libargon2-20190702_1.pkg
/var/cache/pkg/libedit-3.1.20240808,1~f5ee367ad6.pkg
/var/cache/pkg/brotli-1.1.0,1~4ecc819658.pkg
/var/cache/pkg/php82-pdo_sqlite-8.2.24.pkg
/var/cache/pkg/php82-8.2.24~35335864ef.pkg
The cleanup will free 48 MiB
Deleting files: .......... done
Step 30: Remove pre-existing cook script (if any)
Step 31: Clean cook artifacts
Step 32: Install pot local
Step 33: Set file ownership on cook scripts
Step 34: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 35: Create rc.d script to start cook
creating rc.d script to start cook
Step 36: Make rc.d script to start cook executable
Setting executable bit on cook rc file
Step 37: Enable cook service
enabling cook
cook enabled in /etc/rc.conf
=====> Stop the pot adminer-amd64-14_1
=====> Remove p4672bd832181 epair network interfaces
=====> unmount /mnt/srv/pot/jails/adminer-amd64-14_1/m/tmp
=====> unmount /mnt/srv/pot/jails/adminer-amd64-14_1/m/dev
===> exporting adminer-amd64-14_1 @ 1730926691 to /tmp/adminer-amd64-14_1_0.9.3.xz