freemanzk2018-01-08 15:16:00
发布到技术

Ruby Thin服务器——比Rails自带的Webrick快不止一个档次!

最快速的上手方法:(亲测可用,效果明显)

1.安装gem_在控制台输入 gem install thin

2.运行服务器 在网站对应的目录下 输入 start thin 替换原来的 Rails server


1. 获得thin 

  gem install thin 

2. 安装thin 
   thin install 
会添加一个/etc/thin的目录,还会告诉你如何把Thin加为自动启动 
引用
To configure thin to start at system boot: 
on RedHat like systems: 
  sudo /sbin/chkconfig --level 345 thin on 
on Debian-like systems (Ubuntu): 
  sudo /usr/sbin/update-rc.d -f thin defaults 
on Gentoo: 
  sudo rc-update add thin default 

3. 创建应用配置文件 
Linux代码  收藏代码
  1. sudo thin config -C /etc/thin/<config-name>.yml -c <rails-app-root-path> --servers <number-of-threads> -e <environment>    


下面是两个例子: 
Linux代码  收藏代码
  1. thin config -C /etc/thin/redmine.yml -c /var/www/redmine --servers 5 -e production    
  2. thin config -C /etc/thin/myapp.yml -c /var/rails/myapp --servers 5 --socket /tmp/thin.myapp.sock -e production    

当执行第一条config命令,可能得到/etc/thin/redmine.yml内容如下: 
Yml代码  收藏代码
  1. ---  
  2. address: localhost  
  3. pid: tmp/pids/thin.pid  
  4. wait: 30  
  5. port: 3000  
  6. timeout: 30  
  7. log: log/thin.log  
  8. max_conns: 1024  
  9. require: []  
  10.   
  11. environment: production  
  12. max_persistent_conns: 512  
  13. servers: 5  
  14. daemonize: true  
  15. chdir: /var/www/redmine  

注:我这里address为0.0.0.0,被手动修改成ocalhost 

4。启动应用 
sevice thin start 
将会启动3000~3004共5个端口。 
如果你有Nginx就可以设置一个代理转发了