首页 > 代码库 > 运行edX Devstack
运行edX Devstack
前一篇文章,我们安装完成了edX Devstack,本文将介绍edX Devstack的常用命令
6.1. 连接到 Devstack Virtual Machine
为了连接到Devstack virtual machine,需要在devstack路径下使用SSH命令。
vagrant ssh
为了使用Devstack和执行这个章节的任何命令,你必须以用户edxapp连接过去.
sudo su edxapp
这条命令从文件/edx/app/edxapp/edxapp_env中加载edxapp环境.这使得venv python和ruby rbenv在你的搜索路径.
这条命令还设置了当前工作路径到edx-platform repository (/edx/app/edxapp/edx-platform).
6.2. 设置预览功能 (仅Mac/Linux环境下)
如果你在Linux或Macintosh电脑里安装Devstack,为了在edx Studio里预览页面,你必须将以下一行添加到etc/hosts文件中:
192.168.33.10 preview.localhost
[这里192.168.33.10是virualbox里面ubuntu已经设置好的IP,不要改成自己到IP]
[如果已经切换到edxapp帐号,可以输入exit退出edxapp帐号,然后在sudo vi /etc/hosts]
6.3.自定义源代码路径
你可以自定义当你提供Devstack时克隆edX源代码的路径。你也许希望在你的电脑中做Devstack的源代码编码工作。
默认情况下,源代码的路径是在你运行vagrant up的目录下。如果要改变这个路径,需要设置为edx-platform和cs_comments_service代码路径设置VAGRANT_MOUNT_BASE环境变量。
6.4. 在Devstack运行LMS
当你在Devstack中运行LMS,命令将更新需求和编译资源,除非你使用fast选项。
命令会使用lms/envs/devstack.py文件。这个文件为LMS覆盖了production设置。
在Devstack中运行LMS:
连接到Devstack Virtual Machine.
运行以下命令:
paver lms
或者,以不更新需求和编译资源的方式启动,使用fast选项:
paver lms --fast
LMS启动了.
在你的浏览器中输入http://localhost:8000/打开LMS
6.5. 在Devstack运行Studio
当你在Devstack中运行Studio,命令将更新需求和编译资源,除非你使用fast选项。
命令会使用cms/envs/devstack.py文件。这个文件为Studio覆盖了production设置。
在Devstack中运行Studio:
连接到Devstack Virtual Machine.
运行以下命令:
paver studio
或者,以不更新需求和编译资源的方式启动,使用fast选项:
paver studio --fast
Studio启动了.
在你的浏览器中输入http://localhost:8001/打开Stdudio
6.6. 在Devstack中运行Discussion Forums(论坛)
在Devstack中运行 discussion forums:
连接到 Devstack Virtual Machine.
切换到论坛帐号:
sudo su forum
更新Ruby需求.
bundle install
注意
如果你看到一个消息让你输入密码来在系统中安装RubyGems,你可以通过输入Ctrl+C安全退出。RubyGems仍将正确的为forum user安装好。
启动论坛服务器.
ruby app.rb -p 18080
论坛服务器启动了,你可以在http://localhost:18080/访问论坛的API.
6.7. Devstack中的默认帐号
当你安装Devstack时,下列帐号已经创建好了:
Account Description
staff@example.com An LMS and Studio user with course creation and editing permissions. This user is a course staff member with rights to work with the demonstration course in Studio.
verified@example.com A student account that you can use to access the LMS for testing verified certificates.
audit@example.com A student account that you can use the access the LMS for testing course auditing.
honor@example.com A student account that you can use the access the LMS for testing honor code certificates.
这些帐号的密码都是edx
运行edX Devstack