必威体育Betway必威体育官网
当前位置:首页 > IT技术

gateone服务器安装 基本使用

时间:2019-06-13 03:44:20来源:IT技术作者:seo实验室小编阅读:86次「手机版」
 

gateone

概述

  • 服务器配置
  • gateone服务器安装
    • 系统环境准备
    • gateone安装
    • gateone验证
  • gateone嵌入Web应用
    • 基本嵌入方式
    • 进阶

服务器配置

项目 gateone部署测试
内存 4GB
处理器 2
硬盘 10GB
操作系统 linux centos
环境 LNMP (集成包就行)
基本配置 Python: 2.6+ or 3.2+ \ Tornado Framework 2.2+ \ git

gateone服务器安装

系统环境准备

在命令行终端中输入命令:

$ python -V

查看你本机是否安装了python,如果先安装python,然后安装pip:

$ wget  --no-check-certificate https://bootstrap.pypa.io/get-pip.py
$ sudo python get-pip.py

安装tornado:

$ sudo pip install tornado

安装完成之后,我们来验证一下我们的环境:

$ python -V
$ python -c "import tornado; print(tornado.version)"

gateone安装

如果本地没有安装git,则先安装git:

$ sudo apt-get install git

若上述命令不可用,可用yum安装 :

$ yum install git

获取Gate One源码并进行安装:

$ git clone https://github.com/liftoff/GateOne.git
$ cd GateOne
$ sudo python ./setup.py install

gateone验证

Gate One的配置文件是/etc/gateone/conf.d/10server.conf,我们采用默认的配置来验证即可。运行下面命令启动Gate One服务进程:

$ sudo gateone

在这里插入图片描述

启动后,通过打印的信息,我们看到Gate One服务监听了443端口号,然后在浏览器中输入https://127.0.0.1:443/即可打开gateone的网页

在这里插入图片描述

gateone嵌入Web应用

基本嵌入方式

<!DOCTYPE html>
<html lang="en">
  <head>
	<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
	<title>Basic embedding Gate One</title>
	<script src="https://127.0.0.1/static/gateone.js"></script>
	<script>
	  window.onload = function() {
		  // Initialize Gate One:
		  GateOne.init({url: 'https://127.0.0.1'});
	  }
	</script>
  </head>
  <body>
<p>Hello gateone!</p>
<!-- Decide where you want to put Gate One -->
	<p id="gateone_container" style="position: relative; width: 60em; height: 30em;">
		<p id="gateone"></p>
	</p>
  </body>
</html>

进阶

通过点击”Add a terminal“按钮来新建一个Terminal

<form id="add_terminal">
	<input type="submit" value="Add a Terminal" style="margin-left: .Sem;"></input>
</form>
<script>
	window.onload = function() {
		GateOne.init({
			url: 'https://127.0.0.1',
			embedded: true,
			// Let's APPly some custom styles while we're at it ...
			style: { 'background-color': 'yellowgreen', 'box-shadow': '0 0 40px blueViolet'}
		});
	}
	document.querySelector('#add_terminal').onsubmit = function(e) {
		// Don't actually submit the form
		e.preventDefault(); 
		var existingcontainer = GateOne.Utils.getNode('#'+GateOne.prefs.prefix+'container');
		var container = GateOne.Utils.createElement('p', {
			 'id': 'container', 'class': 'terminal', 'style': {'height': '100%', 'width': '100%'}
		});
		var gateone = GateOne.Utils.getNode('#gateone');
		if (!existingContainer) {
			gateone.appendChild(container);
		} else {
			container = existingContainer;
		}
		// Create the new terminal
		termNum = GateOne.Terminal.newTerminal(null, null, container); 
	}
</script>

相关阅读

Photoshop CS6版本安装及破解教程

Photoshop所有版本中,最经典的版本就是CS6了,本教程着重讲解Photoshop CS6版本安装及破解详细步骤,并给出Photoshop CS6,如需要可在下

Kafka的安装与使用

广告系统设计与实现(九)  9.1 Kafka 基础知识 9.1.1 消息系统 点对点消息系统:生产者发送一条消息到queue,一个queue可以有很

运维——自动化安装系统(自制引导光盘及U盘启动)(二)

实现自动化安装操作系统我们仍需要插入光盘来引导,现在很多服务器已经没有光驱,那么此时我们就无法用光盘引导,如果要实现光盘引导安

教程 ios 4 以上安装mobile terminal的最简单方法

这个版本在ios 4 以上使用很稳定,不会出现闪退现象~下面是怎么修改密码:(更改Mobile 权限 )输入指令 passwdold password : alpine

【Ubuntu】腾讯QQ安装

参考链接:Ubuntu 16.04安装QQ国际版图文详细教程 安装包下载:             链接: https://pan.baidu.com/s/19Pf7T1X_Kucj-C

分享到:

栏目导航

推荐阅读

热门阅读