【问题标题】:Unable to install Ruby through Homebrew, Permission denied error无法通过 Homebrew 安装 Ruby,权限被拒绝错误
【发布时间】:2015-12-09 22:59:59
【问题描述】:

作为一个全新的编程新手,我正在尝试使用自制软件安装 Ruby。安装一直卡在“openssl”阶段。这似乎取决于目录的权限:

/usr/local/etc/openssl/

在此处和其他地方的在线研究表明尝试通过 Homebrew 单独安装“openssl”,我已经完成并以错误结束:

==> Downloading https://homebrew.bintray.com/bottles/openssl-1.0.2e.yosemite.bot
Already downloaded: /Library/Caches/Homebrew/openssl-1.0.2e.yosemite.bottle.tar.gz
==> Pouring openssl-1.0.2e.yosemite.bottle.tar.gz
Error: Permission denied - /usr/local/etc/openssl/certs
Warning: Bottle installation failed: building from source.
==> Downloading https://www.openssl.org/source/openssl-1.0.2e.tar.gz
Already downloaded: /Library/Caches/Homebrew/openssl-1.0.2e.tar.gz
==> perl ./Configure --prefix=/usr/local/Cellar/openssl/1.0.2e --openssldir=/usr
==> make depend

==> make
==> make test
==> make install MANDIR=/usr/local/Cellar/openssl/1.0.2e/share/man MANSUFFIX=ssl
Last 15 lines from /Users/Joe/Library/Logs/Homebrew/openssl/05.make:
SSL_want_read.3ssl => SSL_want.3ssl
SSL_want_write.3ssl => SSL_want.3ssl
SSL_want_x509_lookup.3ssl => SSL_want.3ssl
installing man3/SSL_write.3ssl
installing man3/d2i_SSL_SESSION.3ssl
i2d_SSL_SESSION.3ssl => d2i_SSL_SESSION.3ssl
installing man3/ssl.3ssl
Cannot create directory /usr/local/etc/openssl/certs: Permission denied
created directory `/usr/local/Cellar/openssl/1.0.2e/bin'
created directory `/usr/local/Cellar/openssl/1.0.2e/lib'
created directory `/usr/local/Cellar/openssl/1.0.2e/lib/engines'
created directory `/usr/local/Cellar/openssl/1.0.2e/lib/pkgconfig'
created directory `/usr/local/Cellar/openssl/1.0.2e/include'
created directory `/usr/local/Cellar/openssl/1.0.2e/include/openssl'
make: *** [install_sw] Error 13

所以我使用 'chown' 来更改 /openssl/ 目录的所有权并设法更进一步,但现在遇到了这个错误:

==> Downloading https://homebrew.bintray.com/bottles/openssl-1.0.2e.yosemite.bot
Already downloaded: /Library/Caches/Homebrew/openssl-1.0.2e.yosemite.bottle.tar.gz
==> Pouring openssl-1.0.2e.yosemite.bottle.tar.gz
Error: Permission denied - /usr/local/etc/openssl/misc/c_hash
Warning: Bottle installation failed: building from source.
==> Downloading https://www.openssl.org/source/openssl-1.0.2e.tar.gz
Already downloaded: /Library/Caches/Homebrew/openssl-1.0.2e.tar.gz
==> perl ./Configure --prefix=/usr/local/Cellar/openssl/1.0.2e --openssldir=/usr
==> make depend
==> make
==> make test
==> make install MANDIR=/usr/local/Cellar/openssl/1.0.2e/share/man MANSUFFIX=ssl
Last 15 lines from /Users/Joe/Library/Logs/Homebrew/openssl/05.make:
            *DSO_WIN32*) sfx="eay32.dll"; pfx=;; \
            *) sfx=".bad";; \
            esac; \
            cp ${pfx}gost$sfx /usr/local/Cellar/openssl/1.0.2e/lib/engines/${pfx}gost$sfx.new; \
        fi; \
        chmod 555 /usr/local/Cellar/openssl/1.0.2e/lib/engines/${pfx}gost$sfx.new; \
        mv -f /usr/local/Cellar/openssl/1.0.2e/lib/engines/${pfx}gost$sfx.new /usr/local/Cellar/openssl/1.0.2e/lib/engines/${pfx}gost$sfx; \
    fi
installing gost
making install in apps...
installing openssl
installing CA.sh
cp: /usr/local/etc/openssl/misc/CA.sh.new: Permission denied
make[1]: *** [install] Error 1
make: *** [install_sw] Error 1

再次,与 openssl 文件夹中的事物的权限有关吗?

有人知道怎么改吗?

我想最让我困惑的是我是这台计算机上的唯一用户,因此也是唯一的管理员,所以我无法理解为什么我没有权限访问任何内容?

我尝试过的另外两件事:

  • 在我的命令前使用 sudo
  • 完全重新安装 OS X

提前感谢您的帮助。

【问题讨论】:

  • 尝试把“sudo”放在你的命令前面。
  • 谢谢迈克,这确实是在我之前浏览这个网站时弹出来的,我试过了,我的终端只是告诉我我很懦弱,然后拒绝这样做?
  • 显然这是因为brew 必须由 root 拥有才能以 root 身份运行。看到这个stackoverflow.com/questions/19039404/…
  • 谢谢 Mike,我正在努力解决这个问题。

标签: ruby permissions homebrew


【解决方案1】:

仅仅成为机器上的唯一管理员用户并不意味着您使用该用户运行的所有命令都将以 root 权限运行。即使您没有获得 GUI 登录名,机器内部仍然有一个单独的 root 用户。这将是一个安全风险,它还有助于防止您通过运行破坏性命令而不在其前面拍打sudo而意外上吊。

您有两种选择来解决问题:

  1. 调整安装程序需要的每个目录的权限(在本例中为/usr/local/etc/openssl/misc)。看起来它需要基于错误的写权限。但是,一旦您克服了该特定错误,可能会有更多目录。

你可以像这样让它完全打开:

chmod -R 777 /usr/local/etc/openssl/misc

chown 一切归你自己:

chown -R "$USER":admin /usr/local
  1. 以 root 用户身份运行 brew(或通过 sudo 使用 root 权限)。这将要求您将 chown brew 可执行文件设置为 root 而不是您的用户。

【讨论】:

  • 我尝试将 brew 的所有权更改为 root 用户,但没有成功,从选项 1 开始。我可能需要一些时间!
  • 迈克,谢谢你的帮助!那是唯一需要更改的目录,现在全部完成!
猜你喜欢
  • 2011-05-20
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2018-10-09
  • 2018-11-14
  • 1970-01-01
相关资源
最近更新 更多