Check first the names of your container: 1docker ps Technically though, it's just running a shell, so run as follows: 1docker exec -it <container-name> /bin/bash In case you see this error: 1OCI runtime exec failed: exec failed: container_linux.go:349: starting container process caused "exec: …
Read MoreIf you even have a need to connect to a remote laptop, tmate is the solution. Had tried this personally in MacOS Catalina (10.15.5) and it works fine. 1brew install tmate I encountered this error though after installation: 1$ tmux 2dyld: Library not loaded: /usr/local/lib/libevent-2.0.5.dylib 3Referenced from: …
Read MoreNginx SSL PEM_read_bio End of Line Error
2020-07-27 · 1 min read · sslcert tlscert nginx troubleshooting error network-solutions network-solutions-cert ·We had this ssl cert issued by Network Solutions 1root@www:/etc/nginx/conf.d/ssl/example-2020# unzip -l EXAMPLE.ORG.zip 2Archive: EXAMPLE.ORG.zip 3Length Date Time Name 4--------- ---------- ----- ---- 52150 2020-07-14 16:59 DV_NetworkSolutionsDVServerCA2.crt 6Network Solutions DV Intermediate CA 72093 2020-07-14 16:59 …
Read Morebruteforce method - remove and replace /etc/nginx-cache Tool (untested) - https://github.com/perusio/nginx-cache-purge
Read MoreCheck if php-fpm service is up Check if being listened to by nginx (for CentOS, look for "listen" in /etc/php-fpm.d/www.conf) Adjust nginx vhost (fastcgi_pass) when necessary (example below) 1fastcgi_pass 127.0.0.1:9000;
Read MoreSolution: In server block, add "client_max_body_size" directive like the following 1server { 2listen 8080; 3client_max_body_size 100M; 4... 5... 6} See details in https://www.cyberciti.biz/faq/linux-unix-bsd-nginx-413-request-entity-too-large/
Read MoreWhen you see similar error as below: 1user@example:~$ kubectl get nodes 2The connection to the server localhost:8080 was refused - did you specify the right host or port? Check for the "$KUBECONFIG" if set and "kubectl config view" output. Chances are, both are empty like below: 1user@example:~$ …
Read More
1~$ git fetch 2fatal: unable to access 'https://github.com/icasimpan/example.git/': SSL connect error Fixed by: 1yum update -y nss curl libcurl
Read MoreAll the certificates (including Intermediates) should be displayed 1openssl s_client -connect www.google.com:443 Web UI checking possible in https://www.sslshopper.com/ssl-checker.html
Read More