Kubernetes Installation and Configuration CentOS
Install Kubernets on CentOS 8 I have 3 CentOS 8 minimal install OS on the VMs. Update the host-names and IP Addresses in the /etc/hosts …
Welcome!
Install Kubernets on CentOS 8 I have 3 CentOS 8 minimal install OS on the VMs. Update the host-names and IP Addresses in the /etc/hosts …
Install DNS Server (Bind) on CentOS 8 Example Host We have an existing VPS “host1”. Host Role IP host1 Generic Host 1 172.30.43.14 We have …
Installing the Server 1. Install OpenLDAP For CentOS 8.0: # yum install openldap openldap-clients openldap-servers 2. Allow LDAP through firewall: # firewall-cmd –add-service-ldap 3. Start …
Master-Slave Replication On Same Server To install MySQL see Install MySQL 8.0 on CentOS 8 I have use 2 different instances of MySQL running on …
Install new Kernel on CentOS 8 1. View current Kernel: uname -sr 2. Enable ELRepo repository: rpm –import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org yum install https://www.elrepo.org/elrepo-release-8.0-2.el8.elrepo.noarch.rpm 3. Check if …
Configure php for Apache 1. Add remi repository: yum install https://rpms.remirepo.net/enterprise/remi-release-8.rpm Install php: yum install php 2. Create a .php file in your Apache DocumentRoot …
2nd MySQL Instance 1. Add the following line to the default mysql-server.cnf file: server-id=1 port=3306 mysqlx=0 Create a new configuration file: vim /etc/my.cnf.d/mysql-server2.cnf Or copy …
Install MySQL 8.0 on CentOS 8 1. Install the repo: yum install https://repo.mysql.com/mysql80-community-release-el8-1.noarch.rpm 2. Check if repo has successfully been added: yum repolist enabled | …
Apache Vhost 1. First create a directory where all the vhost will be stored (mine will be in /etc/httpd/sites mkdir /etc/httpd/sites 2. Create a new …
Use .htaccess and .htpasswd to authenticate the access to website 1. Edit the AllowOverride None line in your vhost configuration file and change it to …