您的位置:首页 > 大数据 > 人工智能

使用mina部署rails应用时遇到的问题们

2017-04-10 14:01 387 查看

无法从github拉取代码

—–> Cloning the Git repository

Cloning into bare repository ‘/home/XXX/app/scm’…

Host key verification failed.

fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.


! ERROR: Deploy failed.

原因:Accessing the repo via SSH requires the target machine to have public key

to be uploaded to GitHub.

解决方法: github信息加入~/.ssh/known_hosts

RVM安装之后,新的会话不生效,需要source

原因:~/.bashrc与~/.bash_profile没有区别清楚

解决方法:

[[ -s "/usr/local/rvm/scripts/rvm" ]] && . "/usr/local/rvm/scripts/rvm"


将以上内容加入~/.bashrc

在ubuntu上安装mysql2这个gem时报错

libmysqlclient is missing

解决方式:

sudo apt-get install libmysqlclient-dev


Bundler::GemRequireError: There was an error while trying to load the gem ‘uglifier’.

Gem Load Error is: Could not find a JavaScript runtime. See https://github.com/rails/execjs for a list of available runtimes

解决方式:

sudo apt-get install nodejs
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  rails