centos部署ruby on rails-V2.3.3

1、安装各种依赖的gem

    yum install make gcc openssl-devel zlib-devel gcc gcc-c++make autoconf readline-devel curl-devel expat-devel gettext-devel ncurese-develmysql-develhttpd-devel wget which

2、curl -O -Lhttps://cache.ruby-lang.org/pub/ruby/ruby-2.3.3.tar.gz  下载

3、tar xf ruby-2.3.3.tar.gz  解压

4、cd ruby-2.3.3/

5、./configure --prefix=/usr/local/ruby

6、make

7、make install

8、ruby -v

9、gem install rails-v = 5.1.6

10、rake secret RAILS_ENV=production    //生成production密码

11、将上面生成的密码放进/etc/profile.d/st_rails_secret_key_env.sh中,内容如下

export SECRET_KEY_BASE='密码'



12、puma.rb的设置:

# Puma can serve each request in a thread from an internal thread pool.

# The `threads` method setting takes two numbers: a minimum and maximum.

# Any libraries that use thread pools should be configured to match

# the maximum value specified for Puma. Default is set to 5 threads for minimum

# and maximum; this matches the default thread size of Active Record.

#

threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }

threads threads_count, threads_count

# Specifies the `port` that Puma will listen on to receive requests; default is 3000.

#

port        ENV.fetch("PORT") { 3001 }

# Specifies the `environment` that Puma will run in.

#

environment ENV.fetch("RAILS_ENV") { "development" }

# Specifies the number of `workers` to boot in clustered mode.

# Workers are forked webserver processes. If using threads and workers together

# the concurrency of the application would be max `threads` * `workers`.

# Workers do not work on JRuby or Windows (both of which do not support

# processes).

#

# workers ENV.fetch("WEB_CONCURRENCY") { 2 }

# Use the `preload_app!` method when specifying a `workers` number.

# This directive tells Puma to first boot the application and load code

# before forking the application. This takes advantage of Copy On Write

# process behavior so workers use less memory. If you use this option

# you need to make sure to reconnect any threads in the `on_worker_boot`

# block.

#

# preload_app!

# If you are preloading your application and using Active Record, it's

# recommended that you close any connections to the database before workers

# are forked to prevent connection leakage.

#

# before_fork do

#  ActiveRecord::Base.connection_pool.disconnect! if defined?(ActiveRecord)

# end

# The code in the `on_worker_boot` will be called if you are using

# clustered mode by specifying a number of `workers`. After each worker

# process is booted, this block will be run. If you are using the `preload_app!`

# option, you will want to use this block to reconnect to any threads

# or connections that may have been created at application boot, as Ruby

# cannot share connections between processes.

#

# on_worker_boot do

#  ActiveRecord::Base.establish_connection if defined?(ActiveRecord)

# end

#

# Allow puma to be restarted by `rails restart` command.

plugin :tmp_restart

13、 nginx安装

yum install nginx

配置文件在/etc/nginx/conf.d/

配置内容如下:

upstream orange{

       #server 127.0.0.1:3000;//development用,就是测试用的

       #keepalive 64;//development用,就是测试用的

       server unix:/home/www/orange/tmp/sockets/puma.sock fail_timeout=0;//production用

}

server {

       listen 8001;

       server_name 网址,不要http:https:;

       location / {

                proxy_set_header Host$http_host;

                proxy_set_headerX-Forwarded_For $proxy_add_x_forwarded_for;

                proxy_redirect off;

                proxy_pass http://项目名;

                proxy_set_header Connection '';

                proxy_http_version 1.1;

                chunked_transfer_encoding off;

                proxy_buffering off;

                proxy_cache off;

       }

       location ~ \.(htm|html|shtml|gif|jpg|jpeg|png|ico|css|js|f|v|swf)$ {

                root 项目全路径/public;

                access_log off;

                expires max;

       }

       location ~ ^/(frame/) {

                root 项目全路径/public;

                access_log off;

                expires max;

       }

        error_page 500 502 503 504 /500.html;

       client_max_body_size 4G;

       keepalive_timeout 10;

}

nginx启动:systemctl start nginx.service

nginx重启:systemctl restart nginx.service

nginx状态:systemctl status nginx.service

如果一切进展顺利的话,现在你可以通过你的域名或IP来访问你的Web页面来预览一下Nginx的默认页面;

如果看到这个页面,那么说明你的CentOS 7 中 web服务器已经正确安装。


开机启动nginx: sudo systemctl enable nginx.service

网站文件存放默认目录

/usr/share/nginx/html

网站默认站点配置

/etc/nginx/conf.d/default.conf

自定义Nginx站点配置文件存放目录

/etc/nginx/conf.d/

Nginx全局配置

/etc/nginx/nginx.conf

Nginx启动

nginx -c nginx.conf


在这里你可以改变设置用户运行Nginx守护程序进程一样,和工作进程的数量得到了Nginx正在运行,等等。

14、 配置开机启动puma: 

 路径:/usr/lib/systemd/system/ 建立文件 ****.service 内容如下:

          [Unit]

 Descriptionb = Puma HTTP Server

 After=network.target 

   [Service]

 Type=simple 

 $Type=forking

   User=root 

   WorkingDirectory=项目路径  

   ExecStart=/bin/bash -lc 'bundle exec puma -e production -C 项目路径/config/puma.rb'  

 Restart=always

 RestartSec=30

   [Install]

 WantedBy=multi-user.target 

       保存后:systemctl enable orange.service开启服务

       确保mariadb(数据库),nginx,自定义脚本(puma)可以开机启动,即可! 查看开机启动项:systemctl list-unit-files    

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,874评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,102评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,676评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,911评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,937评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,935评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,860评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,660评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,113评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,363评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,506评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,238评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,861评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,486评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,674评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,513评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,426评论 2 352

推荐阅读更多精彩内容