- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我似乎无法弄清楚如何修复当我向 OpenShift Online 进行 git 推送时遇到的这个 bundle 安装错误(在 mysql gem 上)。当它到达 mysql gem 时,我在执行 make 时收到错误“cannot find -lmysqlclient”(见下文)。
我使用 MySQL5.5 在 OpenShift Online 上创建了一个简单的(从快速入门)可扩展的 Rails 4 应用程序。我已将 RAILS_ENV 设置为“开发”,并强制进行干净的构建。
当 bundle 安装到达 mysql gem 时,我遇到一个错误,该错误仅在应用程序缩放且 RAILS_ENV = 'development' 时发生。
当我创建与未缩放相同的应用程序(带有 MySQL 5.5 的 Rails 4)并设置 RAILS_ENV = 'development' 时,它工作正常。但我必须使用“缩放”应用程序来公开我的 Iron.io 工作人员可以连接的数据库主机以查找用户和其他信息。
注意:当 RAILS_ENV = 'product' 时它工作正常,但我将在 OpenShift Online 上运行多个特定于环境的应用程序版本(例如 app-dev、app-stg、app),这就是为什么我需要将 RAILS_ENV 设置为“开发”。
我在.openshift/markers 下有一个force_clean_build 标记。
这是我在 .openshift/action_hooks/pre_build 中的代码:
#!/bin/bash
# This is a simple script and will be executed on your CI system if
# available. Otherwise it will execute while your application is stopped
# before the build step. This script gets executed directly, so it
# could be python, php, ruby, etc.
if [[ "$RUBY_VERSION" == "1.8" ]]; then
echo "ERROR: This quickstart is not compatible with Ruby 1.8"
echo "ERROR: Please use ruby-1.9 or ruby-2.0 application type."
exit 1
fi
source $OPENSHIFT_CARTRIDGE_SDK_BASH
source ${OPENSHIFT_RUBY_DIR}/lib/ruby_context
set -e
pushd ${OPENSHIFT_REPO_DIR} > /dev/null
if [[ -f .openshift/markers/force_clean_build && ( "$RAILS_ENV" == "development" || "$RAILS_ENV" == "staging" ) ]]
then
echo "bundle install --deployment --path ${OPENSHIFT_HOMEDIR}app-root/repo/vendor/bundle"
ruby_with_nodejs_context "bundle install --deployment --path ${OPENSHIFT_HOMEDIR}app-root/repo/vendor/bundle"
fi
popd > /dev/null
这是我执行“git Push”时发生的情况的日志:
remote: Ruby cartridge in development mode, skipping stop...
remote: Repairing links for 1 deployments
remote: Syncing git content to other proxy gears
remote: Force clean build enabled - cleaning dependencies
remote: Building git ref 'master', commit bc3ac62
remote: bundle install --deployment --path /var/lib/openshift/548b3d09fcf933241c0001b6/app-root/repo/vendor/bundle
remote: Fetching gem metadata from https://rubygems.org/.........
remote: Installing rake (0.9.6)
remote: Installing i18n (0.6.11)
remote: Installing json (1.8.1)
remote: Installing minitest (5.4.3)
remote: Installing thread_safe (0.3.4)
remote: Installing tzinfo (1.2.2)
remote: Installing activesupport (4.1.4)
remote: Installing builder (3.2.2)
remote: Installing erubis (2.7.0)
remote: Installing actionview (4.1.4)
remote: Installing rack (1.5.2)
remote: Installing rack-test (0.6.2)
remote: Installing actionpack (4.1.4)
remote: Installing mime-types (1.25.1)
remote: Installing polyglot (0.3.5)
remote: Installing treetop (1.4.15)
remote: Installing mail (2.5.4)
remote: Installing actionmailer (4.1.4)
remote: Installing activemodel (4.1.4)
remote: Installing arel (5.0.1.20140414130214)
remote: Installing activerecord (4.1.4)
remote: Installing coffee-script-source (1.8.0)
remote: Installing execjs (2.2.2)
remote: Installing coffee-script (2.3.0)
remote: Installing thor (0.19.1)
remote: Installing railties (4.1.4)
remote: Installing coffee-rails (4.0.1)
remote: Installing hike (1.2.3)
remote: Installing multi_json (1.10.1)
remote: Installing jbuilder (2.2.5)
remote: Installing jquery-rails (3.1.2)
remote: Installing mysql2 (0.3.17)
remote: Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
remote:
remote: /opt/rh/ruby200/root/usr/bin/ruby extconf.rb
remote: checking for ruby/thread.h... yes
remote: checking for rb_thread_call_without_gvl() in ruby/thread.h... yes
remote: checking for rb_thread_blocking_region()... yes
remote: checking for rb_wait_for_single_fd()... yes
remote: checking for rb_hash_dup()... yes
remote: checking for rb_intern3()... yes
remote: -----
remote: Using mysql_config at /opt/rh/mysql55/root/usr/bin/mysql_config
remote: -----
remote: checking for mysql.h... yes
remote: checking for errmsg.h... yes
remote: checking for mysqld_error.h... yes
remote: -----
remote: Don't know how to set rpath on your system, if MySQL libraries are not in path mysql2 may not load
remote: -----
remote: -----
remote: Setting libpath to /opt/rh/mysql55/root/usr/lib64/mysql
remote: -----
remote: creating Makefile
remote:
remote: make "DESTDIR="
remote: gcc -I. -I/opt/rh/ruby200/root/usr/include -I/opt/rh/ruby200/root/usr/include/ruby/backward -I/opt/rh/ruby200/root/usr/include -I. -I/opt/rh/mysql55/root/usr/include/mysql -DHAVE_RUBY_THREAD_H -DHAVE_RB_THREAD_CALL_WITHOUT_GVL -DHAVE_RB_THREAD_BLOCKING_REGION -DHAVE_RB_WAIT_FOR_SINGLE_FD -DHAVE_RB_HASH_DUP -DHAVE_RB_INTERN3 -DHAVE_MYSQL_H -DHAVE_ERRMSG_H -DHAVE_MYSQLD_ERROR_H -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -mtune=generic -fPIC -m64 -o client.o -c client.c
remote: gcc -I. -I/opt/rh/ruby200/root/usr/include -I/opt/rh/ruby200/root/usr/include/ruby/backward -I/opt/rh/ruby200/root/usr/include -I. -I/opt/rh/mysql55/root/usr/include/mysql -DHAVE_RUBY_THREAD_H -DHAVE_RB_THREAD_CALL_WITHOUT_GVL -DHAVE_RB_THREAD_BLOCKING_REGION -DHAVE_RB_WAIT_FOR_SINGLE_FD -DHAVE_RB_HASH_DUP -DHAVE_RB_INTERN3 -DHAVE_MYSQL_H -DHAVE_ERRMSG_H -DHAVE_MYSQLD_ERROR_H -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -mtune=generic -fPIC -m64 -o infile.o -c infile.c
remote: gcc -I. -I/opt/rh/ruby200/root/usr/include -I/opt/rh/ruby200/root/usr/include/ruby/backward -I/opt/rh/ruby200/root/usr/include -I. -I/opt/rh/mysql55/root/usr/include/mysql -DHAVE_RUBY_THREAD_H -DHAVE_RB_THREAD_CALL_WITHOUT_GVL -DHAVE_RB_THREAD_BLOCKING_REGION -DHAVE_RB_WAIT_FOR_SINGLE_FD -DHAVE_RB_HASH_DUP -DHAVE_RB_INTERN3 -DHAVE_MYSQL_H -DHAVE_ERRMSG_H -DHAVE_MYSQLD_ERROR_H -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -mtune=generic -fPIC -m64 -o mysql2_ext.o -c mysql2_ext.c
remote: gcc -I. -I/opt/rh/ruby200/root/usr/include -I/opt/rh/ruby200/root/usr/include/ruby/backward -I/opt/rh/ruby200/root/usr/include -I. -I/opt/rh/mysql55/root/usr/include/mysql -DHAVE_RUBY_THREAD_H -DHAVE_RB_THREAD_CALL_WITHOUT_GVL -DHAVE_RB_THREAD_BLOCKING_REGION -DHAVE_RB_WAIT_FOR_SINGLE_FD -DHAVE_RB_HASH_DUP -DHAVE_RB_INTERN3 -DHAVE_MYSQL_H -DHAVE_ERRMSG_H -DHAVE_MYSQLD_ERROR_H -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -mtune=generic -fPIC -m64 -o result.o -c result.c
remote: rm -f mysql2.so
remote: gcc -shared -o mysql2.so client.o infile.o mysql2_ext.o result.o -L. -L/opt/rh/ruby200/root/usr/lib64 -L/opt/rh/mysql55/root/usr/lib64/mysql -L. -fstack-protector -rdynamic -Wl,-export-dynamic -m64 -lruby -L/opt/rh/mysql55/root/usr/lib64/mysql -lmysqlclient -lpthread -lz -lm -lrt -lssl -lcrypto -ldl -lpthread -lrt -ldl -lcrypt -lm -lc
remote: /usr/bin/ld: cannot find -lmysqlclient
remote: collect2: ld returned 1 exit status
remote: make: *** [mysql2.so] Error 1
remote:
remote:
remote: Gem files will remain installed in /var/lib/openshift/548b3d09fcf933241c0001b6/app-root/repo/vendor/bundle/ruby/gems/mysql2-0.3.17 for inspection.
remote: Results logged to /var/lib/openshift/548b3d09fcf933241c0001b6/app-root/repo/vendor/bundle/ruby/gems/mysql2-0.3.17/ext/mysql2/gem_make.out
remote: An error occurred while installing mysql2 (0.3.17), and Bundler cannot continue.
remote: Make sure that `gem install mysql2 -v '0.3.17'` succeeds before bundling.
remote: An error occurred executing 'gear postreceive' (exit code: 5)
remote: Error message: CLIENT_ERROR: Failed to execute action hook 'pre_build' for 548b3d09fcf933241c0001b6 application rorscaled
remote:
remote: For more details about the problem, try running the command again with the '--trace' option.
To ssh://548b3d09fcf933241c0001b6@rorscaled-pervasivio.rhcloud.com/~/git/rorscaled.git/
3d4699e..bc3ac62 master -> master
此缩放应用程序以及该应用程序的相同未缩放版本的 OpenShift Online MYSQL 环境变量。
SCALED -----
OPENSHIFT_MYSQL_DB_GEAR_DNS=548b3d09fcf933241c0001b7-pervasivio.rhcloud.com
OPENSHIFT_MYSQL_DB_GEAR_UUID=548b3d09fcf933241c0001b7
OPENSHIFT_MYSQL_DB_HOST=548b3d09fcf933241c0001b7-pervasivio.rhcloud.com
OPENSHIFT_MYSQL_DB_PORT=37891
OPENSHIFT_MYSQL_DB_URL=mysql://adminHucinW7:yVMbdWxil46k@548b3d09fcf933241c0001b7-pervasivio.rhcloud.com:37891/
OPENSHIFT_MYSQL_LD_LIBRARY_PATH_ELEMENT=/opt/rh/mysql55/root/usr/lib64
OPENSHIFT_MYSQL_PATH_ELEMENT=/opt/rh/mysql55/root/usr/bin
UNSCALED -----
OPENSHIFT_MYSQL_DB_HOST=127.4.220.2
OPENSHIFT_MYSQL_DB_LOG_DIR=/var/lib/openshift/548b2e04e0b8cd0f2800005a/app-root/logs/
OPENSHIFT_MYSQL_DB_PORT=3306
OPENSHIFT_MYSQL_DB_SOCKET=/var/lib/openshift/548b2e04e0b8cd0f2800005a/mysql//socket/mysql.sock
OPENSHIFT_MYSQL_DB_URL=mysql://adminbZ743Ky:PnvGtW7CfScB@127.4.220.2:3306/
OPENSHIFT_MYSQL_DIR=/var/lib/openshift/548b2e04e0b8cd0f2800005a/mysql/
OPENSHIFT_MYSQL_IDENT=redhat:mysql:5.5:0.2.19
OPENSHIFT_MYSQL_LD_LIBRARY_PATH_ELEMENT=/opt/rh/mysql55/root/usr/lib64
OPENSHIFT_MYSQL_VERSION=5.5
最佳答案
更新:
我重新使用 MySQL 5.1 OpenShift 卡带,错误已解决。
关于mysql - 在缩放的 OpenShift Online 应用程序中, bundle 安装在 mysql gem 上失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27451870/
这个问题已经有答案了: Difference between $Bundle install and $Bundle update (2 个回答) 已关闭 9 年前。 bundle 之间有什么区别,
我正在尝试加载 Nib ,但不断收到以下错误: -[NSViewController initWithCoder:] could not instantiate an NSViewController
bundle有什么区别& bundler命令? bundle有什么区别& bundle install ? 如果没有区别,为什么有多个命令做同样的事情? 最佳答案 可执行文件 bundle & bun
我们有托管在应用程序中的单元测试。要加载测试资源,我们使用:Bundle(for: TestClass.self).path(forResource: "some-file", ofType: "js
我刚刚克隆了一个新的 repo 并尝试运行 bundle install但出现以下错误 Fetching gem metadata from https://abcderepos.net/api/ge
我添加了一个共享框架来在应用程序和 watch 扩展之间共享代码。后来我删除了共享框架,因为它会导致很多问题。我可以 build 并在 iphone 上运行我的应用程序并观看。然而,当我提交到应用商店
这个问题有点类似于 this one ,但不完全是。我有一个 C# 游戏引擎,我正在与一些想要使用我的引擎的人一起工作。最初我设计了引擎,以便所有 Assets 都是外部的——非程序员可以创建艺术、音
我正在尝试使用 OSGi 实现客户端-服务器模型。服务器应用程序是在计算机中运行的 OSGi 框架,客户端应用程序远程连接到其控制台并通过 Java 套接字发送命令并接收正确的响应。每个客户端应用程序
我目前正在将我的 Angular 2 应用程序与 WebPack bundle 在一起。我们仍在快速循环,因此我们不想在构建和应用程序加载过程中增加延迟,而是希望包括很少更改的 Angular 2 U
基本上,我有一个捆绑软件,经常在其他 View 中使用,加上其他js文件,因此我可以在保留其顺序的同时将这些文件添加到现有捆绑软件中吗? 最佳答案 我到处都在查找它,但找不到将两个捆绑软件合并在一起的
我有一个大约 12GB 的巨大 mercurial 存储库。我需要在另一台机器上克隆它,但是从网络中提取它需要花费很多时间。当我尝试将所有变更集 bundle 到一个 bundle 文件中时,文件的大
我可以使用 Sonata User Bundle 将 FOS 包集成到 sonata Admin 包中。我的登录功能正常。现在我想添加 FOSUserBundle 中的更改密码等功能到 sonata
如果我检查使用 angular-cli 创建的 angular 2 项目的 index.html 文件,我可以看到该页面仅包含 dist 文件夹中的 3 个文件: inline.bundle.js v
我从程序包管理器http://localhost:4502/crx/packmgr/index.jsp中从正在运行的AEM实例下载了一个zip文件。提取后的zip文件包含jcr_root和META-I
已经提出了有关捆绑名称和捆绑显示名称的类似问题,例如: What's the difference between "bundle display name" and "bundle name" in
我正在尝试在 iTunes 上上传我的应用程序。为此,我创建了一个应用程序 ID 并保留了一个包标识符。在我的项目中,我更改了 info.plist 文件中的包标识符。但是,当我尝试在 itunes
我想从 OSGI 包启动 OSGI 包。正如您所看到的,此代码通过从目录部署它来启动 bundle : private void installStartBundle(BundleContext bc
所以这真的让我头疼,我终于放弃了,在这里发表了问题。我正在尝试更新iTune商店中的一个客户端应用程序,并且在上传到App Store时遇到以下错误。 因此,我已经尝试通过两次使用包sid id创建新
我在 typescript 中使用 aurelia,我想避免使用像这样的相对导入路径: import { DialogBox } from '../../resources/elements/dial
有什么区别 ResourceBundle.getBundle("Bundle") 还有这个 ResourceBundle.getBundle("/Bundle") 最佳答案 来自the Java do
我是一名优秀的程序员,十分优秀!