- 论坛徽章:
- 0
|
做了如下配置
首先,修改 php.ini的 session.save_path 选项修改如下:
session.save_path = "2;/tmp/php_sess" (去掉前面分号)
意为把session存放在 "/tmp/php_sess" 目录下,并且分成 2 级子目录,每级子目录又分别有 16 个子目录。
2.假设php的主目录为 /usr/local/server/php/,则新建一个文件 /usr/local/server/php/include/php/ext/session/mod_files.sh,其内容如下:
#! /bin/sh
# NAME
# mod_files.sh - Update of the php-source/ext/session/mod_files.sh
#
# SYNOPSIS
# mod_files.sh basedir depth [numberofsubdirs]
#
# DESCRIPTION
# this script creates the directories tree used by php to store the session files
# (see php.ini - 'session.save_path' option)
#
# Example: if you want php to store the session files in a directory tree
# of 3 levels of depth containing 32 directories in each directory,
# first, put the setting bellow in the php.ini file:
#
# session.save_path = "3;/tmp/session"
#
# Now create the basedir directory: 'mkdir /tmp/session'
#
# Then, call this scrip with the following arguments:
#
# ./mod_files.sh ./mod_files.sh /tmp/session 3 32
if test "$2" = ""; then
echo "usage: $0 basedir depth [numberofsubdirs]"
echo "numberofsubdirs: if unset, defaults to 16. if 32, 32 subdirs, if 64, 64 subdirs."
exit 1
fi
if test "$2" = "0"; then
exit 0
fi
hash_chars="0 1 2 3 4 5 6 7 8 9 a b c d e f"
if [ ! -z $3 ] ; then
if test "$3" -a "$3" -eq "32"; then
hash_chars="$hash_chars g h i j k l m n o p q r s t u v"
if test "$3" -eq "64"; then
hash_chars="$hash_chars w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z - ,"
fi
fi
fi
for i in $hash_chars; do
newpath="$1/$i"
mkdir $newpath || exit 1
sh $0 $newpath `expr $2 - 1` $3
done
3.设置为可执行之后,运行以下命令来创建哈希目录:
#cd /usr/local/server/php/include/php/ext/session/
#./mod_files.sh /tmp/php_sess 2 16
4现在,就开始设置 NFS 共享了。假定有3台主机,ip分别为192.168.0.1(主机名svr1)、192.168.0.2(主机名svr2)、192.168.0.3(主机名svr3),现在让192.168.0.1来提供NFS共享服务,配置 /etc/exports,加入如下内容:
/tmp/php_sess/ svr*(rw,no_root_squash) #(意思是:允许svr*所以的机器来访问,如果不能挂载,把主机名字改成IP地址)
5.然后重启 nfs 服务,即可对另外两台主机提供NFS共享了。
在 svr2、svr3 上执行以下命令来挂在NFS:
#mkdir /tmp/php_sess
#mount svr1:/tmp/php_sess /tmp/php_sess (如果不能挂载,使用IP地址)
用NFS来存储session的缺点是,session过期后不能自动清除,必须自己设定回收机制,我们可以利用crontab来定期回收,用用以下shell命令即可:
find /tmp/php_sess -mmin +30 | xargs rm -fr
意思是,删除30分钟以前的session文件,最后,在其他主机上对 php.ini 增加/修改上面提到的内容,然后重启WEB
测试一直出不成功!!!郁闷啊
我在A 服务用如下PHP页面:
PHP页面:vi sess.php
<?php
session_start();
$_SESSION['ID'] ='ABCDEEF';
echo $_SESSION['ID'];
?>
我在B服务用如下PHP页面:
PHP页面:vi sess.php
<?php
session_start();
$_SESSION['ID'] ;
echo $_SESSION['ID'];
?>
按上面php文件,我打开浏览器输入http:/A/sess.php能正常显示ABCDEEF
但是我打B服务器浏览器输入http:/B/sess.php显示空白一片。
按上面配置文件过程,B服务应该会去读取A服务session啊,也显示ABCDEEF才对呀。
那错了,帮帮我。 |
|