Skip to Content

  The SSH authorized_keys file is a file that contains a list of public keys that are authorized to log in to the server. This file is used to prevent unauthorized users from connecting to the SSH server. The primary purpose of this guide is to illustrate the use of the ~/.ssh/authorized_keys file. After reading …

Read More about What is SSH authorized_keys file and how to check it

we can use kubeconfig configuration file to store information about different clusters, users, namespaces, and authentication mechanisms. Understanding kubeconfig A context element in a kubeconfig file is used to group access parameters under a convenient name. Each context has three parameters: cluster, namespace, and user. By default, the kubectl command-line tool uses parameters from the …

Read More about 5 Useful Kubeconfig Examples and kubectl config Commands

SSL_ERROR_SYSCALL typically occurs when the server side is using an SSL certificate to authenticate. This article covers how to fix SSL_ERROR_SYSCALL error in 5 ways. SSL_ERROR_SYSCALL Error $ git clone https://github.com/xxx/xxx.git fatal: unable to access ‘https://github.com/xxx/xxx.git/’: LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443 Understanding SSL_ERROR_SYSCALL Error This error typically occurs when the TCP three-way handshake between …

Read More about 5 Ways to Fix SSL_ERROR_SYSCALL