添加测试页面
下面两个测试页面各不相相同,所以要在各自的目录下分别创建。
在tomcatA中添加测试页面
在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已经保持不变
在Ubuntu 17.10上安装LAMP(Apache,MariaDB,PHP7.1)