gpt4 book ai didi

由于 Errno::EPERM, unicorn 无法在 Vagrant 盒子上启动

转载 作者:行者123 更新时间:2023-12-04 10:04:32 24 4
gpt4 key购买 nike

当我运行以下命令在我的 Vagrant 机器上为 Sinatra 应用程序启动 Unicorn 时(ubuntu-12.04.2-server-i386)

sudo unicorn -c unicorn.rb -E development -D -l 0.0.0.0:8080

我在 Unicorn 日志中收到以下错误。
I, [2013-05-05T19:15:15.538805 #2357]  INFO -- : listening on addr=0.0.0.0:8080 fd=5
F, [2013-05-05T19:15:15.541673 #2357] FATAL -- : error adding listener addr=/home/vagrant/tmp/myapp/sockets/unicorn.sock
/home/vagrant/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/unicorn-4.3.1/lib/unicorn/socket_helper.rb:140:in `initialize': Operation not permitted - "/home/vagrant/tmp/myapp/sockets/unicorn.sock" (Errno::EPERM)

我以 vagrant 用户身份登录并按照 http://recipes.sinatrarb.com/p/deployment/nginx_proxied_to_unicorn 配置了 unicorn.rb
@dir = '/home/vagrant/myapp/'

worker_processes 4
working_directory @dir

timeout 30

listen "#{@dir}tmp/sockets/unicorn.sock", :backlog => 64
pid "#{@dir}tmp/pids/unicorn.pid"

stderr_path "#{@dir}log/unicorn.stderr.log"
stdout_path "#{@dir}log/unicorn.stdout.log"

我查看了代码,但无法初始化以下内容
Kgio::UNIXServer.new('0.0.0.0:8080')

最佳答案

Unicorn 无法将 .sock 文件存储在 Virtual Box 共享文件夹中,因此您需要做的是从这里修改套接字:

listen "#{@dir}tmp/sockets/unicorn.sock", :backlog => 64

对此:
listen "/tmp/sockets/unicorn.sock", :backlog => 64

或者 VBox 共享文件夹之外的其他位置。

关于由于 Errno::EPERM, unicorn 无法在 Vagrant 盒子上启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16388342/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com