如何在CentOS 6和RHEL 6中安装Octopress
时间:2019-08-20 17:58:23 来源:igfitidea点击:
在本教程中,我们将学习如何在centos6和rhel6(redhat)中安装Octopress。
Octopress是一个为Jekyll设计的框架。
使用它,你不必编写HTML模板、Javascripts、CSS和设置配置。
安装Octopress的步骤:
安装Ruby1.9.3或者更高版本
下面的命令用RVM安装ruby版本2.1.0
curl -L get.rvm.io | bash -s stable source /etc/profile.d/rvm.sh rvm requirements rvm install 2.1.0 rvm use 2.1.0 --default ruby -v
在系统中安装git
yum install git
从github克隆Octopress源代码
cd /opt git clone git://github.com/imathis/octopress.git octopress
安装依赖项。
cd /opt/octopress gem install bundler bundle install
安装默认主题
rake install
启动octopress
cd /opt/octopress rake preview 或者在后台运行: nohup rake preview &
设置防火墙
octopress默认端口是4000
-A INPUT -p tcp -m state --state NEW -m tcp --dport 4000 -j ACCEPT
测试
浏览器打开 http://服务器ip:4000
进行测试。