1openssl x509 -noout -modulus -in certificate.crt | openssl md5 2openssl rsa -noout -modulus -in privateKey.key | openssl md5 3openssl req -noout -modulus -in CSR.csr | openssl md5
Read MoreIt's quite expected that certificate won't renew as the automation has been broken. What you can do is install the apache version of certbot 1yum install python-certbot-apache and re-issue the certificate 1sudo certbot --apache -d www.example.org
Read MoreThis could be an incorrect use of certificates. Make sure to use the following (translate to nginx if you're not using apache) 1SSLCertificateFile /etc/letsencrypt/live/example.com/cert.pem 2SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem 3Include /etc/letsencrypt/options-ssl-apache.conf …
Read MoreYou just received a D8 database dump and it is said to be complete. However, you see this error: 1[notice] Missing database table: key_value Said table is part of drupal8 so it can't go missing. It could be that the table names for this site has prefix. Check using the command: {code} drush sql-drush "show …
Read MoreBelow are some common performance-impacting issues that your environment(s) may be experiencing: Traffic: Increased traffic to your environment(s) may be causing service to be interrupted on those environments. Apache access logs: https://docs.acquia.com/acquia-cloud/monitor/logs/ Insight: …
Read MoreNoticed this one in a compromised machine by a cryptocurrency(monero) miner: 1icasimpan@example-prod:~$ scp wp.example.com-HTMLonly.tgz icasimpan@another-example.info:~/ 2command-line: line 0: Bad configuration option: PermitLocalCommand 3lost connection Fix was to remove and re-install openssh-server 1sudo apt-get …
Read MoreSample 1icasimpan-local:~ icasimpan$ ssh root@99.206.157.36 2@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 3@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ 4@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 5IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! 6Someone could be …
Read Morevi /etc/postfix/main.cf remove the domain 1... 2... 3#mydestination = example.com, localhost.com, localhost 4mydestination = localhost 5... 6... Then restart postfix: 1/etc/init.d/postix restart See some further discussion in https://www.digitalocean.com/community/questions/why-won-t-postfix-deliver-mail-to-own-domain
Read MoreMost probably caused by CSS/JS Aggreggation. Disable it by doing the following: Can edit settings.php - add the following: 1$config['system.performance']['css']['preprocess'] = FALSE; 2$config['system.performance']['js']['preprocess'] = FALSE; In Drupal Admin …
Read MoreDrupal 8: Entities neeeds to be deleted before importing error
The following was seen during configuration import (drush cim) 1The import failed due to the following reasons: 2Entities exist of type <em class="placeholder">Shortcut link</em> and <em class="placeholder">Shortcut set</em> <em …
Read More