shadowsocks多用户系统配置搭建之moeSS

在做这所有开始前切记一定要确认你的PhP版本为5.4+,吐血查错经历!仅提供升级至php5.6方法

#git clone https://github.com/monoking/moeSS.git #下载moeSS
#mkdir /var/www/ss.izhukai.cn/
#mv moeSS/* /var/www/ss.izhukai.cn/ #将代码上传到(ss.izhukai.cn)网站根目录
#find /var/www/ss.izhukai.cn/ –type f –exec chmod 644 {} \;   #为了安全,将代码里面文件权限设置为644
#find /var/www/ss.izhukai.cn/ –type d –exec chmod 755 {} \;   #为了安全,将代码里面目录权限设置为755
 #groupadd www
#useradd -g www www
# vim /etc/httpd/conf/httpd.conf#查找User将原先Apache配置改成用户和用户组www
#service httpd restart#服务重新启动
#chown -R www.www /var/www/ss.izhukai.cn/  #修改代码用户和所在组设置为www

 

 

例如你的 root用户现在没有密码,你希望的密码修改为123456,那么命令是:
mysqladmin -u root password 123456
2.如果你的root现在有密码了(123456),那么修改密码为abcdef的命令是:
mysqladmin -u root -p password abcdef
注意,命令回车后会问你旧密码,输入旧密码123456之后命令完成,密码修改成功。

写在最后,所有安装完成后,会报PHP的一个小错误:

A PHP Error was encountered

Severity: Warning

Message: date(): It is not safe to rely on the system’s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone ‘UTC’ for now, but please set date.timezone to select your timezone.

Filename: views/index_footer.php

在/etc/php.ini里加上找到date.timezone项打开该项并设置date.timezone = “Asia/Shanghai”,重启环境就ok了。

 

502 Server dropped connection

The following error occurred while trying to access http://youtube.com/:

浏览器连接外网,显示502 server dropped connection ,
# python server.py连接上去一直显示WARNING unsupported addrtype 243, maybe wrong password 。原来是在ss-panl的加密方式选错了之前都是aes-256-cfb,现在配置的默认为rc4-md5。重新配置shadowsocks-manyuser/shadowsocks/config.json内”method”:”aes-256-cfb”

《shadowsocks多用户系统配置搭建之moeSS》有1个想法

  1. 搬瓦工vps用自带的shadowsocks装了以后,自己那台买vps的机器能用ss,但是别的机器一访问外网就是502 server dropped connection,看了楼主说的加密方式没有错。不知道什么问题?难道是还需要配置哪里添加端口访问数量吗?

发表评论

邮箱地址不会被公开。 必填项已用*标注