Appearance
🐧Linux 
首先进入压缩包的所在目录对包进行解压。
shell
cd PATH
unzip -d DIRECTORY PACKAGE.zipcd PATH
unzip -d DIRECTORY PACKAGE.zip其中PATH为压缩包的所在目录,DIRECTORY为文件解压后的存放路径,PACKAGE则替换成实际下载的压缩包的名称。
假定我们将压缩包下载至/usr/local/download目录下,输入以下命令对压缩包进行解压:
shell
cd /usr/local/download
unzip -d /usr/local/orapis engine_1.0.0.zipcd /usr/local/download
unzip -d /usr/local/orapis engine_1.0.0.zip将Orapis-Engine安装至/usr/local/orapis下,完成后即可开始使用Orapis-Engine,以下介绍如何使用:
shell
cd /usr/local/orapis/bin  #cd进入bin目录cd /usr/local/orapis/bin  #cd进入bin目录使用以下命令在bin目录下对Orapis-Engine发送指令:
shell
./orapis start #启动orapis-engine./orapis start #启动orapis-engineshell
./orapis reload #重新加载orapis-engine./orapis reload #重新加载orapis-engineshell
./orapis quit #等待所以请求处理完毕再退出orapis-engine./orapis quit #等待所以请求处理完毕再退出orapis-engineshell
./orapis stop #直接关闭orapis-engine./orapis stop #直接关闭orapis-engine⚠️ orapis命令需要在安装目录的bin目录下执行,否则会未找到命令的情况。
你也可以通过建立软连接的方式来在任意目录下执行orapis命令
sudo ln -s DIRECTORY/bin/orapis /usr/bin
启动Orapis-Engine后,在浏览器上访问http://localhost:6635,访问成功即代表成功安装并启动。

该网站为Orapis-Engine的后台管理端,初始账号密码分别为fp123/admin。