LoginSignup
0
0

More than 3 years have passed since last update.

Web系の定番ソフトウェアのバージョンを確認する。

Last updated at Posted at 2020-09-12

次のコマンドを発行する。

CentOS

cat /etc/redhat-release

Apache

httpd -v

Java

java -version

Python

python --version
python3 --version

PHP

php -v

WordPress

cat wordpress/wp-includes/version.php
# $wp_versionの値を確認する。

MySQL

-- MySQL接続後に次のSQL文を発行する。
select version();

Oracle Database

-- OracleDB接続後に次のSQL文を発行する。
select * from v$version;

備考

本記事はブログ「雑用エンジニアの技術ノート」からの移行記事です。先のブログは削除予定です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0