いろいろなバージョン確認をするお話
-v だったり -V だったり –version だったり
OS
CentOS
# cat /etc/redhat-release
Ubuntu
# cat /etc/lsb-release
Amazon Linux
# cat /etc/system-release
FreeBSD
# uname -a
Webエンジン
NGINX
# nginx -v
Apache
# httpd -v
言語
PHP
# php7 -v
Ruby
# ruby -v
Python
# Python -V
DB
MariaDB
# mysql --version
SQLite
# sqlite3 --version
PostgreSQL
# psql --version
その他
OpenSSH
# ssh -v
OpenSSL
# openssl version # //上記は正確ではないらしい # //phpで有効になっているバージョンを確認する # php7 -i | grep OpenSSL
git
# git --version
コメント