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 …
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 …
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 | …
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 …
Rewrite HTTP to HTTPS 1. Edit vhost to add the following lines to it: RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{SERVER_NAME}/$1 [R,L] 2. Restart …
Change Apache DocumentRoot 1. Using your text editor (mine will be vim) open the Apache configuration file: vim /etc/httpd/conf/httpd.conf 2. Find the DocumentRoot section: 3. …
Install Apache Web Server 1. First update all the installed package using: yum update -y 2. Next install Apache HTTP Server from the default software …