算法评测平台前端。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.4 KiB

<p align="center"><img src="static/self/syzoj.png" width="250"></p>
8 years ago
5 years ago
一个用于算法学习和竞赛的在线评测系统,主要用于帆软开发和测试团队。
6 years ago
# 部署
5 years ago
## 服务器要求
Ubuntu 18.04(64位)
## 环境准备
评测机使用的沙箱需要使用boost库,因此需要安装boost
```
apt install build-essential libboost-all-dev
```
平台系统依赖NodeJS运行环境(目前测试下来仅支持8.x版本)
```
apt install nodejs
```
评测系统的前端和评测机之间通过rabbitmq通信,评测时需要使用7zip对用例进行解压
```
apt install rabbitmq-server p7zip-full
```
web服务器
```
apt install nginx
```
Redis 5.0.x版本
参见文档:[安装最新的Redis](https://www.howtoing.com/how-to-install-and-configure-redis-on-ubuntu-16-04)。
MariaDB 10.4版本
参见文档:[安装MariaDB](https://ywnz.com/linuxysjk/3871.html)。
5 years ago
安装完成后进入数据库命令行
5 years ago
```
mysql -uroot -p
```
5 years ago
创建OJ所需要的数据库
5 years ago
```
CREATE DATABASE syzoj;
ALTER DATABASE syzoj CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;
CREATE USER 'syzoj'@'localhost' IDENTIFIED BY '[your_password]';
GRANT ALL ON syzoj.* TO 'syzoj'@'localhost';
FLUSH PRIVILEGES;
```
5 years ago
**注意:**
Redis和MariaDB均需要创建systemd系统服务,要注意检查。
5 years ago
## 修改内存控制内核选项
simple-sandbox 使用了 cgroup 来进行内存用量控制,该过程需要用到 memory.memsw(控制内存和交换空间的总用量)。一些 Linux 发行版的内核在默认情况下,没有启用这个内核选项,你需要手动启用它。
检查文件 /sys/fs/cgroup/memory/memory.memsw.usage_in_bytes 是否存在。如果不存在,你需要使用你的 grub 启用。 打开 /etc/default/grub,找到其中的
```
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
```
这一行(引号内内容可能有不同),在其后添加 cgroup_enable=memory swapaccount=1。以上述为例,添加后该行应为
```
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash cgroup_enable=memory swapaccount=1"
```
修改后执行
```
update-grub && reboot
```
来更新 grub 配置并重启。重启后,重新检查文件 /sys/fs/cgroup/memory/memory.memsw.usage_in_bytes 是否存在。
## 部署沙箱
从[这个链接](https://fanruan-install.oss-cn-shanghai.aliyuncs.com/tools/sandbox/sandbox-rootfs-181202.tar.gz)下载 sandbox-rootfs,使用 root 权限解压到根目录下。
## 源码构建和配置
参见[这里](docs/install.md)。
6 years ago