linux

How to test RSA Keys in AlmaLinux 9 ?

To test if your RSA keys (public and private) can authenticate an SSH session on your AlmaLinux 9 server, you can follow these steps: Step 1: Ensure the Public Key is on the Server Place your public key in the ~/.ssh/authorized_keys file for the user you want to SSH into. Make sure it’s set up like this: cat your_public_key_file.pub >> ~/.ssh/authorized_keys Ensure the permissions are correct: chmod 600 ~/.ssh/authorized_keys chmod 700 ~/.ssh Step 2: Test SSH Login Using the Private Key […]

How to test RSA Keys in AlmaLinux 9 ? Read More »

Using curl to test speed test of url

I like some fast way to test the connection speed from my local host or my server, so I often use this way to test the connect time speed. time curl -o /dev/null -s -w “Connect: %{time_connect}s\nTTFB: %{time_starttransfer}s\nTotal time: %{time_total}s\n” [URL] Replace [URL] with the URL you want to test. Here’s a breakdown of the command: time: This will measure the real elapsed time of the entire command. -o /dev/null: Discards the output of the curl command. -s: Makes curl operate in “silent”[…]

Using curl to test speed test of url Read More »

Error: Package: ImageMagick6-6.9.11.3-1.el7.remi.x86_64 (@remi)

Error message Error: Package: ImageMagick6-6.9.11.3-1.el7.remi.x86_64 (@remi) Requires: ImageMagick6-libs(x86-64) = 6.9.11.3-1.el7.remi Removing: ImageMagick6-libs-6.9.11.3-1.el7.remi.x86_64 (@remi) ImageMagick6-libs(x86-64) = 6.9.11.3-1.el7.remi Obsoleted By: ImageMagick-libs-6.9.11.60-1.el7.remi.x86_64 (remi) ~ImageMagick-libs(x86-64) = 6.9.11.60-1.el7.remi Error: Package: ImageMagick6-c++-6.9.11.3-1.el7.remi.x86_64 (@remi) Requires: ImageMagick6-libs(x86-64) = 6.9.11.3-1.el7.remi Removing: Im[…]

Error: Package: ImageMagick6-6.9.11.3-1.el7.remi.x86_64 (@remi) Read More »

stack Error: EACCES: permission denied sqlite3

Installing n8n npm install n8n -g npx n8n What is n8n ? n8n (pronounced n-eight-n) helps you to interconnect every app with an API in the world with each other to share and manipulate its data without a single line of code. It is an easy to use, user-friendly and highly customizable service, which uses an intuitive user interface for you to design your unique workflows very fast. Hosted on your server and not based in the cloud, it keeps your sensible data very secure in your own trusted databas[…]

stack Error: EACCES: permission denied sqlite3 Read More »

Server installation process already in progress – waiting and retrying

This happen after my MacBook Pro wakeup from sleep. I cannot connect back to my server using Visual Studio Code. Output log from Visual Studio Code [16:26:43.681] Server installation process already in progress – waiting and retrying [16:26:43.681] Terminating local server [16:26:43.687] Local server exit: 15 [16:26:44.688] askpass server listening on /var/folders/gx/czncylwj1hx6d3_l41862hf40000gn/T/vscode-ssh-askpass-53d9a6d10ba0ccdb298527c460e7eece6924ff2c.sock [16:26:44.689] Spawning local se[…]

Server installation process already in progress – waiting and retrying Read More »