- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章CentOS 7下配置Ruby语言开发环境的方法教程由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文跟大家分享的是在CentOS 7下配置Ruby语言开发环境的方法教程,分享出来供大家参考学习,下面来看看详细的介绍:
安装Ruby 2.2 。
CentOS7存储库中的Ruby版本为2.0,但如果需要,可以使用RPM软件包安装2.2 。
1、添加CentOS SCLo软件集合存储库 。
1
2
3
4
5
6
7
8
9
10
11
12
|
[root@linuxprobe ~]
# yum -y install centos-release-scl-rh centos-release-scl
# set [priority=10]
[root@linuxprobe ~]
# sed -i -e "s/\]$/\]\npriority=10/g" /etc/yum.repos.d/CentOS-SCLo-scl.repo
[root@linuxprobe ~]
# sed -i -e "s/\]$/\]\npriority=10/g" /etc/yum.repos.d/CentOS-SCLo-scl-rh.repo
# for another way, change to [enabled=0] and use it only when needed
[root@linuxprobe ~]
# sed -i -e "s/enabled=1/enabled=0/g" /etc/yum.repos.d/CentOS-SCLo-scl.repo
[root@linuxprobe ~]
# sed -i -e "s/enabled=1/enabled=0/g" /etc/yum.repos.d/CentOS-SCLo-scl-rh.repo
# if [enabled=0], input a command to use the repository
[root@linuxprobe ~]
# yum --enablerepo=centos-sclo-rh install [Package]
[root@linuxprobe ~]
# yum --enablerepo=centos-sclo-sclo install [Package]
# 安装ruby
yum --enablerepo=centos-sclo-rh -y
install
rh-ruby22
|
2、软件集合的软件包安装在/opt目录下, 要使用它,需要加载环境变量,如下所示
1
2
3
4
5
6
|
# 加载环境变量
[root@linuxprobe ~]
# scl enable rh-ruby22 bash
[root@linuxprobe ~]
# ruby -v
ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-linux]
[root@linuxprobe ~]
# which ruby
/opt/rh/rh-ruby22/root/usr/bin/ruby
|
3、设置登录时自动启用Ruby 2.2,按如下所示进行配置:
1
2
3
4
5
|
[root@linuxprobe ~]
# vim /etc/profile.d/rh-ruby22.sh
#!/bin/bash
source
/opt/rh/rh-ruby22/enable
export
X_SCLS=
"`scl enable rh-ruby22 'echo $X_SCLS'`"
export
PATH=$PATH:
/opt/rh/rh-ruby22/root/usr/local/bin
|
安装Ruby 2.3 。
1
2
|
# 安装ruby
yum --enablerepo=centos-sclo-rh -y
install
rh-ruby23
|
1、软件集合的软件包安装在/opt目录下, 要使用它,需要加载环境变量,如下所示
1
2
3
4
5
6
|
# 加载环境变量
[root@linuxprobe ~]
# scl enable rh-ruby23 bash
[root@linuxprobe ~]
# ruby -v
ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-linux]
[root@linuxprobe ~]
# which ruby
/opt/rh/rh-ruby22/root/usr/bin/ruby
|
2、设置登录时自动启用Ruby 2.3,按如下所示进行配置:
1
2
3
4
5
|
[root@linuxprobe ~]
# vim /etc/profile.d/rh-ruby23.sh
#!/bin/bash
source
/opt/rh/rh-ruby23/enable
export
X_SCLS=
"`scl enable rh-ruby23 'echo $X_SCLS'`"
export
PATH=$PATH:
/opt/rh/rh-ruby23/root/usr/local/bin
|
安装Ruby on Rails 4来构建Ruby Framework环境 。
1、添加EPEL软件存储库 。
1
2
3
4
5
6
7
|
[root@linuxprobe ~]
# yum -y install epel-release
# set [priority=5]
[root@linuxprobe ~]
# sed -i -e "s/\]$/\]\npriority=5/g" /etc/yum.repos.d/epel.repo
# for another way, change to [enabled=0] and use it only when needed
[root@linuxprobe ~]
# sed -i -e "s/enabled=1/enabled=0/g" /etc/yum.repos.d/epel.repo
# if [enabled=0], input a command to use the repository
[root@linuxprobe ~]
# yum --enablerepo=epel install [Package]
|
Ruby on Rails 4 。
1、安装Ruby 2.2,参考上面 。
2、安装依赖包(epel+SCLo) 。
1
|
[root@linuxprobe ~]
# yum --enablerepo=epel,centos-sclo-rh -y install rh-ruby22-ruby-devel nodejs libuv gcc make libxml2 libxml2-devel mariadb-devel zlib-devel libxslt-devel
|
安装Rails 4 。
1
2
3
4
5
|
[root@linuxprobe ~]
# gem install bundler
[root@linuxprobe ~]
# gem install nokogiri -- --use-system-libraries
[root@linuxprobe ~]
# gem install rails --version="~>4.0" --no-ri --no-rdoc
[root@linuxprobe ~]
# /opt/rh/rh-ruby22/root/usr/local/bin/rails -v
Rails 4.2.8
|
Ruby on Rails 5 。
1、安装Ruby 2.3,参考上面 。
2、安装依赖包(epel+SCLo) 。
1
|
[root@linuxprobe ~]
# yum --enablerepo=epel,centos-sclo-rh -y install rh-ruby23-ruby-devel nodejs libuv gcc make libxml2 libxml2-devel mariadb-devel zlib-devel libxslt-devel
|
安装Rails 5 。
1
2
3
4
5
|
[root@linuxprobe ~]
# gem install bundler
[root@linuxprobe ~]
# gem install nokogiri -- --use-system-libraries
[root@linuxprobe ~]
# gem install rails --no-ri --no-rdoc
[root@linuxprobe ~]
# rails -v
Rails 5.0.2
|
创建一个示例应用程序,并确保其正常工作 。
1、需要安装MariaDB服务 。
1
2
3
4
5
6
7
8
|
[root@linuxprobe ~]
# yum -y install mariadb-server
[root@linuxprobe ~]
# vi /etc/my.cnf
# add follows within [mysqld] section
[mysqld]
character-
set
-server=utf8
[root@linuxprobe ~]
# systemctl start mariadb
[root@linuxprobe ~]
# systemctl enable mariadb
ln
-s
'/usr/lib/systemd/system/mariadb.service'
'/etc/systemd/system/multi-user.target.wants/mariadb.service'
|
2、初始化MariaDB 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
[root@linuxprobe ~]
# mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password
for
the root user. If you've just installed MariaDB, and
you haven't
set
the root password yet, the password will be blank,
so you should just press enter here.
Enter current password
for
root (enter
for
none):
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.
# set root password
Set root password? [Y
/n
] y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created
for
them. This is intended only
for
testing, and to
make
the installation
go a bit smoother. You should remove them before moving into a
production environment.
# remove anonymous users
Remove anonymous
users
? [Y
/n
] y
... Success!
Normally, root should only be allowed to connect from
'localhost'
. This
ensures that someone cannot guess at the root password from the network.
# disallow root login remotely
Disallow root login remotely? [Y
/n
] y
... Success!
By default, MariaDB comes with a database named
'test'
that anyone can
access. This is also intended only
for
testing, and should be removed
before moving into a production environment.
# remove test database
Remove
test
database and access to it? [Y
/n
] y
- Dropping
test
database...
... Success!
- Removing privileges on
test
database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
# reload privilege tables
Reload privilege tables now? [Y
/n
] y
... Success!
Cleaning up...
All
done
! If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks
for
using MariaDB!
# connect to MariaDB with root
[root@linuxprobe ~]
# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection
id
is 11
Server version: 5.5.52-MariaDB MariaDB Server
Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.
Type
'help;'
or
'\h'
for
help. Type
'\c'
to
clear
the current input statement.
# show user list
MariaDB [(none)]>
select
user,host,password from mysql.user;
+------+-----------+-------------------------------------------+
| user | host | password |
+------+-----------+-------------------------------------------+
| root | localhost | *E2ACEC2F2DA384EE6753673365DFEF35F0C272C9 |
| root | 127.0.0.1 | *E2ACEC2F2DA384EE6753673365DFEF35F0C272C9 |
| root | ::1 | *E2ACEC2F2DA384EE6753673365DFEF35F0C272C9 |
+------+-----------+-------------------------------------------+
3 rows
in
set
(0.00 sec)
# show database list
MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
+--------------------+
3 rows
in
set
(0.00 sec)
MariaDB [(none)]>
exit
Bye
|
3、创建测试应用程序 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
[root@linuxprobe ~]
# gem install mysql2 --no-ri --no-rdoc -- --with-mysql-config=/usr/bin/mysql_config
[root@linuxprobe ~]
# rails new SampleApp -d mysql
[root@linuxprobe ~]
# cd SampleApp
[root@linuxprobe SampleApp]
# vi config/database.yml
default: &default
adapter: mysql2
encoding: utf8
pool: 5
username: root
password: password
# MariaDB password
socket:
/var/lib/mysql/mysql
.sock
# create test application
[root@dlp SampleApp]
# rails db:create
Created database
'SampleApp_development'
Created database
'SampleApp_test'
[root@dlp SampleApp]
# rails generate scaffold testapp name:string title:string body:text
[root@dlp SampleApp]
# rails db:migrate
[root@dlp SampleApp]
# rails server --binding=0.0.0.0
=> Booting Puma
=> Rails 5.0.2 application starting
in
development on http:
//0
.0.0.0:3000
=> Run `rails server -h`
for
more
startup options
Puma starting
in
single mode...
* Version 3.8.2 (ruby 2.3.1-p112), codename: Sassy Salamander
* Min threads: 5, max threads: 5
* Environment: development
* Listening on tcp:
//0
.0.0.0:3000
Use Ctrl-C to stop
|
4、客户端访问http://10.1.1.53:3000/ 。
总结 。
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对我的支持.
原文链接:http://blog.csdn.net/wh211212/article/details/70060854 。
最后此篇关于CentOS 7下配置Ruby语言开发环境的方法教程的文章就讲到这里了,如果你想了解更多关于CentOS 7下配置Ruby语言开发环境的方法教程的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我需要一些说明。我可以直接写入 /dev/port 以直接访问并行端口并且它工作正常(我可以打开插入端口连接器的 LED)。但是,我想我可以用 /dev/mem 做同样的事情? (http://tld
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我使用 Visual C++ 和 Win32 API 学习了 Windows 编程。如今,似乎大多数应用程序都是使用 C# 在 .NET 中开发的。我知道大多数时候 native 代码和托管代码之间没
请耐心等待。我正在制作一个 java 控制台,类似于此处找到的 DragonConsole https://code.google.com/p/dragonconsole/ 。一切都按计划进行,但我想
关闭。这个问题需要更多 focused .它目前不接受答案。 想要改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭5年前。 Improve this que
Django 的开发服务器表现得很奇怪。访问它的浏览器在加载时卡住,任何退出它的尝试都不起作用。当我点击 control c看似相当,但实际上仍在运行。让它退出的唯一方法是重新启动我的电脑,这很令人沮
我正在使用 Flash Develop,并且创建了一个 ActionScript 3.0 项目。它启动并读取一个 xml 文件,其中包含图像的 url。我已将 url 保留在与 swf 相同的文件夹中
是否可以根据其 website 上提供的规范开发 AUTOSAR BSW 堆栈(例如用于 CAN 通信)?不购买任何昂贵的供应商工具?可以遵循哪些步骤?我被要求探索这种可能性。 最佳答案 是和否。工具
有人知道如何用音频文件的内容覆盖 iPhone 麦克风吗? 想象一个场景,您正在通话,并且想要播放一些简短的音频让其他人听到。 因此,有必要将麦克风(硬件)置于保持状态,并使用委托(delegate)
我遇到了这个问题,我的应用程序出现 EXC_BAD_ACCESS 错误并卡住/停止。我使用模拟器的“向左旋转”和“向右旋转”选项来模拟方向变化行为。导致此错误的可能原因有哪些?由于我没有获得有关错误的
我有超过 1 台 Mac,我想在所有这些 Mac 上进行开发。我知道我需要在每台机器上同步我的手机,但这是我遇到的最小的问题。看起来我无法在手机上运行应用程序,除了在其中之一上开发的应用程序。 是否有
在手机上测试时,我的应用程序在特定点崩溃。控制台显示此消息 Tue Jan 27 15:47:14 unknown SpringBoard[22] : Application com.myprof.
我有一个案例,我从服务器获取信息。我的应用程序有一个选项卡栏和导航按钮。我希望应用程序显示进度指示器并禁用所有其他控件,以便用户在从服务器提取数据时无法跳转。我怎样才能实现这个目标? 我想到的一种方法
有时,当我尝试“构建”/编译下载的源代码时,我会收到以下警告: ld: warning: directory '/Volumes/Skiiing2/CD/ViewBased/Unknown Path/
我无法在 Apple 文档中找到关于开发和分发配置之间差异的明确解释。我目前正在使用开发配置在我的 iPhone 上进行开发和测试。我打算将该应用程序分发到我的 Beta 测试中,我想知道: 我需要使
我在使用 SharePoint 时遇到的最大挑战之一是它不能很好地适应典型的项目环境,其中至少包含开发和生产环境。我遇到的最多的问题是内容和列表是如此紧密地耦合在一起,以至于如果不在生产环境中执行内容
我失败了fist step让 Eclipse(对我来说是全新的)为 ARM 开发做好准备。 我在 Windows 10 中安装了 Eclipse。我想我应该安装 xpm,但我不知道在哪里输入此命令:
首先,我告诉你-我是编码新手 我正在使用vs代码来学习c++,它不会产生像dev c++或codeblocks这样的调试器。我看了一些视频,其中我们必须编辑json文件,这对于初学者来说非常复杂。有人
我失败了fist step让 Eclipse(对我来说是全新的)为 ARM 开发做好准备。 我在 Windows 10 中安装了 Eclipse。我想我应该安装 xpm,但我不知道在哪里输入此命令:
我开发了一个 Ionic 应用程序(iOS 和 Android 的混合)。我有 Xcode 8.3.3 并购买了一年的 Apple Developer Program 订阅。 我不想测试我的应用并将其
我是一名优秀的程序员,十分优秀!