ganetimgr Documentation

Size: px
Start display at page:

Download "ganetimgr Documentation"

Transcription

1 ganetimgr Documentation Release GRNET NOC, GRNET S.A May 23, 2014

2

3 Contents 1 What is ganetimgr? 1 2 Compatibility 3 3 Installation ganetimgr installation ganetimgr admin guide i

4 ii

5 CHAPTER 1 What is ganetimgr? ganetimgr is a web platform that eases the provisioning of virtual machines over miltiple ganeti clusters. In essence, ganetimgr aims to be the frontend of a VPS service. A simplified architecture of ganetimgr is depicted here: ganeti cluster Django gevent watcher Caching ganeti REST ganeti cluster API client

6 2 Chapter 1. What is ganetimgr?

7 CHAPTER 2 Compatibility ganetimgr has been tested with ganeti versions Unless something really big has changed with the ganeti REST API client, ganetimgr should be able to interoperate with later versions. 3

8 4 Chapter 2. Compatibility

9 CHAPTER 3 Installation You can go through the installation at the Install ganetimgr section. 3.1 ganetimgr installation Note: This guide assumes a clean debian wheezy (stable) installation Attention: If updating from a squeeze installation, pay attention to changes in setting.py Install packages Update and install the required packages (you will be asked for a mysql username and password): apt-get update apt-get upgrade apt-get install git nginx mysql-server python-mysqldb python-django python-redis python-django-south apt-get install redis-server apt-get install gunicorn python-gevent Database Setup Login to the mysql interface: mysql -u <your username> -p Create database and user: mysql> CREATE DATABASE ganetimgr CHARACTER SET utf8; mysql> CREATE USER localhost IDENTIFIED BY ; mysql> GRANT ALL PRIVILEGES ON ganetimgr.* TO ganetimgr ; mysql> flush privileges; Excellent! 5

10 3.1.3 Pre-Setup Get the source and checkout to latest stable: mkdir /srv/www/ cd /srv/www/ git clone cd ganetimgr git checkout stable Create a settings file for the django application: cp settings.py.dist settings.py cp urls.py.dist urls.py Edit the settings.py file and change the django database config to match your setup. Pay attention to the following: Change STATIC_URL to the url serving your static files, eg. STATIC_URL = and STATIC_ROOT to STATIC_ROOT = /srv/www/ganetimgr/static/ TEMPLATE_DIRS to TEMPLATE_DIRS = ( /srv/www/ganetimgr/templates, ) Then set your cache backend: CACHE_BACKEND to CACHE_BACKEND = "redis_cache.cache:// :6379/?timeout=1500" Set your supported operating systems via the corresponding OPERATING_SYSTEMS dict-of-dicts variable. Set your re-captcha keys. Generate a key pair here: RECAPTCHA_PUBLIC_KEY = <key> RECAPTCHA_PRIVATE_KEY = <key> to match your API key. If desired, enable LDAP authentication via the AUTH_LDAP_* variables. If you deploy a servermon instance ( that generates statistics for your cluster nodes instances, enter its url at: SERVER_MONITORING_URL to link a node with its servermon page. If you deploy a Jira installation then you can append a tab on the left of ganetimgr web interface via an issue collection plugin that can be setup via: HELPDESK_INTEGRATION_JAVASCRIPT_URL HELPDESK_INTEGRATION_JAVASCRIPT_PARAMS If you want to embed collectd statistics in ganetimgr instance page fill the: COLLECTD_URL You can limit the whitelisted subnets (in case of isolated instances) available via: WHITELIST_IP_MAX_SUBNET_V4 WHITELIST_IP_MAX_SUBNET_V6 parameters If you want to keep your users updated with the latest news around the service, fill in an RSS feed url at: 6 Chapter 3. Installation

11 FEED_URL You can change the logo, motto and some footer details via the: BRANDING dictionary. You can create your own logo starting with the static/branding/logo.* files Software Setup Attention: When running the syncdb command that follows DO NOT create a superuser yet! Run the following commands to create the database entries: python manage.py syncdb python manage.py migrate and the superuser: python manage.py createsuperuser Attention: If installing for the first time and want to have analytics, alter the templates/analytics.html file. Set your prefered (we suggest piwik) analytics inclussion script or leave the file as is (commented) if no analytics is desired/available. To get the admin interface files, invoke collectstatic: python manage.py collectstatic Ganetimgr provides 3 flatpages - Service Info, Terms of Service and FAQ. Flatpages can be enabled or disabled via the: FLATPAGES dictionary. We provide 6 flatpages placeholders (3 flatpages x 2 languages - English and Greek) for the flatpages mentioned. By invoking the command: python manage.py loaddata flatpages.json the flatpages placeholders are inserted in the database and become available for editing via the admin interface (Flat Pages). Run the watcher.py: mkdir /var/log/ganetimgr./watcher.py Edit /etc/gunicorn.d/ganetimgr: CONFIG = { mode : django, working_dir : /srv/www/ganetimgr, user : www-data, group : www-data, args : ( --bind= :8088, 3.1. ganetimgr installation 7

12 } ), --workers=2, --worker-class=egg:gunicorn#gevent, --timeout=30, --debug, --log-level=debug, --log-file=/var/log/ganetimgr.log, Add to your nginx config: location /static { root /srv/www/ganetimgr; } location / { proxy_pass } location /admin { proxy_pass } Restart nginx and gunicorn: service nginx restart service gunicorn restart Analytics Setup If installing for the first time do not forget to alter templates/analytics.html to suit your needs. If you do not wish to use analytics, leave this file intact (it is commented with Django template comments). Set your preferred (we use piwik) analytics inclusion script in templates/analytics.html. Eg: <!-- Piwik --> <script type="text/javascript"> var _paq = _paq []; _paq.push([ trackpageview ]); _paq.push([ enablelinktracking ]); (function() { var u=((" == document.location.protocol)? "https" : "http") + "://piwik.example.com//"; _paq.push([ settrackerurl, u+ piwik.php ]); _paq.push([ setsiteid, 1]); var d=document, g=d.createelement( script ), s=d.getelementsbytagname( script )[0]; g.type= text/ g.defer=true; g.async=true; g.src=u+ piwik.js ; s.parentnode.insertbefore(g,s); })(); </script> <noscript><p><img src=" style="border:0" alt="" /></p></n <!-- End Piwik Code --> WebSockets To enable WebSocket support you will need to install VNCAuthProxy following the guides of OSL: and 8 Chapter 3. Installation

13 You will also need at least the following packages: python-twisted, python-openssl Start your twisted-vncauthproxy with: twistd --pidfile=/tmp/proxy.pid -n vncap -c tcp:8888:interface= Make sure your setup fullfils all the required firewall rules ( The relevant options in settings.py are: WEBSOCK_VNC_ENABLED = True NOVNC_PROXY = "example.domain.com:8888" Modern browsers block ws:// connections initiated from HTTPS websites, so if you want to open wss:// connections and encrypt your novnc sessions you need to edit settings.py and set: NOVNC_USE_TLS = True Then you will also need signed a certificate for the example.domain.com host and place it under twistedvncauthproxy/keys directory. The paths are currently hardcoded so one needs to install these 2 files (keep the filenames): twisted_vncauthproxy/keys/vncap.crt twisted_vncauthproxy/keys/vncap.key IPv6 Warning Since twisted (at least until version 12) does not support IPv6, make sure the host running twisted-vncauthproxy does not advertise any AAAA records, else your clients won t be able to connect Now what? You are done!!! If you visit your webserver s address you should see ganetimgr welcome page Now it s time to through the Admin guide to setup your application Administration ganetimgr admin guide ganeti admin We create the /var/lib/ganeti/rapi/users at the ganeti master node with: <user> <pass> write Login to the ganetimgr platform. From the side menu select Admin 3.1. ganetimgr installation 9

14 Click at the Admin link. You should see the admin interface. Now it s time to add one or more clusters. Select the Add cluster option edit the details 10 Chapter 3. Installation

15 then add the network You are done! 3.2 ganetimgr admin guide ganeti admin We create the /var/lib/ganeti/rapi/users at the ganeti master node with: <user> <pass> write Login to the ganetimgr platform. From the side menu select Admin Click at the Admin link. You should see the admin interface. Now it s time to add one or more clusters ganetimgr admin guide 11

16 Select the Add cluster option edit the details then add the network You are done! 12 Chapter 3. Installation

ganetimgr Documentation

ganetimgr Documentation ganetimgr Documentation Release 2.0.0 GRNET NOC, GRNET S.A Oct 04, 2017 Contents 1 What is ganetimgr? 1 2 Installation 3 3 Upgrading 5 4 Compatibility 7 5 Development 9 6 Table of Contents 11 6.1 Installation

More information

Trunk Player Documentation

Trunk Player Documentation Trunk Player Documentation Release 0.0.1 Dylan Reinhold Nov 25, 2017 Contents 1 Installation 3 1.1 System Prerequisites........................................... 3 1.2 Assumptions...............................................

More information

stalun Documentation Release 0.2 Leonidas Poulopoulos, George Kargiotakis, GRNET NOC, GRNET

stalun Documentation Release 0.2 Leonidas Poulopoulos, George Kargiotakis, GRNET NOC, GRNET stalun Documentation Release 0.2 Leonidas Poulopoulos, George Kargiotakis, GRNET NOC, GRNET May 04, 2015 Contents 1 Description 1 2 Architecture 3 3 Inside info 5 4 Install 7 4.1 stalun installation instructions.....................................

More information

DjNRO Release September 30, 2014

DjNRO Release September 30, 2014 DjNRO Release September 30, 2014 Contents 1 About 3 2 Features 5 3 Requirements 7 3.1 Required Packages............................................ 7 4 Installation 9 4.1 Installation/Configuration........................................

More information

Ganeti Web Manager Documentation

Ganeti Web Manager Documentation Ganeti Web Manager Documentation Release 0.11.2 Oregon State University Open Source Lab July 24, 2018 Contents 1 Getting Started 3 1.1 Requirements............................................... 3 1.2

More information

BriCS. University of Bristol Cloud Service Simulation Runner. User & Developer Guide. 1 October John Cartlidge & M.

BriCS. University of Bristol Cloud Service Simulation Runner. User & Developer Guide. 1 October John Cartlidge & M. BriCS University of Bristol Cloud Service Simulation Runner User & Developer Guide 1 October 2013 John Cartlidge & M. Amir Chohan BriCS: User & Developer Guide - 1 - BriCS Architecture Fig. 1: Architecture

More information

fod Documentation Release Leonidas Poulopoulos

fod Documentation Release Leonidas Poulopoulos fod Documentation Release 1.1.0 Leonidas Poulopoulos September 26, 2014 Contents 1 Description 1 2 Contact 3 3 Install 5 3.1 Installation................................................ 5 i ii CHAPTER

More information

Usage Tracking for IBM InfoSphere Information Governance Catalog

Usage Tracking for IBM InfoSphere Information Governance Catalog Usage Tracking for IBM InfoSphere Information Governance Catalog Contents Overview... 3 1. Installing Piwik and its prerequisites... 3 Installing prerequisites... 3 Installing Piwik... 4 2. Creating the

More information

Bitnami OSQA for Huawei Enterprise Cloud

Bitnami OSQA for Huawei Enterprise Cloud Bitnami OSQA for Huawei Enterprise Cloud Description OSQA is a question and answer system that helps manage and grow online communities similar to Stack Overflow. First steps with the Bitnami OSQA Stack

More information

Bishop Blanchet Intranet Documentation

Bishop Blanchet Intranet Documentation Bishop Blanchet Intranet Documentation Release 1.0 Luis Naranjo December 11, 2013 Contents 1 What is it? 1 2 LDAP Authentication 3 3 Types of users 5 3.1 Super user................................................

More information

django-ad-code Documentation

django-ad-code Documentation django-ad-code Documentation Release 1.0.0 Mark Lavin Apr 21, 2018 Contents 1 Installation 3 2 Documentation 5 3 License 7 4 Contributing 9 5 Contents 11 5.1 Getting Started..............................................

More information

Gunnery Documentation

Gunnery Documentation Gunnery Documentation Release 0.1 Paweł Olejniczak August 18, 2014 Contents 1 Contents 3 1.1 Overview................................................. 3 1.2 Installation................................................

More information

TangeloHub Documentation

TangeloHub Documentation TangeloHub Documentation Release None Kitware, Inc. September 21, 2015 Contents 1 User s Guide 3 1.1 Managing Data.............................................. 3 1.2 Running an Analysis...........................................

More information

I hate money. Release 1.0

I hate money. Release 1.0 I hate money Release 1.0 Nov 01, 2017 Contents 1 Table of content 3 2 Indices and tables 15 i ii «I hate money» is a web application made to ease shared budget management. It keeps track of who bought

More information

Hydra Installation Manual

Hydra Installation Manual Hydra Installation Manual Table of Contents 1. Introduction...1 2. Download...1 3. Configuration...1 4. Creating the Database...2 5. Importing WordNets...2 6. Known Issues...3 7. Detailed installation

More information

Yealink Device Management Platform Quick Start Guide. Applies to version or later

Yealink Device Management Platform Quick Start Guide. Applies to version or later Yealink Device Management Platform Quick Start Guide Applies to version 2.0.0.14 or later Overview Yealink device management platform allows administrators to efficiently realize centralized management

More information

Exercises. Cacti Installation and Configuration

Exercises. Cacti Installation and Configuration Exercises Cacti Installation and Configuration Exercises Your Mission... Install Cacti Create device entry for your local router Create device entries for your local servers Create entries for class router

More information

Exercises. Cacti Installation and Configuration

Exercises. Cacti Installation and Configuration Exercises Cacti Installation and Configuration Exercises Your Mission... Install Cacti Create device entry for your local router Create device entries for your local servers Create entries for class router

More information

GRNET NOC Providing IaaS to Greek Academic Users

GRNET NOC Providing IaaS to Greek Academic Users GRNET NOC Providing IaaS to Greek Academic Users Datacenter IaaS workshop 2014 George Kargiotakis (kargig@noc.grnet.gr) whoami Systems & Services Engineer @ GRNET Messing with Linux, Security, Privacy

More information

Koalix ERP. Release 0.2

Koalix ERP. Release 0.2 Koalix ERP Release 0.2 March 01, 2016 Contents 1 Features 3 1.1 Screenshots................................................ 3 1.2 Installation................................................ 6 2 Indices

More information

django-oauth2-provider Documentation

django-oauth2-provider Documentation django-oauth2-provider Documentation Release 0.2.7-dev Alen Mujezinovic Aug 16, 2017 Contents 1 Getting started 3 1.1 Getting started.............................................. 3 2 API 5 2.1 provider.................................................

More information

Easy-select2 Documentation

Easy-select2 Documentation Easy-select2 Documentation Release 1.2.2 Lobanov Stanislav aka asyncee September 15, 2014 Contents 1 Installation 3 2 Quickstart 5 3 Configuration 7 4 Usage 9 5 Reference 11 5.1 Widgets..................................................

More information

Django MFA Documentation

Django MFA Documentation Django MFA Documentation Release 1.0 Micro Pyramid Sep 20, 2018 Contents 1 Getting started 3 1.1 Requirements............................................... 3 1.2 Installation................................................

More information

Installing and Configuring VMware Identity Manager Connector (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3.

Installing and Configuring VMware Identity Manager Connector (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3. Installing and Configuring VMware Identity Manager Connector 2018.8.1.0 (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3.3 You can find the most up-to-date technical documentation on

More information

Building a Django Twilio Programmable Chat Application

Building a Django Twilio Programmable Chat Application Building a Django Twilio Programmable Chat Application twilio.com/blog/08/0/python-django-twilio-programmable-chat-application.html March 7, 08 As a developer, I ve always wanted to include chat capabilities

More information

IEMS 5722 Mobile Network Programming and Distributed Server Architecture Semester 2

IEMS 5722 Mobile Network Programming and Distributed Server Architecture Semester 2 IEMS 5722 Mobile Network Programming and Distributed Server Architecture 2016-2017 Semester 2 Assignment 3: Developing a Server Application Due Date: 10 th March, 2017 Notes: i.) Read carefully the instructions

More information

Bitnami Ruby for Huawei Enterprise Cloud

Bitnami Ruby for Huawei Enterprise Cloud Bitnami Ruby for Huawei Enterprise Cloud Description Bitnami Ruby Stack provides a complete development environment for Ruby on Rails that can be deployed in one click. It includes most popular components

More information

youckan Documentation

youckan Documentation youckan Documentation Release 0.1.0.dev Axel Haustant May 26, 2014 Contents 1 Compatibility 3 2 Installation 5 3 Documentation 7 3.1 Configuration............................................... 7 3.2

More information

Real Life Web Development. Joseph Paul Cohen

Real Life Web Development. Joseph Paul Cohen Real Life Web Development Joseph Paul Cohen joecohen@cs.umb.edu Index 201 - The code 404 - How to run it? 500 - Your code is broken? 200 - Someone broke into your server? 400 - How are people using your

More information

MIT AITI Python Software Development Lab DJ1:

MIT AITI Python Software Development Lab DJ1: MIT AITI Python Software Development Lab DJ1: This lab will help you get Django installed and write your first application. 1 Each person in your group must complete this lab and have it checked off. Make

More information

SPECCHIO Administrators

SPECCHIO Administrators SPECCHIO Page 1 SPECCHIO Administration Guide Version: 2.2 Date: 31.05.2012 Status: Valid Author: A. Hueni, Remote Sensing Laboratories, University of Zurich File: \SPECCHIO AdminGuide_V2.2.docx Pages:

More information

Storage Manager 2018 R1. Installation Guide

Storage Manager 2018 R1. Installation Guide Storage Manager 2018 R1 Installation Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates either

More information

Joomla User Guide Ver 3

Joomla User Guide Ver 3 LiveHelp Server Joomla User Guide Ver 3 Introduction The process of configuration and implementation of the LiveHelp server is divided into four stages, which are detailed below. The approximate time of

More information

Okta Integration Guide for Web Access Management with F5 BIG-IP

Okta Integration Guide for Web Access Management with F5 BIG-IP Okta Integration Guide for Web Access Management with F5 BIG-IP Contents Introduction... 3 Publishing SAMPLE Web Application VIA F5 BIG-IP... 5 Configuring Okta as SAML 2.0 Identity Provider for F5 BIG-IP...

More information

django-oscar-paypal Documentation

django-oscar-paypal Documentation django-oscar-paypal Documentation Release 1.0.0 David Winterbottom May 30, 2018 Contents 1 Installation 3 2 Table of contents 5 2.1 Express checkout............................................. 5 2.2

More information

EveBox Documentation. Jason Ish

EveBox Documentation. Jason Ish Jason Ish May 29, 2018 Contents: 1 Installation 1 2 Server 3 2.1 Running................................................. 3 2.2 Oneshot Mode.............................................. 4 2.3 Authentication..............................................

More information

django-private-chat Documentation

django-private-chat Documentation django-private-chat Documentation Release 0.2.2 delneg Dec 12, 2018 Contents 1 :sunglasses: django-private-chat :sunglasses: 3 1.1 Important Notes............................................. 3 1.2 Documentation..............................................

More information

Magento Migration Tool. User Guide. Shopify to Magento. Bigcommerce to Magento. 3DCart to Magento

Magento Migration Tool. User Guide. Shopify to Magento. Bigcommerce to Magento. 3DCart to Magento Magento Migration Tool User Guide Shopify to Magento Bigcommerce to Magento 3DCart to Magento Copyright 2015 LitExtension.com. All Rights Reserved. Page 1 Contents 1. Preparation... 3 2. Setup... 4 3.

More information

Graphite and Grafana

Graphite and Grafana Introduction, page 1 Configure Grafana Users using CLI, page 3 Connect to Grafana, page 4 Grafana Administrative User, page 5 Configure Grafana for First Use, page 11 Manual Dashboard Configuration using

More information

open-helpdesk Documentation

open-helpdesk Documentation open-helpdesk Documentation Release 0.9.9 Simone Dalla Nov 16, 2017 Contents 1 Overview 3 1.1 Dependencies............................................... 3 1.2 Documentation..............................................

More information

Bitnami JRuby for Huawei Enterprise Cloud

Bitnami JRuby for Huawei Enterprise Cloud Bitnami JRuby for Huawei Enterprise Cloud Description JRuby is a 100% Java implementation of the Ruby programming language. It is Ruby for the JVM. JRuby provides a complete set of core built-in classes

More information

OpenProject AdminGuide

OpenProject AdminGuide OpenProject AdminGuide I. Contents I. Contents... 1 II. List of figures... 2 1 Administration... 2 1.1 Manage projects...2 1.2 Manage users...5 1.3 Manage groups...11 1.4 Manage roles and permissions...13

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Joomla

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Joomla About the Tutorial Joomla is an open source Content Management System (CMS), which is used to build websites and online applications. It is free and extendable which is separated into frontend templates

More information

Nesstar Server Configuration Tool User Guide

Nesstar Server Configuration Tool User Guide Nesstar Server Configuration Tool User Guide Version 3.50 The Configuration Tool allows the server Administrator to edit most of the server configuration properties and to perform basic administrative

More information

Ganeti Web Manager Documentation

Ganeti Web Manager Documentation Ganeti Web Manager Documentation Release 0.10.2 Oregon State University Open Source Lab September 09, 2013 CONTENTS i ii Ganeti Web Manager is a Django based web frontend for managing Ganeti virtualization

More information

VMware Identity Manager Connector Installation and Configuration (Legacy Mode)

VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager This document supports the version of each product listed and supports all subsequent versions until

More information

EveBox Documentation. Release. Jason Ish

EveBox Documentation. Release. Jason Ish EveBox Documentation Release Jason Ish Jan 25, 2018 Contents: 1 Installation 1 2 Server 3 2.1 Running................................................. 3 2.2 Oneshot Mode..............................................

More information

Biostar Central Documentation. Release latest

Biostar Central Documentation. Release latest Biostar Central Documentation Release latest Oct 05, 2017 Contents 1 Features 3 2 Support 5 3 Quick Start 7 3.1 Install................................................... 7 3.2 The biostar.sh manager..........................................

More information

Bitnami Piwik for Huawei Enterprise Cloud

Bitnami Piwik for Huawei Enterprise Cloud Bitnami Piwik for Huawei Enterprise Cloud Description Piwik is a real time web analytics software program. It provides detailed reports on website visitors: the search engines and keywords they used, the

More information

When the plug-in is installed, you get a new button, to go to Upgrade application screen:

When the plug-in is installed, you get a new button, to go to Upgrade application screen: Technical Documentation Reference : Plugin Install Auto Version : V1.0 Plug-in Install Auto Introduction The objective of this document is to explain how to use the plug-in "Install Auto". With this plug-in

More information

We want to install putty, an ssh client on the laptops. In the web browser goto:

We want to install putty, an ssh client on the laptops. In the web browser goto: We want to install putty, an ssh client on the laptops. In the web browser goto: www.chiark.greenend.org.uk/~sgtatham/putty/download.html Under Alternative binary files grab 32 bit putty.exe and put it

More information

Genesys Interaction Recording Solution Guide. Deploying SpeechMiner for GIR

Genesys Interaction Recording Solution Guide. Deploying SpeechMiner for GIR Genesys Interaction Recording Solution Guide Deploying SpeechMiner for GIR 7/19/2018 Contents 1 Deploying SpeechMiner for GIR 1.1 Installing SpeechMiner 1.2 Upgrading SpeechMiner 1.3 Configuring SpeechMiner

More information

ZeroVM Package Manager Documentation

ZeroVM Package Manager Documentation ZeroVM Package Manager Documentation Release 0.2.1 ZeroVM Team October 14, 2014 Contents 1 Introduction 3 1.1 Creating a ZeroVM Application..................................... 3 2 ZeroCloud Authentication

More information

ULTEO OPEN VIRTUAL DESKTOP DEBIAN WHEEZY (7.0) SUPPORT

ULTEO OPEN VIRTUAL DESKTOP DEBIAN WHEEZY (7.0) SUPPORT ULTEO OPEN VIRTUAL DESKTOP V4.0.2 DEBIAN WHEEZY (7.0) SUPPORT Contents 1 Prerequisites: Debian Wheezy (7.0) 3 1.1 System Requirements.............................. 3 2 Repository 4 2.1 Online Method..................................

More information

SafeConsole On-Prem Install Guide

SafeConsole On-Prem Install Guide SafeConsole On-Prem Install Guide This guide applies to SafeConsole 5.0.5 Introduction This guide describes how to install a new SafeConsole server on Windows using the SafeConsole installer. As an option,

More information

Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud

Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud Description ProcessMaker is an easy-to-use, open source workflow automation and Business Process Management platform, designed so Business

More information

Django-danceschool Documentation

Django-danceschool Documentation Django-danceschool Documentation Release 0.1.0 Lee Tucker Dec 05, 2018 Contents: 1 Production Deployment 1 1.1 Docker.................................................. 1 1.2 Heroku..................................................

More information

Jackalope Documentation

Jackalope Documentation Jackalope Documentation Release 0.2.0 Bryson Tyrrell May 23, 2017 Getting Started 1 Create the Slack App for Your Team 3 2 Deploying the Slack App 5 2.1 Run from application.py.........................................

More information

Tangent MicroServices Documentation

Tangent MicroServices Documentation Tangent MicroServices Documentation Release 1 Tangent Solutions March 10, 2015 Contents 1 Getting Started 3 1.1 Micro Services Projects......................................... 3 2 Service Registry 5

More information

SafeConsole On-Prem Install Guide. version DataLocker Inc. July, SafeConsole. Reference for SafeConsole OnPrem

SafeConsole On-Prem Install Guide. version DataLocker Inc. July, SafeConsole. Reference for SafeConsole OnPrem version 5.2.2 DataLocker Inc. July, 2017 SafeConsole Reference for SafeConsole OnPrem 1 Contents Introduction................................................ 2 How do the devices become managed by SafeConsole?....................

More information

High Availability Failover. Version 1.0

High Availability Failover. Version 1.0 High Availability Failover Version 1.0 CONTENTS High Availability Failover High Availability Failover (Active/Active) 2 Prerequisites 2 STEP 1: DB Replication Server Setup 2 STEP 2: Configure the MySQL

More information

datapusher Documentation

datapusher Documentation datapusher Documentation Release 1.0 Open Knowledge International July 13, 2018 Contents 1 Development installation 3 2 Production installation and Setup 5 2.1 Download and Install (All CKAN Versions)...............................

More information

Migration Tool. User Guide. SHOPIFY to MAGENTO. Copyright 2014 LitExtension.com. All Rights Reserved.

Migration Tool. User Guide. SHOPIFY to MAGENTO. Copyright 2014 LitExtension.com. All Rights Reserved. SHOPIFY to MAGENTO Migration Tool User Guide Copyright 2014 LitExtension.com. All Rights Reserved. Shopify to Magento Migration Tool: User Guide Page 1 Contents 1. Preparation... 3 2. Set-up... 3 3. Set-up...

More information

Installing Open Project on Ubuntu AWS with Apache and Postgesql

Installing Open Project on Ubuntu AWS with Apache and Postgesql Installing Open Project on Ubuntu AWS with Apache and Postgesql Contents Installing Open Project on Ubuntu AWS with Apache and Postgesql... 1 Add new ports to your security group... 2 Update your system...

More information

Introduction. Overview of HCM. HCM Dashboard CHAPTER

Introduction. Overview of HCM. HCM Dashboard CHAPTER CHAPTER 1 This chapter describes the Hosted Collaboration Mediation (HCM) software. It includes: Overview of HCM, page 1-1 Terminology Used in HCM, page 1-2 HCM Dashboard Architecture, page 1-3 Starting

More information

Seeder Documentation. Release 0.1. Visgean Skeloru

Seeder Documentation. Release 0.1. Visgean Skeloru Seeder Documentation Release 0.1 Visgean Skeloru Nov 06, 2018 Contents 1 Installation 3 2 Docker Compose 5 3 Deploying 7 4 Integration with legacy system 9 5 Crons 11 6 Translation 13 7 Terminology 15

More information

Automation Anywhere Enterprise 10 LTS

Automation Anywhere Enterprise 10 LTS Automation Anywhere Enterprise 10 LTS Document Version: 1.3 Installation Guide Date of Publication: 15 th November, 2016 Update(s) to this document edition: Table of Contents 1. Client Prerequisites Processor

More information

Install and upgrade Qlik Sense. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved.

Install and upgrade Qlik Sense. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved. Install and upgrade Qlik Sense Qlik Sense 3.0 Copyright 1993-2016 QlikTech International AB. All rights reserved. Copyright 1993-2016 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik

More information

Bitnami Coppermine for Huawei Enterprise Cloud

Bitnami Coppermine for Huawei Enterprise Cloud Bitnami Coppermine for Huawei Enterprise Cloud Description Coppermine is a multi-purpose, full-featured web picture gallery. It includes user management, private galleries, automatic thumbnail creation,

More information

MAGENTO Migration Tools

MAGENTO Migration Tools MAGENTO Migration Tools User Guide Copyright 2014 LitExtension.com. All Rights Reserved. Magento Migration Tools: User Guide Page 1 Contents 1. Preparation... 3 2. Set-up... 4 3. Set-up... 5 4. License

More information

Manually Password Protect Directories Apache Ubuntu

Manually Password Protect Directories Apache Ubuntu Manually Password Protect Directories Apache Ubuntu Apache can be configured to force users to login before being Password protection can be useful for securing a directory that planning to edit them manually,

More information

Secure Web Appliance. Basic Usage Guide

Secure Web Appliance. Basic Usage Guide Secure Web Appliance Basic Usage Guide Table of Contents 1. Introduction... 1 1.1. About CYAN Secure Web Appliance... 1 1.2. About this Manual... 1 1.2.1. Document Conventions... 1 2. Description of the

More information

Install and upgrade Qlik Sense. Qlik Sense 3.2 Copyright QlikTech International AB. All rights reserved.

Install and upgrade Qlik Sense. Qlik Sense 3.2 Copyright QlikTech International AB. All rights reserved. Install and upgrade Qlik Sense Qlik Sense 3.2 Copyright 1993-2017 QlikTech International AB. All rights reserved. Copyright 1993-2017 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik

More information

Bitnami Pimcore for Huawei Enterprise Cloud

Bitnami Pimcore for Huawei Enterprise Cloud Bitnami Pimcore for Huawei Enterprise Cloud Description Pimcore is the open source platform for managing digital experiences. It is the consolidated platform for web content management, product information

More information

Bitnami MariaDB for Huawei Enterprise Cloud

Bitnami MariaDB for Huawei Enterprise Cloud Bitnami MariaDB for Huawei Enterprise Cloud First steps with the Bitnami MariaDB Stack Welcome to your new Bitnami application running on Huawei Enterprise Cloud! Here are a few questions (and answers!)

More information

django-openid Documentation

django-openid Documentation django-openid Documentation Release 2.0a Simon Willison September 27, 2017 Contents 1 Installation 3 2 Accepting OpenID 5 2.1 Redirecting somewhere else....................................... 6 2.2 Requesting

More information

Technical Manual(TM)

Technical Manual(TM) Technical Manual(TM) Image Processing Platform Team04 Name First Role Second Role Third Role Hao Wu Requirements Engineer Software Architect Implementer Junran Liu Operational Concept Engineer Software

More information

Bomgar Vault Server Installation Guide

Bomgar Vault Server Installation Guide Bomgar Vault 17.2.1 Server Installation Guide 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property

More information

django-baton Documentation

django-baton Documentation django-baton Documentation Release 1.0.7 abidibo Nov 13, 2017 Contents 1 Features 3 2 Getting started 5 2.1 Installation................................................ 5 2.2 Configuration...............................................

More information

modoboa-amavis Documentation

modoboa-amavis Documentation modoboa-amavis Documentation Release 1.1.3 Antoine Nguyen Aug 19, 2018 Contents 1 Install 3 2 Setup 5 2.1 Quick Amavis setup........................................... 5 2.2 Connect Modoboa and Amavis.....................................

More information

Python web frameworks

Python web frameworks Flask Python web frameworks Django Roughly follows MVC pattern Steeper learning curve. Flask Initially an April Fools joke Micro -framework: minimal approach. Smaller learning curve http://flask.pocoo.org/docs/0.12/quickstart/#a-minimalapplication

More information

Introduction. Installation. Version 2 Installation & User Guide. In the following steps you will:

Introduction. Installation. Version 2 Installation & User Guide. In the following steps you will: Introduction Hello and welcome to RedCart TM online proofing and order management! We appreciate your decision to implement RedCart for your online proofing and order management business needs. This guide

More information

Infoblox Kubernetes1.0.0 IPAM Plugin

Infoblox Kubernetes1.0.0 IPAM Plugin 2h DEPLOYMENT GUIDE Infoblox Kubernetes1.0.0 IPAM Plugin NIOS version 8.X August 2018 2018 Infoblox Inc. All rights reserved. Infoblox Kubernetes 1.0.0 IPAM Deployment Guide August 2018 Page 1 of 18 Overview...

More information

LECTURE 15. Web Servers

LECTURE 15. Web Servers LECTURE 15 Web Servers DEPLOYMENT So, we ve created a little web application which can let users search for information about a country they may be visiting. The steps we ve taken so far: 1. Writing the

More information

Migrating vrealize Automation 6.2 to 7.2

Migrating vrealize Automation 6.2 to 7.2 Migrating vrealize Automation 6.2 to 7.2 vrealize Automation 7.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

How to Configure Authentication and Access Control (AAA)

How to Configure Authentication and Access Control (AAA) How to Configure Authentication and Access Control (AAA) Overview The Barracuda Web Application Firewall provides features to implement user authentication and access control. You can create a virtual

More information

JAMF Software Server Installation and Configuration Guide for Linux. Version 9.31

JAMF Software Server Installation and Configuration Guide for Linux. Version 9.31 JAMF Software Server Installation and Configuration Guide for Linux Version 9.31 JAMF Software, LLC 2014 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this

More information

Bitnami Re:dash for Huawei Enterprise Cloud

Bitnami Re:dash for Huawei Enterprise Cloud Bitnami Re:dash for Huawei Enterprise Cloud Description Re:dash is an open source data visualization and collaboration tool. It was designed to allow fast and easy access to billions of records in all

More information

Bitnami Moodle for Huawei Enterprise Cloud

Bitnami Moodle for Huawei Enterprise Cloud Bitnami Moodle for Huawei Enterprise Cloud Description Moodle is a Course Management System that is designed using sound pedagogical principles to help educators create effective online learning communities.

More information

Administering Your ArcGIS Enterprise Portal Bill Major Craig Cleveland

Administering Your ArcGIS Enterprise Portal Bill Major Craig Cleveland Administering Your ArcGIS Enterprise Portal Bill Major Craig Cleveland Agenda Welcome & Introduction to ArcGIS Enterprise Portal for ArcGIS Administration - Basic Configuration - Advanced Configuration

More information

Upgrade Guide. This document details the upgrade process for customers moving from the full version of OnApp Cloud v2.3.1 to v2.3.2.

Upgrade Guide. This document details the upgrade process for customers moving from the full version of OnApp Cloud v2.3.1 to v2.3.2. Upgrade Guide v2.3.2 This document details the upgrade process for customers moving from the full version of OnApp Cloud v2.3.1 to v2.3.2. It explains important changes to the backup system, network config

More information

Installing Joomla

Installing Joomla Installing Joomla 3.0.11 To start installing Joomla 3.X you have to copy the zipped file Joomla_3.0.1-Stable-Full_Package.zip to the folder in which you want to install Joomla 3.X. On a web host this is

More information

Garment Documentation

Garment Documentation Garment Documentation Release 0.1 Evan Borgstrom March 25, 2014 Contents i ii A collection of fabric tasks that roll up into a single deploy function. The whole process is coordinated through a single

More information

Verteego VDS Documentation

Verteego VDS Documentation Verteego VDS Documentation Release 1.0 Verteego May 31, 2017 Installation 1 Getting started 3 2 Ansible 5 2.1 1. Install Ansible............................................. 5 2.2 2. Clone installation

More information

django-embed-video Documentation

django-embed-video Documentation django-embed-video Documentation Release 0.7.stable Juda Kaleta December 21, 2013 Contents i ii Django app for easy embeding YouTube and Vimeo videos and music from SoundCloud. Repository is located on

More information

CPW AutoGrader. CSCI 370 Field Session 2016 June 20, Client: Christopher Painter Wakefield

CPW AutoGrader. CSCI 370 Field Session 2016 June 20, Client: Christopher Painter Wakefield CPW AutoGrader CSCI 370 Field Session 2016 June 20, 2016 Client: Christopher Painter Wakefield Authors: Michael Bartlett Harry Krantz Eric Olson Chris Rice Caleb Willkomm Table of Contents Introduction

More information

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower Configuration Guide SOAPMDP_Config_7.2.0 Copyright Copyright 2015 SOA Software, Inc. All rights

More information

RED IM Integration with Bomgar Privileged Access

RED IM Integration with Bomgar Privileged Access RED IM Integration with Bomgar Privileged Access 2018 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the

More information

Storage Made Easy Cloud Appliance installation Guide

Storage Made Easy Cloud Appliance installation Guide dev.storagemadeeasy.com Storage Made Easy Cloud Appliance installation Guide 4 min read original Configuring the SME Appliance The configuration server allows you to configure - Static IP address - Domain

More information

Cookiecutter Django CMS Documentation

Cookiecutter Django CMS Documentation Cookiecutter Django CMS Documentation Release 0.2.2 Emanuele Palazzetti December 24, 2013 Contents 1 Basics 3 1.1 Overview................................................. 3 1.2 Usage...................................................

More information