• Skip to main content

Uly.me

cloud engineer

  • Home
  • About
  • Archives

location

Wiki SSL Certificate Location

November 12, 2021

Here’s where the Wiki keeps its SSL certificate keys.

/etc/pki/tls/certs/yourdomain.crt
/etc/pki/tls/private/yourdomain.key

/etc/pki/tls/certs/yourdomain.crt /etc/pki/tls/private/yourdomain.key

In some cases, SSL needs to be converted so it doesn’t prompt you for a password if you restart Apache.

Conversion

openssl rsa -in /etc/pki/tls/private/yourdomain.key.new -out /etc/pki/tls/private/yourdomain.key.new_no_pass

openssl rsa -in /etc/pki/tls/private/yourdomain.key.new -out /etc/pki/tls/private/yourdomain.key.new_no_pass

Filed Under: Linux Tagged With: apache, certificate, location, password, ssl, wiki

Where in Windows

October 6, 2021

How to find where the executable is located in Windows? Use the where command in CMD.

where gcloud
C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin\gcloud
C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin\gcloud.cmd

where gcloud C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin\gcloud C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin\gcloud.cmd

It will list multiple locations if you have several versions installed on your system.

Filed Under: Misc Tagged With: command, executable, location, where, windows

Where’s php.ini?

October 5, 2021

How to find where php.ini is being from the command line.

$ php -i | grep 'grep 'Configuration File'
Configuration File (php.ini) Path => /etc
Loaded Configuration File => /etc/php.ini

$ php -i | grep 'grep 'Configuration File' Configuration File (php.ini) Path => /etc Loaded Configuration File => /etc/php.ini

Filed Under: Linux Tagged With: config, location, php.ini, where

Terraform Installation

April 9, 2019

Where did I install Terraform?

cd /usr/local/bin/
terraform --version

cd /usr/local/bin/ terraform --version

Filed Under: Linux Tagged With: installed, location, terraform

  • Home
  • About
  • Archives

Copyright © 2023