Install PostgreSQL 12
Install and enable EPEL and PowerTools repositories if not already enabled.
Install PostGIS for PostgreSQL 12:
# dnf -y install postgis30_12
Read more Install PostGIS 3.0 on CentOS 8 with PostgreSQL 12
Install PostgreSQL 12
Install and enable EPEL and PowerTools repositories if not already enabled.
Install PostGIS for PostgreSQL 12:
# dnf -y install postgis30_12
Read more Install PostGIS 3.0 on CentOS 8 with PostgreSQL 12
Install the EPEL Repo
# dnf install epel-release -y
Install the Xfce group
# dnf groupinstall Xfce -y
Download and install the latest repo RPM from https://yum.postgresql.org/
# dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
Disable the built-in PostgreSQL module:
# dnf -qy module disable postgresql
Install PostgreSQL:
# dnf install -y postgresql12-server
Optionally initialize the database and enable automatic start:
# /usr/pgsql-12/bin/postgresql-12-setup initdb
# systemctl enable postgresql-12
# systemctl start postgresql-12
If you don’t have a tastyworks account, you may create one at tastyworks.
Download the latest RPM version of tastyworks from https://tastyworks.com/technology.
# wget https://download.tastyworks.com/desktop-1.x.x/1.8.0/tastyworks-1.8.0-1.x86_64.rpm
Install the downloaded RPM file.
# dnf localinstall tastyworks-1.8.0-1.x86_64.rpm
Login as root
Install the workstation group, change the default target to graphical, and reboot.
# dnf groupinstall workstation
# systemctl set-default graphical.target
# reboot
MySQL Master-Slave replication allows for data to be automatically copied to multiple computers. Changes are made to the designated “master” node and replicated to one or more designated “slave” nodes for read-only applications.
This tutorial provides step-by-step instructions for setting up a MySQL/MariaDB master-slave database configuration. CentOS 8 and MariaDB 10.5 are used in this example.
Two servers are used in this tutorial, db01 (the master node) and db02 (the slave node). If you already have a database running on the master node, you must dump and restore a backup of the database into the slave node prior to enabling replication.
Login as root and install packages required for building kernel modules and elfutils-libelf-devel as a prerequisite for the additions.
# dnf install gcc kernel-devel kernel-headers dkms make bzip2 perl elfutils-libelf-devel
From the VirtualBox window, insert the guest-tools CD image.
Devices -> “Insert Guest Additions CD Image”
Mount the virtual CD-ROM drive and install the VirtualBox Additions.
# mkdir /mnt/cdrom
# mount /dev/cdrom /mnt/cdrom
# cd /mnt/cdrom/
# sh ./VBoxLinuxAdditions.run --nox11
# reboot
$ hostname
or
$ hostnamectl
# dnf group install "KDE Plasma Workspaces"
# dnf group install kde-desktop
# dnf group install kde-apps
# systemctl disable gdm
# systemctl enable sddm
# systemctl set-default graphical.target
When starting samba you may receive this error:
smbd[11632]: ../source3/auth/auth_util.c:1382(make_new_ses...guest)
smbd[11632]: create_local_token failed: NT_STATUS_ACCESS_DENIED
smbd[11632]: ../source3/smbd/server.c:2000(main)
smbd[11632]: ERROR: failed to setup guest info.
Recent Comments