タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

tomcatとサーバ構築に関するround_teaのブックマーク (3)

  • Apache Tomcat 6.0 (6.0.53) - Clustering/Session Replication HOW-TO

    <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/> to your <Engine> or your <Host> element to enable clustering. Using the above configuration will enable all-to-all session replication using the DeltaManager to replicate session deltas. By all-to-all we mean that the session gets replicated to all the other nodes in the cluster. This works great for smaller cluster but we don't re

    round_tea
    round_tea 2011/10/20
    クラスタリング設定 公式ドキュメント(英語) 各コンテキストの詳細説明は http://tomcat.apache.org/tomcat-6.0-doc/config/cluster.html
  • Tomcat5めも

    作成 2003/1/6 更新 2003/1/8 Tomcat5の新機能についてメモってきます。 クラスタリング ロードバランス J2EE1.4 JSP2.0 Servlet2.4 クラスタリング クラスタリングとは、システムの信頼性を高めるための仕組みです。複数のサーバを起動しておいて、1つがクラッシュしてしまった場合でも他のサーバで処理を引き継げるようにします。JavaのWebアプリケーションサーバでクラスタを組むときに問題になるのは、セッションデータです。一台がダウンしたときに、別のサーバで処理をひきつぐにしても、それまでのセッションデータがないことには、処理が引き継げません。そのために、セッションデータをサーバ間で複製しておく仕組みをセッションレプリケーションと言います。Tomcatにはこれまで、セッションレプリケーションの仕組みがなく、この点が商用アプリケーションに比べて、機能的に

    round_tea
    round_tea 2011/10/20
    セッションレプリケーション 確認のExampleはtomcat6では /examples/servlets/servlet/SessionExample
  • Tomcat6.0でセッションレプリケーション - TrinityT's BLOG

    フェイルオーバーを目的とした冗長構成実現のため、セッションレプリケーション設定を行ってみることにした。 備忘録として以下に。 前提 Tomcat6.0 SimpleTcpClusterを利用し、メモリでのセッションレプリケーションを行う。 設置環境は以前作ったcoLinux:CentOS5.2の2環境([Cent1,IP:192.168.0.11][Cent2,IP:192.168.0.12]) ー 構成は以下 web | [Cent1,IP:192.168.0.11] [Cent2,IP:192.168.0.12] Apache (mod_proxy_balancerでバランシング) |___________________________________ | | Tomcat Tomcat サーバ側 ポート設定 初期状態ではCentOSのFWのマルチキャスト用のポートが空いていなかった

    Tomcat6.0でセッションレプリケーション - TrinityT's BLOG
    round_tea
    round_tea 2011/10/20
    クラスタリング時のセッションレプリケーション設定
  • 1