@JS's Notes

Site with notes from my work.

KVM on CentOS 8

My test platform: CentOS Linux release 8.1.1911 (Core)

Requirements

User with root privileges or non-root user with sudo privileges. Make sure that your hardware platform supports virtualization by running the following command:

$ grep -e 'vmx' /proc/cpuinfo   # Intel platforms
$ grep -e 'svm' /proc/cpuinfo   # AMD platforms
$ lsmod | grep kvm              # Confirm that KVM modules are loaded in the kernel
Continue reading

Private internal DNS server on Fedora 30

2019-10-08 System @JS

Requirements: user with root privileges or non-root user with sudo privileges.

My testing environment:

  • Domain: lnx.lan
  • DNS server IP and hostname: 192.168.1.187, master.lnx.lan
Bind - installation and configuration

Update your operating system packages and install Bind server:

$ sudo dnf update -y
$ dnf install bind bind-utils -y
$ sudo systemctl start named.service
$ systemctl status named.service
$ sudo systemctl enable named.service
Continue reading

How to install Memcached caching server on CentOS 7

2019-10-08 System @JS

My test platform: CentOS Linux release 7.6.1810 (Core)

Memcached is an open source distributed memory object caching program that allows improve and speed up the performance of dynamic web applications by caching data and objects in memory. Memcached is also used to cache entire database tables and queries to improve the performance.

Continue reading

Redmine on CentOS 7

2019-10-08 System @JS

My test platform: CentOS Linux release 7.6.1810 (Core)

Requirements: user with root privileges or non-root user with sudo privileges.

Java installation:
$ sudo yum install java-1.8.0-openjdk-devel -y
$ java -version
openjdk version "1.8.0_212"
OpenJDK Runtime Environment (build 1.8.0_212-b04)
OpenJDK 64-Bit Server VM (build 25.212-b04, mixed mode)
Continue reading
Older posts Newer posts