Apache+Tomcat+Memcached实现会话保持(2)

添加测试页面
下面两个测试页面各不相相同,所以要在各自的目录下分别创建。
在tomcatA中添加测试页面

shell > mkdir -pv /usr/local/tomcat/webapps/test/WEB-INF/{classes,lib} shell > vim /usr/local/tomcat/webapps/test/index.jsp 添加如下内容: <%@ page language="java" %> <html> <head><title>TomcatA</title></head> <body> <h1><font color="red">TomcatA.magedu.com</font></h1> <tablehljs-number">1"> <tr> <td>Session ID</td> <% session.setAttribute("magedu.com","magedu.com"); %> <td><%= session.getId() %></td> </tr> <tr> <td>Created on</td> <td><%= session.getCreationTime() %></td> </tr> </table> </body> </html>

在tomcatB中添加测试页面

shell > mkdir -pv /usr/local/tomcat/webapps/test/WEB-INF/{classes,lib} shell > vim /usr/local/tomcat/webapps/test/index.jsp <%@ page language="java" %> <html> <head><title>TomcatB</title></head> <body> <h1><font color="blue">TomcatB.magedu.com</font></h1> <tablehljs-number">1"> <tr> <td>Session ID</td> <% session.setAttribute("magedu.com","magedu.com"); %> <td><%= session.getId() %></td> </tr> <tr> <td>Created on</td> <td><%= session.getCreationTime() %></td> </tr> </table> </body> </html>

启动服务

systemctl start tomcat

四、Memcached配置

Mechached基本没有什么配置的,安装上启动服务即可.

yum install memcached systemctl start memcached 五、测试

使用浏览器访问,然后多次刷新,只要SessionID这一栏的数值不变就说明session已经保持不变

Apache+Tomcat+Memcached实现会话保持


Apache+Tomcat+Memcached实现会话保持

Ubuntu 17.10上安装LAMP(Apache,MariaDB,PHP7.1) 

Ubuntu 17.10上使用Apache+MariaDB+PHP7.1安装WordPress 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/f18105a47e16f834e9a1346827c02a4c.html