1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

アプリケーションサーバと頑張りたいときに参考にするリンク集

Last updated at Posted at 2018-05-29

GlassFish / Payara

WebLogic

Tomcat

Tomcatのバージョンを確認する方法
# macOS Big Sur
$ /usr/local/Cellar/tomcat/9.0.43/bin/catalina version
...省略...
Server version: Apache Tomcat/9.0.43

# CentOS Linux release 7.6.1810 (Core)
$ /{インストールディレクトリ}/apache-tomcat-6.0.53/bin/version.sh
...省略...
Server version: Apache Tomcat/6.0.53

# Windows10 : バッチをクリックするとバージョンを見る前にプロンプトが閉じるから、コマンドプロンプトから実行する
> {インストールディレクトリ}\apache-tomcat-8.5.61\bin\version.bat
...省略...
Server version: Apache Tomcat/8.5.61
# EclipseでTomcatを使っている場合のデプロイ先
{ワークスペースディレクトリ}/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/{プロジェクト}/WEB-INF/

# ログの場所
{インストールディレクトリ}/apache-tomcat-8.5.61/logs/

困った

Apache

# バージョンを見たい
$ apachectl -v
Server version: Apache/2.4.29 (Unix)
Server built:   Dec 28 2017 00:52:51
$ httpd -v
Server version: Apache/2.4.29 (Unix)
Server built:   Dec 28 2017 00:52:51
# 起動したい
$ sudo systemctl start httpd
# 停止したい
$ sudo systemctl stop httpd
# 状態を確認したい
$ systemctl status httpd
# 設定ファイルをチェックしたい
$ sudo service httpd configtest

いろんな場所

OS もの 場所
RHEL ログ /var/log/httpd/
RHEL 設定ファイル /etc/httpd/conf/httpd.conf

困った

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?