SlideShare a Scribd company logo
1 of 24
Download to read offline
Tungsten Dashboard for Clustering
Eric M. Stone, COO
2
1.  Tungsten Dashboard Welcome
2.  Tungsten Dashboard Overview
3.  Tungsten Dashboard Prerequisites
4.  Tungsten Dashboard Security Limitations
5.  Configure the Tungsten Cluster Manager API
6.  Test Connectivity to the Tungsten Manager API
Directly
7.  Install the Tungsten Dashboard
8.  Install and Configure the Apache 2.4 Web Server
9.  Configure the Tungsten Dashboard
10.  Install and Configure HAProxy
11.  Test Connectivity to the Tungsten Manager API via
HAProxy
12.  Access the Tungsten Dashboard GUI via a Browser
In this training session…
Tungsten Dashboard Welcome •  This training session uses an example 6-node
Composite cluster named global_composite, with
two member clusters, named east_member and
west_member.
•  The demo uses the standard Amazon Linux AMI
2018.03.0 (HVM), SSD; in us-east use ami-467ca739
•  The commands and examples in this training
session are the same as those in our online
documentation at
http://docs.continuent.com/tungsten-dashboard-1.0/
•  These examples use example directories and
deployment practices – your environment may
vary considerably.
•  There is a downloadable copy of the commands
that work well for copy-and-paste in your own
environments available at
http://continuent-videos.s3.amazonaws.com/Continuent-
Training-Basic-Tungsten_Dashboard_Install-20180508.txt
Tungsten Dashboard Overview •  A simple GUI management tool for Continuent
Tungsten Clustering
•  The Dashboard is usually installed on a
standalone web server with HAProxy installed
•  HAProxy routes API requests to the various
database nodes running the manager API
listener on port 8090.
•  There is one frontend per cluster.
•  Each backend contains all database/witness
nodes for that cluster.
5
The dashboard web
application sends requests to
the locally-installed HA Proxy
which in turn forwards the
requests in a round-robin
fashion to the Manager API
listening on port 8090 on each
database node.
Tungsten Dashboard Overview
Tungsten Dashboard Pre-Requisites Continuent Tungsten Dashboard needs the
following prerequisites to function:
•  Continuent Tungsten Clustering v5.3.0 or
v5.3.1 only as of May 8, 2018.
•  Web server with PHP support – we use
Apache 2.4 for this demo
•  HAProxy - http://www.haproxy.org
•  Make sure to open ALL of the appropriate
firewall ports listed in the steps below to
ensure access; at minimum, port 8090 on all
manager nodes must be reachable from
the web/haproxy server for API calls to
succeed.
7
Warning
Locking only works on a single web server host, so if you have installed the Tungsten Dashboard on more
than one host, the lock is not shared and is therefore ineffective.
Warning
Please use Apache Basic Auth to lock down access to the Tungsten Dashboard GUI.
Warning
SSL (https) configuration for the Tungsten Dashboard is possible, but is beyond the scope of this document.
Warning
SSL (https) is not yet supported on the Manager API endpoints.
Tungsten Dashboard Security Limitations
Continuent Tungsten Dashboard has the following security limitations:
Warning
THERE IS NO API SECURITY YET - If you enable the API on the Manager, anyone may connect to it. Use
your firewall to block port 8090 from non-essential hosts.
8
Configure the Tungsten Cluster Manager API
Add the following to /etc/tungsten/tungsten.ini under the [defaults] section:
Inform the running manager of the changed configuration, restarting if needed:
Verify that the port is listening:
shell> sudo netstat -pan | grep 8090
shell> tpm update
shell> manager restart
mgr-api-port=8090
mgr-api=true
mgr-api-address=0.0.0.0
mgr-api-full-access=true
9
Test Connectivity to the Tungsten Manager API Directly
shell> sudo yum –y install jq
shell> curl -s http://db1:8090/manager/status/east/ | jq . | less
shell> curl -s http://db4:8090/manager/status/west/ | jq . | less
shell> curl -s -X POST http://db4:8090/manager/control/west/heartbeat | jq . | less
Test connectivity to the Tungsten Manager API directly using curl and jq for formatting the json
response:
10
Install the Tungsten Dashboard
For example, create a new user called tungsten, group tungsten, homedir /home/tungsten:
shell> sudo useradd -m -d /home/tungsten -s /bin/bash -c "Tungsten Dashboard" -U tungsten.
Now create the Tungsten Dashboard web root directory and all needed subdirectories:
shell> sudo mkdir /volumes/data/www/tungsten
shell> sudo chown -R tungsten: /volumes/data/www/tungsten
shell> sudo su - tungsten
shell> mkdir /volumes/data/www/tungsten/etc/ /volumes/data/www/tungsten/logs/
shell> chmod 2770 /volumes/data/www/tungsten/logs/
shell> chmod 2750 /volumes/data/www/tungsten/etc/
11
Install the Tungsten Dashboard - continued
Still as user tungsten, get the software and copy to the web root directory for use in the next step:
shell> cd
shell> wget -O tungsten-dashboard-1.0.0-27.tar.gz 'TEMP_URL_PROVIDED_BY_CONTINUENT'
shell> tar xvzf tungsten-dashboard-1.0.0-27.tar.gz
shell> cd tungsten-dashboard-1.0.0-27
shell> rsync -a tungsten-dashboard-1.0.0-27/html/ /volumes/data/www/tungsten/html/
shell> chmod 2775 /volumes/data/www/tungsten/html
shell> mkdir /volumes/data/www/tungsten/html/locks
shell> chmod 2775 /volumes/data/www/tungsten/html/locks
shell> htpasswd -c /volumes/data/www/tungsten/etc/.htpasswd erics
Password: demo
shell> exit
12
Install and Configure the Apache 2.4 Web Server
As the root user, install the Apache 2.4 web server and add the apache user to the tungsten group:
shell> sudo vim /etc/httpd/conf.d/z01-tungsten-dashboard.conf
shell> sudo apachectl configtest
shell> sudo apachectl restart
<VirtualHost *:80>
ServerName dashboard.yourdomain.com
DocumentRoot /volumes/data/www/tungsten/html
DirectoryIndex index.html index.php
ServerAdmin dashboard.apache.admin@yourdomain.com
ErrorLog "| /usr/sbin/rotatelogs /volumes/data/www/tungsten/logs/errors.log 86400"
CustomLog "| /usr/sbin/rotatelogs /volumes/data/www/tungsten/logs/access.log 86400" combined
<Directory "/volumes/data/www/tungsten/html">
AllowOverride All
Options +FollowSymLinks +ExecCGI -Indexes
Order allow,deny
Allow from all
#Require all granted
<RequireAll>
AuthType Basic
AuthName "Tungsten Dashboard - RESTRICTED"
AuthUserFile /volumes/data/www/tungsten/etc/.htpasswd
Require valid-user
</RequireAll>
</Directory>
</VirtualHost>
shell> sudo yum -y install httpd24-devel php56-devel
shell> sudo chkconfig httpd on
shell> sudo usermod -a -G tungsten apache
shell> sudo service httpd start
Create the apache configuration file for the Tungsten Dashboard web service, test it and then restart the web server:
13
Configure the Tungsten Dashboard
Replace the service names and ports in $jsonConfig to match your HA Proxy setup:
shell> sudo su - tungsten
shell> cd /volumes/data/www/tungsten/html/
shell> mv config.php.sample config.php
shell> vim config.php
•  Host and port are required for all clusters.
•  There is a one-to-one relationship between Tungsten services and HAProxy ports
•  A cluster is marked as a composite parent if it has the "children" array, even if the array is empty.
•  A cluster is marked as a composite child if it has the "memberOf" key defined.
•  All Composite member (child) clusters require their own definitions so we know about the host and port for each.
•  Please note that the `host: localhost` should remain localhost because this tells the app to call the HAProxy server
on the GUI server node, which will then handle routing to the appropriate manager/database node.
•  You may add your own custom menu options to the tools menu by editing the menus->tools section in the json
configuration.
14
Configure the Tungsten Dashboard - continued
•  By default, the list of Auto-Refresh time intervals is defined as 5, 10, 30, 60, 120 or 300 seconds. You may change
that by using the autoRefreshList setting, i.e.:
"autoRefreshList": [3,5,10,30,60,120,300,600]
Important PLEASE NOTE: autoRefreshList values less than 3 seconds are strongly discouraged!
•  By default the Auto-refresh feature is disabled (i.e. set to zero). You may enable autoRefreshDelay by setting it it to
one of the Auto-Refresh time interval values.
•  By default the nodes will display for each cluster. You may set startExpanded to 0 to have the display start in
collapsed view
15
Configure the Tungsten Dashboard- continued
•  Use lockBaseDir to change the location of the temporary lock files.
•  The default is {WEBROOT}/locks/, (i.e. a lockBaseDir of /tmp will yield a lock directory of /tmp/locks).
"lockBaseDir":"/tmp"
•  The default Tab Badge update rate is 30 seconds. You may disable it by setting tabUpdateRate to zero (0). You
may change the refresh rate in seconds by specifying a non-zero value.
"tabUpdateRate":60
•  You may set dashboardMaintenanceScreen to 1 to display a Maintenance-In-Progress message.
16
$jsonConfig = <<<EOJ
{
"clusters": {
"north": {
"host":"localhost",
"port":"8093"
}
},
"menus": {
"tools": {
"Add your links here":"http://docs.continuent.com/tungsten-dashboard-1.0/tungsten-dashboard-configure-dashboard.html",
"Archive Mode Docs":"http://docs.continuent.com/tungsten-clustering-5.2/operations-status-changingstates.html#operations-status-changingstates-archive",
"Cluster Heartbeat Docs":"http://docs.continuent.com/tungsten-clustering-5.2/cmdline-tools-cctrl-commands.html#cmdline-tools-cctrl-commands-cluster-heartbeat"
}
},
"settings": {
"dashboardMaintenanceScreen":0,
"autoRefreshList": [5,10,30,60,120,300],
"autoRefreshDelay":0,
"startExpanded":1,
"jumpToTopOnMsg":1
}
}
EOJ;
This is a sample standalone cluster configuration from config.php:
17
$jsonConfig = <<<EOJ
{
"clusters": {
"global": {
"host":"localhost",
"port":8091,
"children": [ "west","east" ]
},
"east": {
"host":"localhost",
"port":"8092",
"memberOf":"global"
},
"west": {
"host":"localhost",
"port":"8093",
"memberOf":"global"
}
},
"menus": {
"tools": {
"Add your links here":"http://docs.continuent.com/tungsten-dashboard-1.0/tungsten-dashboard-configure-dashboard.html",
"Archive Mode Docs":"http://docs.continuent.com/tungsten-clustering-5.2/operations-status-changingstates.html#operations-status-changingstates-archive",
"Cluster Heartbeat Docs":"http://docs.continuent.com/tungsten-clustering-5.2/cmdline-tools-cctrl-commands.html#cmdline-tools-cctrl-commands-cluster-heartbeat"
}
},
"settings": {
"dashboardMaintenanceScreen":0,
"autoRefreshList": [5,10,30,60,120,300],
"autoRefreshDelay":0,
"startExpanded":1,
"jumpToTopOnMsg":1
}
}
EOJ
This is a sample composite cluster configuration from config.php:
18
Install and Configure HAProxy
•  The Tungsten Cluster Manager listens on port 8090 for API calls, so we configure the HAProxy listener ports to not
conflict with that.
•  There must be one frontend per cluster, so the first one starts with port 8091.
•  In the example below, we assign frontend port 8091 to the composite global, frontend port 8092 to the cluster east and
frontend port 8093 to the cluster west.
•  It is imperative that there be one backend per cluster containing all nodes in that cluster. In the case of a composite, the
backend should contain all nodes from all member clusters.
•  In the below example, backend east contains member nodes db1-3, backend west contains nodes db4-6 and backend
global contains nodes db1-6.
•  NOTE: See haproxy.cfg in the examples directory for a more complete sample config to be used locally on a web
server or jump host
19
Install and Configure HAProxy- continued
Install and prepare the HAProxy install:
shell> sudo -i
shell> yum install haproxy
shell> cd /etc/haproxy/
shell> cp haproxy.cfg haproxy.cfg.orig
Edit /etc/haproxy/haproxy.cfg and append the new clustering config to the bottom of the existing config:
shell> vim /etc/haproxy/haproxy.cfg frontend global
bind *:8091
default_backend global
frontend east
bind *:8092
default_backend east
frontend west
bind *:8093
default_backend west
backend global
balance roundrobin
server db1 db1.yourdomain.com:8090 check
server db2 db2.yourdomain.com:8090 check
server db3 db3.yourdomain.com:8090 check
server db4 db4.yourdomain.com:8090 check
server db5 db5.yourdomain.com:8090 check
server db6 db6.yourdomain.com:8090 check
backend east
balance roundrobin
server db1 db1.yourdomain.com:8090 check
server db2 db2.yourdomain.com:8090 check
server db3 db3.yourdomain.com:8090 check
backend west
balance roundrobin
server db4 db4.yourdomain.com:8090 check
server db5 db5.yourdomain.com:8090 check server
db6 db6.yourdomain.com:8090 check
shell> chkconfig haproxy on
shell> service haproxy restart
Configure HA Proxy to start at boot time, then restart the service:
20
Test Connectivity to the Tungsten Manager API via HA Proxy
shell> curl -s http://localhost:8091/manager/status/global/ | jq . | less
shell> curl -s http://localhost:8092/manager/status/east/ | jq . | less
shell> curl -s http://localhost:8093/manager/status/west/ | jq . | less
shell> curl -s -X POST http://localhost:8093/manager/control/west/heartbeat | jq . | less
On the web server, validate that HA Proxy is working properly
21
Access the Tungsten Dashboard GUI via a Browser
Open your browser and access the Tungsten Dashboard GUI via an IP address or hostname:
Browser URL: http://{dashboard_ip}/
22
1.  Tungsten Dashboard Welcome
2.  Tungsten Dashboard Overview
3.  Tungsten Dashboard Prerequisites
4.  Tungsten Dashboard Security Limitations
5.  Configuring the Tungsten Cluster Manager API
6.  Testing Connectivity to the Tungsten Manager API
Directly
7.  Installing the Tungsten Dashboard
8.  Installing and Configuring the Apache 2.4 Web Server
9.  Configuring the Tungsten Dashboard
10.  Installing and Configuring HAProxy
11.  Testing Connectivity to the Tungsten Manager API via
HAProxy
12.  Accessing the Tungsten Dashboard GUI via a
Browser
In this training session we covered…
23
Next Steps •  Sign up for a private demo for your team, setup a POC, email
us at sales@continuent.com
•  Learn more at your own pace
–  Whitepapers at www.continuent.com/white-papers/
–  Read the documentation at http://docs.continuent.com/
–  Training and webinar library at www.continuent.com/videos/
–  Subscribe to our YouTube channel at http://tinyurl.com/TungstenUni
•  Follow us on Twitter @Continuent and
facebook.com/Continuent
For more information,
contact us:
Petri Virsunen
VP Marketing
petri.virsunen@continuent.com
+1 (408) 806-9860
Chris Parker
Director, Professional Services EMEA & APAC
chris.parker@continuent.com
Matthew Lang
Director, Professional Services Americas
matthew.lang@continuent.com
Eero Teerikorpi
Founder, CEO
eero.teerikorpi@continuent.com
+1 (408) 431-3305
Eric Stone
COO
eric.stone@continuent.com
MC Brown
VP Products
mc.brown@continuent.com

More Related Content

What's hot

Document Management: Opendocman and LAMP installation on Cent OS
Document Management: Opendocman and LAMP installation on Cent OSDocument Management: Opendocman and LAMP installation on Cent OS
Document Management: Opendocman and LAMP installation on Cent OSSiddharth Ram Dinesh
 
How To Install and Configure SUDO on RHEL 7
How To Install and Configure SUDO on RHEL 7How To Install and Configure SUDO on RHEL 7
How To Install and Configure SUDO on RHEL 7VCP Muthukrishna
 
Vmware management-with-vcli-5.0
Vmware management-with-vcli-5.0Vmware management-with-vcli-5.0
Vmware management-with-vcli-5.0Sathishkumar A
 
How To Install OpenFire in CentOS 7
How To Install OpenFire in CentOS 7How To Install OpenFire in CentOS 7
How To Install OpenFire in CentOS 7VCP Muthukrishna
 
How To Install and Configure Screen on CentOS 7
How To Install and Configure Screen on CentOS 7How To Install and Configure Screen on CentOS 7
How To Install and Configure Screen on CentOS 7VCP Muthukrishna
 
ByPat博客出品Lvs+keepalived
ByPat博客出品Lvs+keepalivedByPat博客出品Lvs+keepalived
ByPat博客出品Lvs+keepalivedredhat9
 
How To Configure Nginx Load Balancer on CentOS 7
How To Configure Nginx Load Balancer on CentOS 7How To Configure Nginx Load Balancer on CentOS 7
How To Configure Nginx Load Balancer on CentOS 7VCP Muthukrishna
 
Install odoo v8 the easiest way on ubuntu debian
Install odoo v8 the easiest way on ubuntu debianInstall odoo v8 the easiest way on ubuntu debian
Install odoo v8 the easiest way on ubuntu debianFrancisco Servera
 
NetApp ontap simulator
NetApp ontap simulatorNetApp ontap simulator
NetApp ontap simulatorAshwin Pawar
 
Nginx 0.9.x 安装手册
Nginx 0.9.x 安装手册Nginx 0.9.x 安装手册
Nginx 0.9.x 安装手册Yiwei Ma
 
Hardening Drupal setup
Hardening Drupal setupHardening Drupal setup
Hardening Drupal setupZeeland Family
 
How to Configure OpenFiler for NFS Share
How to Configure OpenFiler for NFS ShareHow to Configure OpenFiler for NFS Share
How to Configure OpenFiler for NFS ShareVCP Muthukrishna
 
How to add non root user account to netapp for commvault
How to add non root user account to netapp for commvaultHow to add non root user account to netapp for commvault
How to add non root user account to netapp for commvaultAshwin Pawar
 
LSOF Command Usage on RHEL 7
LSOF Command Usage on RHEL 7LSOF Command Usage on RHEL 7
LSOF Command Usage on RHEL 7VCP Muthukrishna
 
Set up Hadoop Cluster on Amazon EC2
Set up Hadoop Cluster on Amazon EC2Set up Hadoop Cluster on Amazon EC2
Set up Hadoop Cluster on Amazon EC2IMC Institute
 
Hyperledger composer
Hyperledger composerHyperledger composer
Hyperledger composerwonyong hwang
 

What's hot (20)

Document Management: Opendocman and LAMP installation on Cent OS
Document Management: Opendocman and LAMP installation on Cent OSDocument Management: Opendocman and LAMP installation on Cent OS
Document Management: Opendocman and LAMP installation on Cent OS
 
How To Install and Configure SUDO on RHEL 7
How To Install and Configure SUDO on RHEL 7How To Install and Configure SUDO on RHEL 7
How To Install and Configure SUDO on RHEL 7
 
DNF Failed To Open Cache
DNF Failed To Open CacheDNF Failed To Open Cache
DNF Failed To Open Cache
 
Vmware management-with-vcli-5.0
Vmware management-with-vcli-5.0Vmware management-with-vcli-5.0
Vmware management-with-vcli-5.0
 
How To Install OpenFire in CentOS 7
How To Install OpenFire in CentOS 7How To Install OpenFire in CentOS 7
How To Install OpenFire in CentOS 7
 
How To Install and Configure Screen on CentOS 7
How To Install and Configure Screen on CentOS 7How To Install and Configure Screen on CentOS 7
How To Install and Configure Screen on CentOS 7
 
ByPat博客出品Lvs+keepalived
ByPat博客出品Lvs+keepalivedByPat博客出品Lvs+keepalived
ByPat博客出品Lvs+keepalived
 
How To Configure Nginx Load Balancer on CentOS 7
How To Configure Nginx Load Balancer on CentOS 7How To Configure Nginx Load Balancer on CentOS 7
How To Configure Nginx Load Balancer on CentOS 7
 
Install odoo v8 the easiest way on ubuntu debian
Install odoo v8 the easiest way on ubuntu debianInstall odoo v8 the easiest way on ubuntu debian
Install odoo v8 the easiest way on ubuntu debian
 
NetApp ontap simulator
NetApp ontap simulatorNetApp ontap simulator
NetApp ontap simulator
 
體驗 Hhvm
體驗 Hhvm體驗 Hhvm
體驗 Hhvm
 
Nginx 0.9.x 安装手册
Nginx 0.9.x 安装手册Nginx 0.9.x 安装手册
Nginx 0.9.x 安装手册
 
Hardening Drupal setup
Hardening Drupal setupHardening Drupal setup
Hardening Drupal setup
 
Apache
ApacheApache
Apache
 
How to Configure OpenFiler for NFS Share
How to Configure OpenFiler for NFS ShareHow to Configure OpenFiler for NFS Share
How to Configure OpenFiler for NFS Share
 
Installing lemp with ssl and varnish on Debian 9
Installing lemp with ssl and varnish on Debian 9Installing lemp with ssl and varnish on Debian 9
Installing lemp with ssl and varnish on Debian 9
 
How to add non root user account to netapp for commvault
How to add non root user account to netapp for commvaultHow to add non root user account to netapp for commvault
How to add non root user account to netapp for commvault
 
LSOF Command Usage on RHEL 7
LSOF Command Usage on RHEL 7LSOF Command Usage on RHEL 7
LSOF Command Usage on RHEL 7
 
Set up Hadoop Cluster on Amazon EC2
Set up Hadoop Cluster on Amazon EC2Set up Hadoop Cluster on Amazon EC2
Set up Hadoop Cluster on Amazon EC2
 
Hyperledger composer
Hyperledger composerHyperledger composer
Hyperledger composer
 

Similar to Webinar Slides: New Tungsten Dashboard - Overview, Installation and Architecture

Aeon mike guide transparent ssl filtering (1)
Aeon mike guide transparent ssl filtering (1)Aeon mike guide transparent ssl filtering (1)
Aeon mike guide transparent ssl filtering (1)Conrad Cruz
 
Aeon mike guide transparent ssl filtering
Aeon mike guide transparent ssl filteringAeon mike guide transparent ssl filtering
Aeon mike guide transparent ssl filteringConrad Cruz
 
Information on Tomcat in cPanel & WHM
Information on Tomcat in cPanel & WHMInformation on Tomcat in cPanel & WHM
Information on Tomcat in cPanel & WHMHTS Hosting
 
Challenges when building high profile editorial sites
Challenges when building high profile editorial sitesChallenges when building high profile editorial sites
Challenges when building high profile editorial sitesYann Malet
 
WSO2 Dep Sync for Artifact Synchronization of Cluster Nodes
WSO2 Dep Sync for Artifact Synchronization of Cluster NodesWSO2 Dep Sync for Artifact Synchronization of Cluster Nodes
WSO2 Dep Sync for Artifact Synchronization of Cluster NodesWSO2
 
[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...
[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...
[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...Kasun Gajasinghe
 
HAProxy scale out using open source
HAProxy scale out using open sourceHAProxy scale out using open source
HAProxy scale out using open sourceIngo Walz
 
Troubleshooting Apache Cloudstack
Troubleshooting Apache CloudstackTroubleshooting Apache Cloudstack
Troubleshooting Apache CloudstackRadhika Puthiyetath
 
Scale Apache with Nginx
Scale Apache with NginxScale Apache with Nginx
Scale Apache with NginxBud Siddhisena
 
Making Spinnaker Go @ Stitch Fix
Making Spinnaker Go @ Stitch FixMaking Spinnaker Go @ Stitch Fix
Making Spinnaker Go @ Stitch FixDiana Tkachenko
 
Drupal Performance - SerBenfiquista.com Case Study
Drupal Performance - SerBenfiquista.com Case StudyDrupal Performance - SerBenfiquista.com Case Study
Drupal Performance - SerBenfiquista.com Case Studyhernanibf
 
Less and faster – Cache tips for WordPress developers
Less and faster – Cache tips for WordPress developersLess and faster – Cache tips for WordPress developers
Less and faster – Cache tips for WordPress developersSeravo
 
01 overview-and-setup
01 overview-and-setup01 overview-and-setup
01 overview-and-setupsnopteck
 
How to secure ubuntu 12.04
How to secure ubuntu 12.04 How to secure ubuntu 12.04
How to secure ubuntu 12.04 John Richard
 
Drupal camp South Florida 2011 - Introduction to the Aegir hosting platform
Drupal camp South Florida 2011 - Introduction to the Aegir hosting platformDrupal camp South Florida 2011 - Introduction to the Aegir hosting platform
Drupal camp South Florida 2011 - Introduction to the Aegir hosting platformHector Iribarne
 
Deploy Rails Application by Capistrano
Deploy Rails Application by CapistranoDeploy Rails Application by Capistrano
Deploy Rails Application by CapistranoTasawr Interactive
 
Apache web server installation/configuration, Virtual Hosting
Apache web server installation/configuration, Virtual HostingApache web server installation/configuration, Virtual Hosting
Apache web server installation/configuration, Virtual Hostingwebhostingguy
 

Similar to Webinar Slides: New Tungsten Dashboard - Overview, Installation and Architecture (20)

Locking Down CF Servers
Locking Down CF ServersLocking Down CF Servers
Locking Down CF Servers
 
Aeon mike guide transparent ssl filtering (1)
Aeon mike guide transparent ssl filtering (1)Aeon mike guide transparent ssl filtering (1)
Aeon mike guide transparent ssl filtering (1)
 
Aeon mike guide transparent ssl filtering
Aeon mike guide transparent ssl filteringAeon mike guide transparent ssl filtering
Aeon mike guide transparent ssl filtering
 
Information on Tomcat in cPanel & WHM
Information on Tomcat in cPanel & WHMInformation on Tomcat in cPanel & WHM
Information on Tomcat in cPanel & WHM
 
Challenges when building high profile editorial sites
Challenges when building high profile editorial sitesChallenges when building high profile editorial sites
Challenges when building high profile editorial sites
 
WSO2 Dep Sync for Artifact Synchronization of Cluster Nodes
WSO2 Dep Sync for Artifact Synchronization of Cluster NodesWSO2 Dep Sync for Artifact Synchronization of Cluster Nodes
WSO2 Dep Sync for Artifact Synchronization of Cluster Nodes
 
[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...
[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...
[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...
 
HAProxy scale out using open source
HAProxy scale out using open sourceHAProxy scale out using open source
HAProxy scale out using open source
 
Team lab install_en
Team lab install_enTeam lab install_en
Team lab install_en
 
Troubleshooting Apache Cloudstack
Troubleshooting Apache CloudstackTroubleshooting Apache Cloudstack
Troubleshooting Apache Cloudstack
 
Scale Apache with Nginx
Scale Apache with NginxScale Apache with Nginx
Scale Apache with Nginx
 
Making Spinnaker Go @ Stitch Fix
Making Spinnaker Go @ Stitch FixMaking Spinnaker Go @ Stitch Fix
Making Spinnaker Go @ Stitch Fix
 
Drupal Performance - SerBenfiquista.com Case Study
Drupal Performance - SerBenfiquista.com Case StudyDrupal Performance - SerBenfiquista.com Case Study
Drupal Performance - SerBenfiquista.com Case Study
 
Less and faster – Cache tips for WordPress developers
Less and faster – Cache tips for WordPress developersLess and faster – Cache tips for WordPress developers
Less and faster – Cache tips for WordPress developers
 
One-Man Ops
One-Man OpsOne-Man Ops
One-Man Ops
 
01 overview-and-setup
01 overview-and-setup01 overview-and-setup
01 overview-and-setup
 
How to secure ubuntu 12.04
How to secure ubuntu 12.04 How to secure ubuntu 12.04
How to secure ubuntu 12.04
 
Drupal camp South Florida 2011 - Introduction to the Aegir hosting platform
Drupal camp South Florida 2011 - Introduction to the Aegir hosting platformDrupal camp South Florida 2011 - Introduction to the Aegir hosting platform
Drupal camp South Florida 2011 - Introduction to the Aegir hosting platform
 
Deploy Rails Application by Capistrano
Deploy Rails Application by CapistranoDeploy Rails Application by Capistrano
Deploy Rails Application by Capistrano
 
Apache web server installation/configuration, Virtual Hosting
Apache web server installation/configuration, Virtual HostingApache web server installation/configuration, Virtual Hosting
Apache web server installation/configuration, Virtual Hosting
 

More from Continuent

Tungsten Webinar: v6 & v7 Release Recap, and Beyond
Tungsten Webinar: v6 & v7 Release Recap, and BeyondTungsten Webinar: v6 & v7 Release Recap, and Beyond
Tungsten Webinar: v6 & v7 Release Recap, and BeyondContinuent
 
Continuent Tungsten Value Proposition Webinar
Continuent Tungsten Value Proposition WebinarContinuent Tungsten Value Proposition Webinar
Continuent Tungsten Value Proposition WebinarContinuent
 
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #7: ClusterControl
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #7: ClusterControlWebinar Slides: MySQL HA/DR/Geo-Scale - High Noon #7: ClusterControl
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #7: ClusterControlContinuent
 
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB Cluster
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB ClusterWebinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB Cluster
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB ClusterContinuent
 
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #4: MS Azure Database MySQL
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #4: MS Azure Database MySQLWebinar Slides: MySQL HA/DR/Geo-Scale - High Noon #4: MS Azure Database MySQL
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #4: MS Azure Database MySQLContinuent
 
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #2: Galera Cluster
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #2: Galera ClusterWebinar Slides: MySQL HA/DR/Geo-Scale - High Noon #2: Galera Cluster
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #2: Galera ClusterContinuent
 
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #1: AWS Aurora
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #1: AWS AuroraWebinar Slides: MySQL HA/DR/Geo-Scale - High Noon #1: AWS Aurora
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #1: AWS AuroraContinuent
 
Webinar Slides: AWS Aurora MySQL Replacement: Break Away From Geo-Limitations...
Webinar Slides: AWS Aurora MySQL Replacement: Break Away From Geo-Limitations...Webinar Slides: AWS Aurora MySQL Replacement: Break Away From Geo-Limitations...
Webinar Slides: AWS Aurora MySQL Replacement: Break Away From Geo-Limitations...Continuent
 
Webinar Slides: No Data Loss MySQL: Guaranteed Credit Card Transaction Availa...
Webinar Slides: No Data Loss MySQL: Guaranteed Credit Card Transaction Availa...Webinar Slides: No Data Loss MySQL: Guaranteed Credit Card Transaction Availa...
Webinar Slides: No Data Loss MySQL: Guaranteed Credit Card Transaction Availa...Continuent
 
Webinar Slides: Intelligent Database Proxies: Routing & Transparent Failover
Webinar Slides: Intelligent Database Proxies: Routing & Transparent FailoverWebinar Slides: Intelligent Database Proxies: Routing & Transparent Failover
Webinar Slides: Intelligent Database Proxies: Routing & Transparent FailoverContinuent
 
Webinar Slides: High Volume MySQL HA: SaaS Continuous Operations with Terabyt...
Webinar Slides: High Volume MySQL HA: SaaS Continuous Operations with Terabyt...Webinar Slides: High Volume MySQL HA: SaaS Continuous Operations with Terabyt...
Webinar Slides: High Volume MySQL HA: SaaS Continuous Operations with Terabyt...Continuent
 
Training Slides: 205 - Installing and Configuring Tungsten Dashboard
Training Slides: 205 - Installing and Configuring Tungsten DashboardTraining Slides: 205 - Installing and Configuring Tungsten Dashboard
Training Slides: 205 - Installing and Configuring Tungsten DashboardContinuent
 
Training Slides: 352 - Tungsten Replicator for MongoDB & Kafka
Training Slides: 352 - Tungsten Replicator for MongoDB & KafkaTraining Slides: 352 - Tungsten Replicator for MongoDB & Kafka
Training Slides: 352 - Tungsten Replicator for MongoDB & KafkaContinuent
 
Training Slides: 351 - Tungsten Replicator for Data Warehouses
Training Slides: 351 - Tungsten Replicator for Data WarehousesTraining Slides: 351 - Tungsten Replicator for Data Warehouses
Training Slides: 351 - Tungsten Replicator for Data WarehousesContinuent
 
Training Slides: 303 - Replicating out of a Cluster
Training Slides: 303 - Replicating out of a ClusterTraining Slides: 303 - Replicating out of a Cluster
Training Slides: 303 - Replicating out of a ClusterContinuent
 
Training Slides: 206 - Using the Tungsten Cluster AMI
Training Slides: 206 - Using the Tungsten Cluster AMITraining Slides: 206 - Using the Tungsten Cluster AMI
Training Slides: 206 - Using the Tungsten Cluster AMIContinuent
 
Training Slides: 254 - Using the Tungsten Replicator AMI
Training Slides: 254 - Using the Tungsten Replicator AMITraining Slides: 254 - Using the Tungsten Replicator AMI
Training Slides: 254 - Using the Tungsten Replicator AMIContinuent
 
Training Slides: 253 - Filter like a Pro
Training Slides: 253 - Filter like a ProTraining Slides: 253 - Filter like a Pro
Training Slides: 253 - Filter like a ProContinuent
 
Training Slides: 252 - Monitoring & Troubleshooting
Training Slides: 252 - Monitoring & TroubleshootingTraining Slides: 252 - Monitoring & Troubleshooting
Training Slides: 252 - Monitoring & TroubleshootingContinuent
 
Training Slides: 302 - Securing Your Cluster With SSL
Training Slides: 302 - Securing Your Cluster With SSLTraining Slides: 302 - Securing Your Cluster With SSL
Training Slides: 302 - Securing Your Cluster With SSLContinuent
 

More from Continuent (20)

Tungsten Webinar: v6 & v7 Release Recap, and Beyond
Tungsten Webinar: v6 & v7 Release Recap, and BeyondTungsten Webinar: v6 & v7 Release Recap, and Beyond
Tungsten Webinar: v6 & v7 Release Recap, and Beyond
 
Continuent Tungsten Value Proposition Webinar
Continuent Tungsten Value Proposition WebinarContinuent Tungsten Value Proposition Webinar
Continuent Tungsten Value Proposition Webinar
 
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #7: ClusterControl
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #7: ClusterControlWebinar Slides: MySQL HA/DR/Geo-Scale - High Noon #7: ClusterControl
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #7: ClusterControl
 
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB Cluster
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB ClusterWebinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB Cluster
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB Cluster
 
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #4: MS Azure Database MySQL
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #4: MS Azure Database MySQLWebinar Slides: MySQL HA/DR/Geo-Scale - High Noon #4: MS Azure Database MySQL
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #4: MS Azure Database MySQL
 
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #2: Galera Cluster
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #2: Galera ClusterWebinar Slides: MySQL HA/DR/Geo-Scale - High Noon #2: Galera Cluster
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #2: Galera Cluster
 
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #1: AWS Aurora
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #1: AWS AuroraWebinar Slides: MySQL HA/DR/Geo-Scale - High Noon #1: AWS Aurora
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #1: AWS Aurora
 
Webinar Slides: AWS Aurora MySQL Replacement: Break Away From Geo-Limitations...
Webinar Slides: AWS Aurora MySQL Replacement: Break Away From Geo-Limitations...Webinar Slides: AWS Aurora MySQL Replacement: Break Away From Geo-Limitations...
Webinar Slides: AWS Aurora MySQL Replacement: Break Away From Geo-Limitations...
 
Webinar Slides: No Data Loss MySQL: Guaranteed Credit Card Transaction Availa...
Webinar Slides: No Data Loss MySQL: Guaranteed Credit Card Transaction Availa...Webinar Slides: No Data Loss MySQL: Guaranteed Credit Card Transaction Availa...
Webinar Slides: No Data Loss MySQL: Guaranteed Credit Card Transaction Availa...
 
Webinar Slides: Intelligent Database Proxies: Routing & Transparent Failover
Webinar Slides: Intelligent Database Proxies: Routing & Transparent FailoverWebinar Slides: Intelligent Database Proxies: Routing & Transparent Failover
Webinar Slides: Intelligent Database Proxies: Routing & Transparent Failover
 
Webinar Slides: High Volume MySQL HA: SaaS Continuous Operations with Terabyt...
Webinar Slides: High Volume MySQL HA: SaaS Continuous Operations with Terabyt...Webinar Slides: High Volume MySQL HA: SaaS Continuous Operations with Terabyt...
Webinar Slides: High Volume MySQL HA: SaaS Continuous Operations with Terabyt...
 
Training Slides: 205 - Installing and Configuring Tungsten Dashboard
Training Slides: 205 - Installing and Configuring Tungsten DashboardTraining Slides: 205 - Installing and Configuring Tungsten Dashboard
Training Slides: 205 - Installing and Configuring Tungsten Dashboard
 
Training Slides: 352 - Tungsten Replicator for MongoDB & Kafka
Training Slides: 352 - Tungsten Replicator for MongoDB & KafkaTraining Slides: 352 - Tungsten Replicator for MongoDB & Kafka
Training Slides: 352 - Tungsten Replicator for MongoDB & Kafka
 
Training Slides: 351 - Tungsten Replicator for Data Warehouses
Training Slides: 351 - Tungsten Replicator for Data WarehousesTraining Slides: 351 - Tungsten Replicator for Data Warehouses
Training Slides: 351 - Tungsten Replicator for Data Warehouses
 
Training Slides: 303 - Replicating out of a Cluster
Training Slides: 303 - Replicating out of a ClusterTraining Slides: 303 - Replicating out of a Cluster
Training Slides: 303 - Replicating out of a Cluster
 
Training Slides: 206 - Using the Tungsten Cluster AMI
Training Slides: 206 - Using the Tungsten Cluster AMITraining Slides: 206 - Using the Tungsten Cluster AMI
Training Slides: 206 - Using the Tungsten Cluster AMI
 
Training Slides: 254 - Using the Tungsten Replicator AMI
Training Slides: 254 - Using the Tungsten Replicator AMITraining Slides: 254 - Using the Tungsten Replicator AMI
Training Slides: 254 - Using the Tungsten Replicator AMI
 
Training Slides: 253 - Filter like a Pro
Training Slides: 253 - Filter like a ProTraining Slides: 253 - Filter like a Pro
Training Slides: 253 - Filter like a Pro
 
Training Slides: 252 - Monitoring & Troubleshooting
Training Slides: 252 - Monitoring & TroubleshootingTraining Slides: 252 - Monitoring & Troubleshooting
Training Slides: 252 - Monitoring & Troubleshooting
 
Training Slides: 302 - Securing Your Cluster With SSL
Training Slides: 302 - Securing Your Cluster With SSLTraining Slides: 302 - Securing Your Cluster With SSL
Training Slides: 302 - Securing Your Cluster With SSL
 

Recently uploaded

Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Standkumarajju5765
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024APNIC
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...SofiyaSharma5
 
AlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsAlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsThierry TROUIN ☁
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebJames Anderson
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Roomdivyansh0kumar0
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girlsstephieert
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024APNIC
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Sheetaleventcompany
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girladitipandeya
 
Radiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsRadiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsstephieert
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts servicevipmodelshub1
 
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...APNIC
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts servicesonalikaur4
 

Recently uploaded (20)

Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
 
Call Girls In South Ex 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In South Ex 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICECall Girls In South Ex 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In South Ex 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
 
AlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsAlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with Flows
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
 
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girls
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
 
Radiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsRadiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girls
 
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
 
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
 

Webinar Slides: New Tungsten Dashboard - Overview, Installation and Architecture

  • 1. Tungsten Dashboard for Clustering Eric M. Stone, COO
  • 2. 2 1.  Tungsten Dashboard Welcome 2.  Tungsten Dashboard Overview 3.  Tungsten Dashboard Prerequisites 4.  Tungsten Dashboard Security Limitations 5.  Configure the Tungsten Cluster Manager API 6.  Test Connectivity to the Tungsten Manager API Directly 7.  Install the Tungsten Dashboard 8.  Install and Configure the Apache 2.4 Web Server 9.  Configure the Tungsten Dashboard 10.  Install and Configure HAProxy 11.  Test Connectivity to the Tungsten Manager API via HAProxy 12.  Access the Tungsten Dashboard GUI via a Browser In this training session…
  • 3. Tungsten Dashboard Welcome •  This training session uses an example 6-node Composite cluster named global_composite, with two member clusters, named east_member and west_member. •  The demo uses the standard Amazon Linux AMI 2018.03.0 (HVM), SSD; in us-east use ami-467ca739 •  The commands and examples in this training session are the same as those in our online documentation at http://docs.continuent.com/tungsten-dashboard-1.0/ •  These examples use example directories and deployment practices – your environment may vary considerably. •  There is a downloadable copy of the commands that work well for copy-and-paste in your own environments available at http://continuent-videos.s3.amazonaws.com/Continuent- Training-Basic-Tungsten_Dashboard_Install-20180508.txt
  • 4. Tungsten Dashboard Overview •  A simple GUI management tool for Continuent Tungsten Clustering •  The Dashboard is usually installed on a standalone web server with HAProxy installed •  HAProxy routes API requests to the various database nodes running the manager API listener on port 8090. •  There is one frontend per cluster. •  Each backend contains all database/witness nodes for that cluster.
  • 5. 5 The dashboard web application sends requests to the locally-installed HA Proxy which in turn forwards the requests in a round-robin fashion to the Manager API listening on port 8090 on each database node. Tungsten Dashboard Overview
  • 6. Tungsten Dashboard Pre-Requisites Continuent Tungsten Dashboard needs the following prerequisites to function: •  Continuent Tungsten Clustering v5.3.0 or v5.3.1 only as of May 8, 2018. •  Web server with PHP support – we use Apache 2.4 for this demo •  HAProxy - http://www.haproxy.org •  Make sure to open ALL of the appropriate firewall ports listed in the steps below to ensure access; at minimum, port 8090 on all manager nodes must be reachable from the web/haproxy server for API calls to succeed.
  • 7. 7 Warning Locking only works on a single web server host, so if you have installed the Tungsten Dashboard on more than one host, the lock is not shared and is therefore ineffective. Warning Please use Apache Basic Auth to lock down access to the Tungsten Dashboard GUI. Warning SSL (https) configuration for the Tungsten Dashboard is possible, but is beyond the scope of this document. Warning SSL (https) is not yet supported on the Manager API endpoints. Tungsten Dashboard Security Limitations Continuent Tungsten Dashboard has the following security limitations: Warning THERE IS NO API SECURITY YET - If you enable the API on the Manager, anyone may connect to it. Use your firewall to block port 8090 from non-essential hosts.
  • 8. 8 Configure the Tungsten Cluster Manager API Add the following to /etc/tungsten/tungsten.ini under the [defaults] section: Inform the running manager of the changed configuration, restarting if needed: Verify that the port is listening: shell> sudo netstat -pan | grep 8090 shell> tpm update shell> manager restart mgr-api-port=8090 mgr-api=true mgr-api-address=0.0.0.0 mgr-api-full-access=true
  • 9. 9 Test Connectivity to the Tungsten Manager API Directly shell> sudo yum –y install jq shell> curl -s http://db1:8090/manager/status/east/ | jq . | less shell> curl -s http://db4:8090/manager/status/west/ | jq . | less shell> curl -s -X POST http://db4:8090/manager/control/west/heartbeat | jq . | less Test connectivity to the Tungsten Manager API directly using curl and jq for formatting the json response:
  • 10. 10 Install the Tungsten Dashboard For example, create a new user called tungsten, group tungsten, homedir /home/tungsten: shell> sudo useradd -m -d /home/tungsten -s /bin/bash -c "Tungsten Dashboard" -U tungsten. Now create the Tungsten Dashboard web root directory and all needed subdirectories: shell> sudo mkdir /volumes/data/www/tungsten shell> sudo chown -R tungsten: /volumes/data/www/tungsten shell> sudo su - tungsten shell> mkdir /volumes/data/www/tungsten/etc/ /volumes/data/www/tungsten/logs/ shell> chmod 2770 /volumes/data/www/tungsten/logs/ shell> chmod 2750 /volumes/data/www/tungsten/etc/
  • 11. 11 Install the Tungsten Dashboard - continued Still as user tungsten, get the software and copy to the web root directory for use in the next step: shell> cd shell> wget -O tungsten-dashboard-1.0.0-27.tar.gz 'TEMP_URL_PROVIDED_BY_CONTINUENT' shell> tar xvzf tungsten-dashboard-1.0.0-27.tar.gz shell> cd tungsten-dashboard-1.0.0-27 shell> rsync -a tungsten-dashboard-1.0.0-27/html/ /volumes/data/www/tungsten/html/ shell> chmod 2775 /volumes/data/www/tungsten/html shell> mkdir /volumes/data/www/tungsten/html/locks shell> chmod 2775 /volumes/data/www/tungsten/html/locks shell> htpasswd -c /volumes/data/www/tungsten/etc/.htpasswd erics Password: demo shell> exit
  • 12. 12 Install and Configure the Apache 2.4 Web Server As the root user, install the Apache 2.4 web server and add the apache user to the tungsten group: shell> sudo vim /etc/httpd/conf.d/z01-tungsten-dashboard.conf shell> sudo apachectl configtest shell> sudo apachectl restart <VirtualHost *:80> ServerName dashboard.yourdomain.com DocumentRoot /volumes/data/www/tungsten/html DirectoryIndex index.html index.php ServerAdmin dashboard.apache.admin@yourdomain.com ErrorLog "| /usr/sbin/rotatelogs /volumes/data/www/tungsten/logs/errors.log 86400" CustomLog "| /usr/sbin/rotatelogs /volumes/data/www/tungsten/logs/access.log 86400" combined <Directory "/volumes/data/www/tungsten/html"> AllowOverride All Options +FollowSymLinks +ExecCGI -Indexes Order allow,deny Allow from all #Require all granted <RequireAll> AuthType Basic AuthName "Tungsten Dashboard - RESTRICTED" AuthUserFile /volumes/data/www/tungsten/etc/.htpasswd Require valid-user </RequireAll> </Directory> </VirtualHost> shell> sudo yum -y install httpd24-devel php56-devel shell> sudo chkconfig httpd on shell> sudo usermod -a -G tungsten apache shell> sudo service httpd start Create the apache configuration file for the Tungsten Dashboard web service, test it and then restart the web server:
  • 13. 13 Configure the Tungsten Dashboard Replace the service names and ports in $jsonConfig to match your HA Proxy setup: shell> sudo su - tungsten shell> cd /volumes/data/www/tungsten/html/ shell> mv config.php.sample config.php shell> vim config.php •  Host and port are required for all clusters. •  There is a one-to-one relationship between Tungsten services and HAProxy ports •  A cluster is marked as a composite parent if it has the "children" array, even if the array is empty. •  A cluster is marked as a composite child if it has the "memberOf" key defined. •  All Composite member (child) clusters require their own definitions so we know about the host and port for each. •  Please note that the `host: localhost` should remain localhost because this tells the app to call the HAProxy server on the GUI server node, which will then handle routing to the appropriate manager/database node. •  You may add your own custom menu options to the tools menu by editing the menus->tools section in the json configuration.
  • 14. 14 Configure the Tungsten Dashboard - continued •  By default, the list of Auto-Refresh time intervals is defined as 5, 10, 30, 60, 120 or 300 seconds. You may change that by using the autoRefreshList setting, i.e.: "autoRefreshList": [3,5,10,30,60,120,300,600] Important PLEASE NOTE: autoRefreshList values less than 3 seconds are strongly discouraged! •  By default the Auto-refresh feature is disabled (i.e. set to zero). You may enable autoRefreshDelay by setting it it to one of the Auto-Refresh time interval values. •  By default the nodes will display for each cluster. You may set startExpanded to 0 to have the display start in collapsed view
  • 15. 15 Configure the Tungsten Dashboard- continued •  Use lockBaseDir to change the location of the temporary lock files. •  The default is {WEBROOT}/locks/, (i.e. a lockBaseDir of /tmp will yield a lock directory of /tmp/locks). "lockBaseDir":"/tmp" •  The default Tab Badge update rate is 30 seconds. You may disable it by setting tabUpdateRate to zero (0). You may change the refresh rate in seconds by specifying a non-zero value. "tabUpdateRate":60 •  You may set dashboardMaintenanceScreen to 1 to display a Maintenance-In-Progress message.
  • 16. 16 $jsonConfig = <<<EOJ { "clusters": { "north": { "host":"localhost", "port":"8093" } }, "menus": { "tools": { "Add your links here":"http://docs.continuent.com/tungsten-dashboard-1.0/tungsten-dashboard-configure-dashboard.html", "Archive Mode Docs":"http://docs.continuent.com/tungsten-clustering-5.2/operations-status-changingstates.html#operations-status-changingstates-archive", "Cluster Heartbeat Docs":"http://docs.continuent.com/tungsten-clustering-5.2/cmdline-tools-cctrl-commands.html#cmdline-tools-cctrl-commands-cluster-heartbeat" } }, "settings": { "dashboardMaintenanceScreen":0, "autoRefreshList": [5,10,30,60,120,300], "autoRefreshDelay":0, "startExpanded":1, "jumpToTopOnMsg":1 } } EOJ; This is a sample standalone cluster configuration from config.php:
  • 17. 17 $jsonConfig = <<<EOJ { "clusters": { "global": { "host":"localhost", "port":8091, "children": [ "west","east" ] }, "east": { "host":"localhost", "port":"8092", "memberOf":"global" }, "west": { "host":"localhost", "port":"8093", "memberOf":"global" } }, "menus": { "tools": { "Add your links here":"http://docs.continuent.com/tungsten-dashboard-1.0/tungsten-dashboard-configure-dashboard.html", "Archive Mode Docs":"http://docs.continuent.com/tungsten-clustering-5.2/operations-status-changingstates.html#operations-status-changingstates-archive", "Cluster Heartbeat Docs":"http://docs.continuent.com/tungsten-clustering-5.2/cmdline-tools-cctrl-commands.html#cmdline-tools-cctrl-commands-cluster-heartbeat" } }, "settings": { "dashboardMaintenanceScreen":0, "autoRefreshList": [5,10,30,60,120,300], "autoRefreshDelay":0, "startExpanded":1, "jumpToTopOnMsg":1 } } EOJ This is a sample composite cluster configuration from config.php:
  • 18. 18 Install and Configure HAProxy •  The Tungsten Cluster Manager listens on port 8090 for API calls, so we configure the HAProxy listener ports to not conflict with that. •  There must be one frontend per cluster, so the first one starts with port 8091. •  In the example below, we assign frontend port 8091 to the composite global, frontend port 8092 to the cluster east and frontend port 8093 to the cluster west. •  It is imperative that there be one backend per cluster containing all nodes in that cluster. In the case of a composite, the backend should contain all nodes from all member clusters. •  In the below example, backend east contains member nodes db1-3, backend west contains nodes db4-6 and backend global contains nodes db1-6. •  NOTE: See haproxy.cfg in the examples directory for a more complete sample config to be used locally on a web server or jump host
  • 19. 19 Install and Configure HAProxy- continued Install and prepare the HAProxy install: shell> sudo -i shell> yum install haproxy shell> cd /etc/haproxy/ shell> cp haproxy.cfg haproxy.cfg.orig Edit /etc/haproxy/haproxy.cfg and append the new clustering config to the bottom of the existing config: shell> vim /etc/haproxy/haproxy.cfg frontend global bind *:8091 default_backend global frontend east bind *:8092 default_backend east frontend west bind *:8093 default_backend west backend global balance roundrobin server db1 db1.yourdomain.com:8090 check server db2 db2.yourdomain.com:8090 check server db3 db3.yourdomain.com:8090 check server db4 db4.yourdomain.com:8090 check server db5 db5.yourdomain.com:8090 check server db6 db6.yourdomain.com:8090 check backend east balance roundrobin server db1 db1.yourdomain.com:8090 check server db2 db2.yourdomain.com:8090 check server db3 db3.yourdomain.com:8090 check backend west balance roundrobin server db4 db4.yourdomain.com:8090 check server db5 db5.yourdomain.com:8090 check server db6 db6.yourdomain.com:8090 check shell> chkconfig haproxy on shell> service haproxy restart Configure HA Proxy to start at boot time, then restart the service:
  • 20. 20 Test Connectivity to the Tungsten Manager API via HA Proxy shell> curl -s http://localhost:8091/manager/status/global/ | jq . | less shell> curl -s http://localhost:8092/manager/status/east/ | jq . | less shell> curl -s http://localhost:8093/manager/status/west/ | jq . | less shell> curl -s -X POST http://localhost:8093/manager/control/west/heartbeat | jq . | less On the web server, validate that HA Proxy is working properly
  • 21. 21 Access the Tungsten Dashboard GUI via a Browser Open your browser and access the Tungsten Dashboard GUI via an IP address or hostname: Browser URL: http://{dashboard_ip}/
  • 22. 22 1.  Tungsten Dashboard Welcome 2.  Tungsten Dashboard Overview 3.  Tungsten Dashboard Prerequisites 4.  Tungsten Dashboard Security Limitations 5.  Configuring the Tungsten Cluster Manager API 6.  Testing Connectivity to the Tungsten Manager API Directly 7.  Installing the Tungsten Dashboard 8.  Installing and Configuring the Apache 2.4 Web Server 9.  Configuring the Tungsten Dashboard 10.  Installing and Configuring HAProxy 11.  Testing Connectivity to the Tungsten Manager API via HAProxy 12.  Accessing the Tungsten Dashboard GUI via a Browser In this training session we covered…
  • 23. 23 Next Steps •  Sign up for a private demo for your team, setup a POC, email us at sales@continuent.com •  Learn more at your own pace –  Whitepapers at www.continuent.com/white-papers/ –  Read the documentation at http://docs.continuent.com/ –  Training and webinar library at www.continuent.com/videos/ –  Subscribe to our YouTube channel at http://tinyurl.com/TungstenUni •  Follow us on Twitter @Continuent and facebook.com/Continuent
  • 24. For more information, contact us: Petri Virsunen VP Marketing petri.virsunen@continuent.com +1 (408) 806-9860 Chris Parker Director, Professional Services EMEA & APAC chris.parker@continuent.com Matthew Lang Director, Professional Services Americas matthew.lang@continuent.com Eero Teerikorpi Founder, CEO eero.teerikorpi@continuent.com +1 (408) 431-3305 Eric Stone COO eric.stone@continuent.com MC Brown VP Products mc.brown@continuent.com