macOS Keychain Access quirk why you can't delete items from the UIArticle contains
  1. Workaround for deleting keychain items
  2. How can I remove an item from Keychain Access using the command line?
macOS, Apache and ERR_CONNECTION_REFUSED fixArticle contains
  1. Fixing Apache ERR_CONNECTION_REFUSED error on macOS
  2. Understanding the terminal command
  3. Restarting Apache
  4. Summary

macOS, Apache and ERR_CONNECTION_REFUSED fix

The ERR_CONNECTION_REFUSED error is a common issue that occurs when a website or local server is inaccessible. This error indicates that the Apache server has refused the connection attempt, and it can be caused by various factors.

One possible cause is a hard shutdown of a macOS computer. When a macOS computer is forcibly turned off, all running processes, including Apache, are immediately terminated. This is because a hard shutdown bypasses the normal shutdown procedure, which allows the operating system to properly close running applications and services. As a result, Apache may not be able to restart automatically, leading to a connection refusal when you try to access the server again.

Continue reading “macOS, Apache and ERR_CONNECTION_REFUSED fix”
Create a self-signed SSL certificate for Node.js on MacOSArticle contains
  1. Generate a Self-Signed SSL Certificate for Node.js on MacOS (with Code Examples)
  2. Inspecting Node.js code