WMarket For Adminstrators Install with Docker or the Automatic Script.

Slides:



Advertisements
Similar presentations
1 Automated SFTP Windows and SUN Linux and SUN. 2 Vocabulary  Client = local=the machine generating the SFTP request  Server = remote = the machine.
Advertisements

MySQL Installation Guide. MySQL Downloading MySQL Installer.
CSS Central: Central Management Utility Screen View Samples Next.
Module 6: Configuring Windows XP Professional to Operate in a Microsoft Network.
Chapter 5: Configuring Users and Groups. Types of User Accounts Administrator –Unrestricted access to performing administrative tasks –Use sparingly Standard.
The Internet. Telnet Telnet means using your computer as a terminal. All commands you type are sent to the host computer you are connected to and executed.
XMAS installation instructions Windows Version: 1.0 4/22/2008.
70-290: MCSE Guide to Managing a Microsoft Windows Server 2003 Environment, Enhanced Chapter 10: Server Administration.
SETUP AND CONFIGURATIONS WEBLOGIC SERVER. 1.Weblogic Installation 2.Creating domain through configuration wizard 3.Creating domain using existing template.
PHP-Fusion. Introduction PHP-Fusion is a lightweight open source content management system (CMS) written in PHP. PHP-Fusion utilizes a MySQL database.
Reproducible Environment for Scientific Applications (Lab session) Tak-Lon (Stephen) Wu.
Mac OS X Imaging Training for Deployment Server 6.9 May 27, 2009.
When running the CTAS MS Access database modules you may see this security warning This indicates that all scripting within the database has been disabled.
Configuring a Web Server. Overview Overview of IIS Preparing for an IIS Installation Installing IIS Configuring a Web Site Administering IIS Troubleshooting.
Session 5: Working with MySQL iNET Academy Open Source Web Development.
Tutorial 11 Installing, Updating, and Configuring Software
SQL HW1 Turn in as a hardcopy at the start of next class period. You may work this assignment in groups.
SharePoint 2010 Development Environment A Guide to Setup SharePoint 2010 Development Environment on Windows 7 Machine.
Bonrix SMPP Client. Index Introduction Software and Hardware Requirements Architecture Set Up Installation HTTP API Features Screen-shots.
The In’s and Out’s of the IIS 6.0 Migration Tool The In’s and Out’s of the IIS 6.0 Migration Tool Chris Adams Web Platform Supportability Lead Microsoft.
Client – Server Application Can you create a client server application: The server will be running as a service: does not have a GUI The server will run.
Tools Menu and Other Concepts Alerts Event Log SLA Management Search Address Space Search Syslog Download NetIIS Standalone Application.
ISYS 475 Project: Customizing a Zen Cart E-Commerce Site.
Present :Arezoo Mollahasani. Step 1  Define your server connection Open MySQL WorkBench and click New Server Instance on the right of the window.
APC by Schneider Electric– Bill Pasquill SSPCNSV Installation ●Steps needed to install PCNSV on VMware ESX server 3.5 ●Mount CD ●Copy files ●Run Installation.
DATABASE TOOLS CS 260 Database Systems. Overview  Database accounts  Oracle SQL Developer  MySQL Workbench.
JDBC Tutorial CSCI 201L Jeffrey Miller, Ph.D. HTTP :// WWW - SCF. USC. EDU /~ CSCI 201 USC CSCI 201L.
Packaging for Voracity Solutions Control Panel David Turner.
Installing MySQL BCIS 3680 Enterprise Programming.
Package & Deploy. OBJECTIVES Package Deploy Way to package.
CNIT 124: Advanced Ethical Hacking Docker (not in textbook) & Ch 8: Exploitation.
Copy of the from the secure website - click on the AccoridaLife.zip link.
 To start using PHP, you can:  Find a web host with PHP and MySQL support  Install a web server on your own PC, and then install PHP and MySQL.
Configuring and Deploying Web Applications Lesson 7.
Sem 2v2 Chapter 5 Router Startup and Setup. A router initializes by loading the bootstrap, the operating system, and a configuration file. If the router.
Install CB 1.8 on Ubuntu. Steps Followed Install Ubuntu (Ubuntu LTS) on Virtual machine – (VMware Workstation) (
PhotoBytes Burt Bielicki. Overview What is PhotoBytes? Who Will Use PhotoBytes? System Requirements System and Software Architecture Lifecycle Plan Feasibility.
Package Administration 3/14/ Software package administration adds software to systems and removes software from systems Sun and its third-party.
Active Directory Domain Services (AD DS). Identity and Access (IDA) – An IDA infrastructure should: Store information about users, groups, computers and.
Scope - Goals AB Report Server database (DB) is what exactly? In Native mode the DB is actually 2 SQL Server DBs. In SharePoint mode it is a set of 3.
WMarket For Adminstrators Manual Installation. Basic Dependencies To install your own WMarket instance, you are required to install the following software:
Alfresco deployment with Docker Andrea Agili Software Engineer – Dr Wolf srl Tommaso Visconti DevOps – Dr Wolf srl.
Let's build a VMM service template from A to Z in one hour Damien Caro Technical Evangelist Microsoft Central & Eastern Europe
Installing and Configuring Moodle. Download Download latest Windows Install package from Moodle.orgMoodle.org.
PuTTY Introduction to Web Programming Kirkwood Continuing Education by Fred McClurg © Copyright 2016, All Rights Reserved ssh client.
Microsoft Virtual Academy Module 9 Configuring and Managing the VMM Library.
How to use Drupal Awdhesh Kumar (Team Leader) Presentation Topic.
CACI Proprietary Information | Date 1 Upgrading to webMethods Product Suite Name: Semarria Rosemond Title: Systems Analyst, Lead Date: December 8,
Moodle Install Guide Team 5 안정현 김현수 주채진 조수아. Moodle Install Enter moodle.org web site -> Go to Standard Moodle Packages in Downloads.
Red hat Installation 2 Live CD.
Installation The Intercompany Integration Solution for SAP Business One Version 2.0 for SAP Business One 9.1 Welcome to the course on the installation.
Download and install Oracle Developer Suite 10g & Developer suite
Router Startup and Setup
KFT1 Task 4 GETTING STARTED
Workshop on Microbiome and Health
Installation The Intercompany Integration Solution for SAP Business One Version 2.0 for SAP Business One 9.1 Welcome to the course on the installation.
Database Driven Websites
Software for Eligible Beneficiaries Accession
Title: Tech Training Certificate: Ace of Initiative Program
Microsoft Virtual Academy
Install Emu8086 TA.Amjad Alsuhaim.
Docker, Drupal and Persistence
Step by step installation of a Domino server on Docker
Router Startup and Setup
bitcurator-access-webtools Quick Start Guide
Attach2Dynamics Drag and Drop multiple files and folders to Cloud Storage within your Dynamics CRM
Ch 1 .Installing and configuring SQL Server 2005
Jean-Francois LEBLANC Christian SEBASTIAN
Presentation transcript:

WMarket For Adminstrators Install with Docker or the Automatic Script

Docker (1) The existing docker image creates a Wmarket instance with the following settings – Interal authentication (IdM disabled) – Database at host wmarket_db – Database password: my-secret-pw 2

Docker (2) Create a container to host the database Deploy the WMarket image that you cand find at the Docker Hub 3 docker run --name wmarket_db -e MYSQL_ROOT_PASSWORD=my-secret-pw -e MYSQL_DATABASE=marketplace -v /var/lib/mysql - d mysql docker run --name wmarket -v /WMarket -p PORT: link wmarket_db -d fiware/wmarket

Docker (3) If you prefer, you can use docker-compose so you have only to run one command: – Create a new folder – Create a new file in this folder called docker- compose.yml – Copy the content of the attached file [1] in the file you have just created – Run docker-compose up [1] docker/docker-compose.ymlhttps://raw.githubusercontent.com/conwetlab/WMarket/master/ docker/docker-compose.yml 4

Script The script allows you to automatically create a new WMarket instance with a custom configuration Script intended for Ubuntu and CentOS 7 To install WMarket using the script: – Download the attached script [2] – Execute the script – It will prompt you some details: Database user name and password Index path: Path to store Lucene indexes Media: Path to store media files and the maximum size of these files Description Autoupdate Period: the period used to check for new offerings in the registered descriptions Authentication configuration: IdM or Local [2] 5