sharedance 다운로드
sharedance의 최신버전은 http://sharedance.pureftpd.org/ 다운로드
혹시 libevent 설치 안되어있으면 설치하고 만약 설치되어있는데도 에러 나오면 삭제했다가 재설치 해주면됨.
설치되면 설치파일이고 뭐고 찾을수가없음.
/usr/local/sbin/sharedanced 파일이있다. 이걸 실행해야하는데 백그라운드로 실행함.
Mkdir /sharedance
권한 변경 chmod 777 /sharedance
Sharedance 는 세션이니까 tmp 처럼 세팅해야한다.
fstab 설정
vim /etc/fstab 열고 아래 입력
tmpfs /sharedanced tmpfs defaults,nosuid,noexec,nodev,noatime,nodiratime,size=1000M 0 0
/usr/local/sbin/sharedanced --directory=/sharedance & ## 빽그라운드 실행
Sharedance 는 1042 포트를 사용함으로 1042가 떴는지 확인
클라이언트 서버로 파일복사
Sharedance 설치 경로에 보면 php 디렉터리가 있다. 디렉터리에서 다음 파일을 WAS 서버에 복사한다.
session_handler.php
sharedance.php
session_handler.php 파일만 수정하면 됨.
수정 전 : define('SESSION_HANDLER_HOST', 'localhost');
수정 후 : define('SESSION_HANDLER_HOST', '121.254.253.209'); ## sharedance 서버로 지정
Php.ini 파일 수정
수정 전 : Auto_prepend_file=
수정 후 : Auto_prepend_file=/usr/local/php/etc/session_handler.php
인터넷에서는 session.save_handler=files 부분을 session.save_handler=users 로 변경하라고 했는데
안해도됨.
Apache restart
'Linux' 카테고리의 다른 글
php soap 모듈 추가 (0) | 2015.10.30 |
---|---|
웹페이지를 빠르게! nginx pagespeed 설치 (5) | 2015.10.30 |
centos6 samba 설치 (0) | 2015.10.30 |
php-fpm status 확인 페이지 설정방법 (0) | 2015.10.13 |
apache geoip 설정 (0) | 2015.09.30 |