Rails Application Deployment. July Philly on Rails
|
|
|
- Elinor Stafford
- 10 years ago
- Views:
Transcription
1 Rails Application Deployment July Philly on Rails
2 What Shall We Deploy Tonight? Blogging/publishing system Standard Rails application Ships with gems in vendor directory Easy rake task for database setup
3 Installing and Configuring Mephisto > gem install rails > mysql # create mephisto database/user > tar xzf mephisto tar.gz > cd mephisto > vi config/database.yml # configure db > rake db:bootstrap RAILS_ENV=production
4 Basic, Single-Server Deployment
5 <1> WEBrick Standalone WEBrick:80 Database
6 <1> WEBrick Standalone > cd mephisto > script/server -e production -p 80 # Browse to
7 <1> WEBrick Standalone Default, built-in HTTP server Runs fine in development Fine for demos Not suitable for production Very easy to replace with mongrel
8 <2> Mongrel Standalone Mongrel:80 Database
9 <2> Mongrel Standalone > gem install mongrel > script/server -e production -p 80 # Browse to > Ctrl-C > mongrel_rails start -d -e production \ -p 80 > mongrel_rails stop
10 <2> Mongrel Standalone Very easy to install and run Standalone is fine for demos But Mongrel isn't good at all things handling lots of simultaneous connections serving static files monitoring/manageability Put something in front of it to do those
11 <3> Mongrel Behind Apache Apache:80 mod_proxy Mongrel:3000 Database
12 <3> Mongrel Behind Apache # Editing /etc/sysconfig/apache2 on SuSE... APACHE_MODULES="actions alias auth_basic authn_file authz_host authz_groupfile authz_default authz_user authn_dbm autoindex cgi dir env expires include log_config mime negotiation setenvif ssl suexec userdir php5 proxy proxy_http"...
13 <3> Mongrel Behind Apache # New conf file in conf.d/ or vhosts.d/ <VirtualHost *:80> ServerName whatever.com ProxyPass / ProxyPassReverse / ProxyPreserveHost on ErrorLog /tmp/mephisto_proxy_errors_log CustomLog /tmp/mephisto_proxy_access_log </VirtualHost>
14 <3> Mongrel Behind Apache > mongrel_rails start -d -e production \ -p 3000 > rcapache2 start # Browse to
15 <3> Mongrel Behind Apache Great first step Works fine for small sites Upgrades/crashes => downtime You'll want more mongrel instances for redundancy and performance
16 <4> Many Mongrels Behind Apache Apache:80 mod_proxy mod_proxy_balancer Mongrel:3000 Mongrel:3001 Mongrel:3002 Database
17 <4> Many Mongrels Behind Apache # Editing /etc/sysconfig/apache2 on SuSE... APACHE_MODULES="actions alias auth_basic authn_file authz_host authz_groupfile authz_default authz_user authn_dbm autoindex cgi dir env expires include log_config mime negotiation setenvif ssl suexec userdir php5 proxy proxy_http proxy_balancer"...
18 <4> Many Mongrels Behind Apache # Editing my file in conf.d/ or vhosts.d/ <Proxy balancer://mephistos/> BalancerMember BalancerMember BalancerMember </Proxy>... # continued on next slide
19 <4> Many Mongrels Behind Apache # continued from previous slide... <VirtualHost *:80> ServerName whatever.com ProxyPass / balancer://mephistos/ ProxyPassReverse / balancer://mephistos/ ErrorLog /tmp/mephisto_proxy_errors_log CustomLog /tmp/mephisto_proxy_access_log </VirtualHost>
20 <4> Many Mongrels Behind Apache > mongrel_rails start -d -e production \ -p pid log/mephisto0.pid > mongrel_rails start -d -e production \ -p pid log/mephisto1.pid > mongrel_rails start -d -e production \ -p pid log/mephisto2.pid > rcapache2 start # Browse to
21 <4> Many Mongrels Behind Apache Works great, but: That's a lot of typing to start up the mongrels What if one goes down? How do I upgrade my app?
22 Simplifying Server Management
23 <5> Mongrel_Cluster + Apache Apache:80 mod_proxy mongrel_cluster mod_proxy_balancer Mongrel:3000 Mongrel:3001 Mongrel:3002 Database
24 <5> Mongrel_Cluster + Apache > gem install mongrel_cluster # This writes out config file to config/ > sudo mongrel_rails cluster::configure \ -e production -p N 3 \ -c /home/mephisto a \ --user mongrel --group mongrel # This writes out pids to files in log/ > sudo mongrel_rails cluster::start > sudo mongrel_rails cluster::stop
25 <5> Mongrel_Cluster + Apache > cat config/mongrel_cluster.yml --- user: mongrel cwd: /home/mephisto port: "3000" environment: production group: mongrel address: pid_file: log/mongrel.pid servers: 3
26 <5> Mongrel_Cluster + Apache Simplified management of a cluster of Mongrel instances Still under active development Latest pre-release versions give you more fine-grained control and work better with monit
27 <6> Mongrels + Apache + Capistrano Capistrano mongrel_cluster Apache:80 mod_proxy mod_proxy_balancer Mongrel:3000 Mongrel:3001 Mongrel:3002 Database
28 <6> Mongrels + Apache + Capistrano > gem install -s \ capistrano # After checking mephisto into local svn > svn co file:///svn/mephisto > cd mephisto > capify > vi config/deploy.rb > svn commit > cap deploy:cold > cap deploy:stop
29 <6> Mongrels + Apache + Capistrano require 'mongrel_cluster/recipes' set :application, 'mephisto' set :repository, 'file:///files/svn/mephisto' set :deploy_to, "/tmp/deploy/#{application}" set :domain, 'localhost' set :mongrel_conf, "/home/mephisto-0.7.3/config/mongrel_cluster.yml" set :mongrel_clean, true role :app, domain role :web, domain role :db, domain, :primary => true...
30 namespace :deploy do <6> Mongrels + Apache + Capistrano task :cold do update migrate setup_mongrel_cluster start end # until mongrel_cluster updates to cap2... task :start, :roles => :app do start_mongrel_cluster end task :stop, :roles => :app do stop_mongrel_cluster end task :restart, :roles => :app do restart_mongrel_cluster end task :setup_mongrel_cluster do sudo "cp #{release_path}/config/mongrel_cluster.yml #{mongrel_conf}" sudo "chown meara:users #{mongrel_conf}" sudo "chmod g+w #{mongrel_conf}" end end
31 <6> Mongrels + Apache + Capistrano Capistrano is great Too much to cover in this talk Let's schedule another!
32 <7> Mongrels + Apache + Cap + Monit Capistrano mongrel_cluster Apache:80 mod_proxy mod_proxy_balancer monit Mongrel:3000 Mongrel:3001 Mongrel:3002 Database
33 <7> Mongrels + Apache + Cap + Monit # /etc/monitrc set daemon 60 set mailserver localhost set mail-format { from: [email protected] } set alert [email protected] set httpd port 2812 and use address localhost # only accept connection from localhost allow localhost # allow localhost to connect to the server # Continued on next slide...
34 check process %>_3000 <6> Mongrels + Apache + Capistrano with pidfile %>/shared/log/mongrel.3000.pid start program = "/usr/bin/mongrel_rails cluster::start -C /data/<% %>/current/config/mongrel_cluster.yml --clean --only 3000" stop program = "/usr/bin/mongrel_rails cluster::stop -C %>/current/config/mongrel_cluster.yml --clean --only 3000" if totalmem is greater than MB for 4 cycles then restart # eating up memory? if cpu is greater than 50% for 2 cycles then alert # send an to admin if cpu is greater than 80% for 3 cycles then restart # hung process? if loadavg(5min) greater than 10 for 8 cycles then restart # bad, bad, bad if 20 restarts within 20 cycles then timeout # something is wrong, call the sys-admin group mongrel # REPEAT FOR OTHER MONGREL INSTANCES (e.g. 3001, 3002, etc.)
35 <7> Mongrels + Apache + Cap + Monit Sometimes mongrel instances die Monit keeps track and restarts them Can monitor/restart web server and database server too
36 Optimizing the Single- Server Deployment
37 <8> Serve Static Files through Apache monit Capistrano mongrel_cluster Apache:80 mod_proxy mod_proxy_balancer Filesystem Mongrel:3000 Mongrel:3001 Mongrel:3002 Database
38 <8> Serve Static Files through Apache DocumentRoot /tmp/mephisto <Directory "/tmp/mephisto"> Options FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> RewriteEngine On Don't forget to turn on mod_rewrite first, like you did for mod_proxy and mod_ proxy_balancer RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f RewriteRule (.*) $1 [L]
39 <8> Serve Static Files through Apache # Another more specific option, replaces ProxyPass RewriteRule \ "^/(images stylesheets javascripts)/?(.*)" "$0" [L] RewriteRule ^([^.]+)$ $1.html [QSA] RewriteCond %{REQUEST_FILENAME}!-f RewriteRule "^/(.*)" " \ [P,QSA,L]
40 <8> Serve Static Files through Apache # Yet more possibilities ProxyPass /images! ProxyPass /stylesheets! Alias /images /myapp/public/images Alias /stylesheets /myapp/public/stylesheets
41 <8> Serve Static Files through Apache Lots of options here Bottom line: Don't serve static content through Mongrel Use rewrite rules and/or ProxyPass exceptions to set this up Think about security and maintenance too: Set up static maintenance file rule Disallow requests to.svn directories
42 <9> Reduce DB Hits with memcached Capistrano mongrel_cluster monit Apache:80 mod_proxy mod_proxy_balancer Filesystem Mongrel:3000 Mongrel:3001 Mongrel:3002 memcached Database
43 <9> Reduce DB Hits with memcached Database is often the bottleneck Lots of repeated queries Try rails-level caching Eventually, add memcached It's a big hash Use cache_fu to integrate with ActiveRecord Multiple mongrel instances can share one Huge deployments might have many
44 <10> Replace Apache with nginx Capistrano mongrel_cluster monit nginx:80 Filesystem Mongrel:3000 Mongrel:3001 Mongrel:3002 memcached Database
45 <10> Replace Apache with nginx Implementation left as an exercise for the reader
46 Beyond One Server
47 <11> Split Out the Database Web Server Mongrels memcached Database
48 <12> Add More Web Servers Load Balancer Web Server Mongrels memcached F/S Web Server Mongrels memcached F/S Database
49 <13> Split Web and App Servers Load Balancer Web Server 1 F/S Web Server 2 F/S App Server mongrels memcached App Server mongrels memcached App Server mongrels memcached Database
50 <14> Add Read-Only Database Slaves Load Balancer Web Server 1 F/S Web Server 2 F/S App Server 1 App Server 2 App Server 3 Master DB Slave DB Slave DB
51 <14> Add Read-Only Database Slaves Load Balancer Web Server 1 F/S Web Server 2 F/S App Server 1 App Server 2 App Server 3 acts_as_ readonly able Slave DB Master DB Slave DB
52 <15> Database Clustering Advantages Ideal for applications with lots of writes All nodes are synchronized Disadvantages Complex to configure Need very fast network (e.g. gigabit or better) Usually need extra nodes for management services May need expensive SAN
53 <16> Virtualization Each node is a VM, not a physical machine Can be run on same or different hardware Advantages Very easy to scale out on demand Can arrange VMs to maximize utilization Disadvantages Can be difficult to tune performance May not work well for database clusters
54 Hosting Hosts available for most of these scenarios Site5 and others support single-node shared hosting Rails Machine, Engine Yard and others support virtualization Can roll your own hosting with virtual dedicated servers, dedicated servers and/or grids like Amazon's EC2 Need another presentation to cover all this
55 Ideas for Follow-Up Presentations Hosting options Performance Tuning Capistrano Virtualization Extreme Caching MySQL vs. PostgreSQL Hands-on Database Clustering Deployment with Apache 1.x, FastCGI, Lighttpd, etc.
Installing Rails 2.3 Under CentOS/RHEL 5 and Apache 2.2
Installing Rails 2.3 Under CentOS/RHEL 5 and Apache 2.2 Scott Taylor Tailor Made Software July 24, 2011 Version 1.2 1.0 Introduction Ruby On Rails (aka just Rails ) is a modern scripting system that allows
Installing Rails 2.3 Under Windows XP and Apache 2.2
Installing Rails 2.3 Under Windows XP and Apache 2.2 Scott Taylor Tailor Made Software August 9, 2011 Version 1.0 1.0 Introduction Ruby On Rails (aka just Rails ) is a modern scripting system that allows
Deploying and Monitoring Ruby on Rails A practical guide
Deploying and Monitoring Ruby on Rails A practical guide Mathias Meyer and Jonathan Weiss, 02.09.2008 Peritor GmbH Who are we? Jonathan Weiss Consultant for Peritor GmbH in Berlin Specialized in Rails,
Rails 5. web CGI. okkez Ruby. Apache. lighttpd. WEBrick. Mongrel. Thin. Rails. Virtual Host
Rails 5 okkez Ruby 2008 05 17 web Apache lighttpd WEBrick Mongrel Thin CGI Rails Virtual Host ServerName cgi.localhost Options ExecCGI FollowSymLinks ErrorLog /var/log/apache2/qa_cgi-error.log
HOW TO BUILD A VMWARE APPLIANCE: A CASE STUDY
HOW TO BUILD A VMWARE APPLIANCE: A CASE STUDY INTRODUCTION Virtual machines are becoming more prevalent. A virtual machine is just a container that describes various resources such as memory, disk space,
The course will be run on a Linux platform, but it is suitable for all UNIX based deployments.
Linux Apache Web Server Administration Course Description: The Linux Apache Web Server Administration course is aimed at technical staff who will be responsible for installing, configuring and maintaining
Technical specification
Technical specification Load balancing configuration Koaly EXP Page : 1 / 8 Table of contents Introduction... 3 I.Overview... 3 II.The Apache load balancer... 3 III.Limitations... 3 Prerequisites... 4
Installing an SSL certificate on the InfoVaultz Cloud Appliance
Installing an SSL certificate on the InfoVaultz Cloud Appliance This document reviews the prerequisites and installation of an SSL certificate for the InfoVaultz Cloud Appliance. Please note that the installation
Redmine Installation on Debian. v1.1
Redmine Installation on Debian v1.1 Introduction 1. Objectives Have a fully functional Redmine installation on a dedicated server with good performance. The idea of this document came after an easy installation
1. Introduction 2. Getting Started 3. Scenario 1 - Non-Replicated Cluster 4. Scenario 2 - Replicated Cluster 5. Conclusion
1. Introduction... 1 1.1. Non-Replicated Cluster... 1 1.2. Replicated Cluster... 2 1.3. Mixing Both Options... 3 2. Getting Started... 5 3. Scenario 1 - Non-Replicated Cluster... 6 3.1. JOSSO Agent Configuration...
Installing an open source version of MateCat
Installing an open source version of MateCat This guide is meant for users who want to install and administer the open source version on their own machines. Overview 1 Hardware requirements 2 Getting started
OpenMind: Know Your Customer
OpenMind: Know Your Customer Contents About OpenMind... 3 Feedback... 3 A Request... 3 Installation... 3 Install Ruby and Ruby on Rails... 4 Get the Code... 4 Create the Database Schema... 4 Update database.yml...
EQUELLA. Clustering Configuration Guide. Version 6.2
EQUELLA Clustering Configuration Guide Version 6.2 Document History Document No. Reviewed Finalised Published 1 18/03/2014 18/03/2014 18/03/2014 March 2014 edition. Information in this document may change
Apache HTTP Server. Load-Balancing with Apache HTTPD 2.2 and later. Erik Abele www.eatc.de
Apache HTTP Server Load-Balancing with Apache HTTPD 2.2 and later Erik Abele www.eatc.de About Me Working internationally as IT Consultant Areas: Administration & Operations Working on and with Open Source
High Availability Low Dollar Load Balancing
High Availability Low Dollar Load Balancing Simon Karpen System Architect, VoiceThread [email protected] Via Karpen Internet Systems [email protected] These slides are licensed under the
Content. Global Delivery Network: Folders
An alternative to using translated domains, is to host your translations in folders. I.e. www.mycompanysite.com/ language When hosting your translation in a sub-folder, the traffic will need to be split
Installing Dspace 1.8 on Ubuntu 12.04
Installing Dspace 1.8 on Ubuntu 12.04 This is an abridged version of the dspace 1.8 installation guide, specifically targeted at getting a basic server running from scratch using Ubuntu. More information
Mastering Advanced GeoNetwork
Mastering Advanced GeoNetwork Heikki Doeleman & Jose García http://geocat.net Contents Introduction Setup GeoNetwork with Tomcat/Apache Configure Postgres database GeoNetwork advanced configuration Objectives
How To Use Ngnix (Php) With A Php-Fpm (Php-Fmm) On A Web Server (Php5) On Your Web Browser) On An Ubuntu Web Server On A Raspberry Web 2.5 (Net
Powering Magento with Ngnix and PHP-FPM Written by: Yuri Golovko Alexey Samorukov Table of Contents INTRODUCTION WHY YOU SHOULD CONSIDER NGNIX NGNIX AND STATIC CONTENT HOW TO USE NGNIX NGNIX SYSTEM REQUIREMENTS
Spectrum Technology Platform Version 8.0.0. Tutorial: Load Balancing Spectrum Spatial Services. Contents:
Spectrum Technology Platform Version 8.0.0 Tutorial: Load Balancing Spectrum Spatial Services UNITED STATES www.pb.com/software Technical Support: www.pbinsight.com/support CANADA www.pb.com/software Technical
WebBridge LR Integration Guide
Lots of Copies Keep Stuff Safe (LOCKSS) and Innovative Interfaces have made content preserved on LOCKSS Boxes available through OPACs that use the WebBridge LR link resolver. This guide describes the steps
Rails Cookbook. Rob Orsini. O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo
Rails Cookbook Rob Orsini O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo Table of Contents Foreword : ; xi Preface ; ;... xiii 1. Getting Started 1 1.1 Joining the Rails Community
Host your websites. The process to host a single website is different from having multiple sites.
The following guide will help you to setup the hosts, in case you want to run multiple websites on your VPS. This is similar to setting up a shared server that hosts multiple websites, using a single shared
OPENPROJECT INSTALL ON CENTOS 7 RUNNING IN VMWARE PLAYER
OPENPROJECT INSTALL ON CENTOS 7 RUNNING IN VMWARE PLAYER 2014 Aug Abstract An and to end step by step installation instruction set for OpenProject running on Centos 7 under VMWare player Brendan Dunn Installing
Implementing HTTPS in CONTENTdm 6 September 5, 2012
Implementing HTTPS in CONTENTdm 6 This is an overview for CONTENTdm server administrators who want to configure their CONTENTdm Server and Website to make use of HTTPS. While the CONTENTdm Server has supported
Release Notes Date: September 2013
Release Notes Date: September 2013 All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, or stored in any retrieval system of any nature without the
Scalability of web applications. CSCI 470: Web Science Keith Vertanen
Scalability of web applications CSCI 470: Web Science Keith Vertanen Scalability questions Overview What's important in order to build scalable web sites? High availability vs. load balancing Approaches
Apache Performance Tuning
Apache Performance Tuning Part 2: Scaling Out Sander Temme Agenda Introduction Redundancy in Hardware Building Out: Separate Tiers Building Out: Load Balancing Caching Content Conclusion
White Paper DEPLOYING WDK APPLICATIONS ON WEBLOGIC AND APACHE WEBSERVER CLUSTER CONFIGURED FOR HIGH AVAILABILITY AND LOAD BALANCE
White Paper DEPLOYING WDK APPLICATIONS ON WEBLOGIC AND APACHE WEBSERVER CLUSTER CONFIGURED FOR HIGH AVAILABILITY AND LOAD BALANCE Abstract This White Paper provides information to deploy WDK based applications
Oracle9i Application Server: Options for Running Active Server Pages. An Oracle White Paper July 2001
Oracle9i Application Server: Options for Running Active Server Pages An Oracle White Paper July 2001 Oracle9i Application Server: Options for Running Active Server Pages PROBLEM SUMMARY...3 INTRODUCTION...3
Apache2 Configuration under Debian GNU/Linux. Apache2 Configuration under Debian GNU/Linux
Apache2 Configuration under Debian GNU/Linux Contents Apache2 Configuration under Debian GNU/Linux Files and Directories in /etc/apache2 Tools Using mod_disk_cache SSL Enabling SSL Creating self-signed
Web Server: Principles and Configuration Web Programming 8) Web Server
Web Server: Principles and Configuration Web Programming 8) Web Server Emmanuel Benoist Fall Term 2013-14 Introduction Presentation of Apache Principles of a Web Server Apache Installation Apache Configuration
Running Multiple Shibboleth IdP Instances on a Single Host
CESNET Technical Report 6/2013 Running Multiple Shibboleth IdP Instances on a Single Host IVAN NOVAKOV Received 10.12.2013 Abstract The article describes a way how multiple Shibboleth IdP instances may
Integrate Rails into an Existing IIS Web infrastructure using Mongrel
This article will walk you through the steps of installing Ruby, Gems, Rails, and other important libraries on a Windows 2003 server with IIS. Microsoft s Internet Information Server is a popular proprietary
Ruby on Rails (Ruby 1.9.2, Rails 3.1.1) Installation
Ruby on Rails (Ruby 1.9.2, Rails 3.1.1) Installation Ubuntu 11.10, 11.04 desktop or server (or on Linux Mint 11, 12) (You are welcomed to share this PDF freely, with no commercial purposes) First, we will
Running Nginx as Reverse Proxy server
Running Nginx as Reverse Proxy server October 30 2011 This is a tutorial on running Nginx as a reverse proxy server. It covers all basics of using Nginx as a reverse proxy server. By Ayodhyanath Guru www.jafaloo.com
Setting Up CAS with Ofbiz 5
1 of 11 20/01/2009 9:56 AM Setting Up CAS with Ofbiz 5 This wiki explains how to setup and test CAS-Ofbiz5 integration and testing on a Centos 5.2 box called "elachi". In this configuration Ofbiz and the
Enterprise Knowledge Platform
Enterprise Knowledge Platform EKP Status Monitor Guide 2.1 Document Information Document ID: EN150 Document title: EKP Status Monitor Guide Version: 2.1 Document date: 14 April 2009 This document may be
Advantages and Disadvantages of Application Network Marketing Systems
Application Deployment Softwaretechnik II 2014/15 Thomas Kowark Outline Options for Application Hosting Automating Environment Setup Deployment Scripting Application Monitoring Continuous Deployment and
Step-by-Step guide to setup an IBM WebSphere Portal and IBM Web Content Manager V8.5 Cluster From Zero to Hero (Part 2.)
Step-by-Step guide to setup an IBM WebSphere Portal and IBM Web Content Manager V8.5 Cluster From Zero to Hero (Part 2.) Summary STEP-BY-STEP GUIDE TO SETUP AN IBM WEBSPHERE PORTAL AND IBM WEB CONTENT
Implementing a Weblogic Architecture with High Availability
Implementing a Weblogic Architecture with High Availability Contents 1. Introduction... 3 2. Topology... 3 2.1. Limitations... 3 2.2. Servers diagram... 4 2.3. Weblogic diagram... 4 3. Components... 6
Accelerating Rails with
Accelerating Rails with lighty Jan Kneschke [email protected] RailsConf 2006 Chicago, IL, USA Who is that guy? Jan Kneschke Main developer of lighty Works at MySQL AB Lives in Kiel, Germany Had to choose
Apache & Virtual Hosts & mod_rewrite
Apache & Virtual Hosts & mod_rewrite Jonathan Brewer Network Startup Resource Center [email protected] These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International license
INSTALLING KAAZING WEBSOCKET GATEWAY - HTML5 EDITION ON AN AMAZON EC2 CLOUD SERVER
INSTALLING KAAZING WEBSOCKET GATEWAY - HTML5 EDITION ON AN AMAZON EC2 CLOUD SERVER A TECHNICAL WHITEPAPER Copyright 2012 Kaazing Corporation. All rights reserved. kaazing.com Executive Overview This document
To enable https for appliance
To enable https for appliance We have used openssl command to generate a key pair. The below image shows on how to generate key using the openssl command. SSH into appliance and login as root. Copy all
ANECDOTAL DEVELOPMENT & DEPLOYMENT. A Case-Study in PHP Project Workflow Lone Star PHP - June 2011 Brian Blood
ANECDOTAL DEVELOPMENT & DEPLOYMENT A Case-Study in PHP Project Workflow Lone Star PHP - June 2011 Brian Blood PHP WEB DEVELOPMENT Specify Plan Write Test Approve Log Repeat PHP WEB DEPLOYMENT Stage Deploy
MarkLogic Server. Installation Guide for All Platforms. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved.
Installation Guide for All Platforms 1 MarkLogic 8 February, 2015 Last Revised: 8.0-4, November, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Installation
MAGENTO HOSTING Progressive Server Performance Improvements
MAGENTO HOSTING Progressive Server Performance Improvements Simple Helix, LLC 4092 Memorial Parkway Ste 202 Huntsville, AL 35802 [email protected] 1.866.963.0424 www.simplehelix.com 2 Table of Contents
Created by : Ashish Shah, J.M. PATEL COLLEGE UNIT-5 CHAP-1 CONFIGURING WEB SERVER
UNIT-5 CHAP-1 CONFIGURING WEB SERVER 1 APACHE SERVER The Apache Web server is the most popular Web server on the planet. Individuals and organizations use Linux primarily to create an inexpensive and stable
PVFS High Availability Clustering using Heartbeat 2.0
PVFS High Availability Clustering using Heartbeat 2.0 2008 Contents 1 Introduction 2 2 Requirements 2 2.1 Hardware................................................. 2 2.1.1 Nodes...............................................
Tuning Tableau Server for High Performance
Tuning Tableau Server for High Performance I wanna go fast PRESENT ED BY Francois Ajenstat Alan Doerhoefer Daniel Meyer Agenda What are the things that can impact performance? Tips and tricks to improve
http://cnmonitor.sourceforge.net CN=Monitor Installation and Configuration v2.0
1 Installation and Configuration v2.0 2 Installation...3 Prerequisites...3 RPM Installation...3 Manual *nix Installation...4 Setup monitoring...5 Upgrade...6 Backup configuration files...6 Disable Monitoring
SecuritySpy Setting Up SecuritySpy Over SSL
SecuritySpy Setting Up SecuritySpy Over SSL Secure Sockets Layer (SSL) is a cryptographic protocol that provides secure communications on the internet. It uses two keys to encrypt data: a public key and
Web Server using Apache. Heng Sovannarith [email protected]
Web Server using Apache Heng Sovannarith [email protected] Introduction The term web server can refer to either the hardware (the computer) or the software (the computer application) that helps
itixi Ubuntu Server Deployment How-To/Information
itixi Ubuntu Server Deployment How-To/Information Reto Schelbert 20. August 2014 1 Index 1 Index... 1 2 Virtual Server Information... 3 2.1 User/Root... 3 2.2 MySQL User... 3 3 Ubuntu Server Installation...
DEPLOYMENT GUIDE Version 1.0. Deploying the BIG-IP LTM with Apache Tomcat and Apache HTTP Server
DEPLOYMENT GUIDE Version 1.0 Deploying the BIG-IP LTM with Apache Tomcat and Apache HTTP Server Table of Contents Table of Contents Deploying the BIG-IP LTM with Tomcat application servers and Apache web
BASICS OF SCALING: LOAD BALANCERS
BASICS OF SCALING: LOAD BALANCERS Lately, I ve been doing a lot of work on systems that require a high degree of scalability to handle large traffic spikes. This has led to a lot of questions from friends
EQUELLA. Clustering Configuration Guide. Version 6.0
EQUELLA Clustering Configuration Guide Version 6.0 Document History Document No. Reviewed Finalised Published 1 17/10/2012 17/10/2012 17/10/2012 October 2012 edition. Information in this document may change
CC ICT-SUD. Setting up and integrate Apache, MySQL and PHP on a Linux system
LAMP CC ICT-SUD Setting up and integrate Apache, MySQL and PHP on a Linux system Installation Simple Alternative (for development/testing only): Xampp I will assume MySQL is already installed and configured
Installing Apache Software
Web Server Web Server Is a software application that uses the HyperText Transfer Protocol. Running on computer connected to Internet. Many Web Server software applications: Public domain software from
E-commerce is also about
Magento server & environment optimization Get very fast page rendering, even under heavy load! E-commerce is also about NBS System 2011, all right reserved Managed Hosting & Security www.nbs-system.com
The Other mod_rails: Easy Rails Deployment with JRuby. Nick Sieger Sun Microsystems, Inc
The Other mod_rails: Easy Rails Deployment with JRuby Nick Sieger Sun Microsystems, Inc CGI/FCGI Mongrel omg puppiez! not nirvana... Processes: 68 total, 3 running, 1 stuck, 64 sleeping... 309 threads
CLUSTERING CAS for High Availability. Eric Pierce, University of South Florida
CLUSTERING CAS for High Availability Eric Pierce, University of South Florida Overview High Availability Basics Before Clustering CAS Failover with Heartbeat Ticket Registry Load Balancing CAS at USF HA
1.0 Hardware Requirements:
01 - ServiceDesk Plus - Best Practices We appreciate you choosing ServiceDesk Plus for your organization to deliver world-class IT services. Before installing the product, take a few minutes to go through
This document will list the ManageEngine Applications Manager best practices
This document will list the ManageEngine Applications Manager best practices 1. Hardware and Software requirements 2. Configuring Applications Manager 3. Securing Applications Manager 4. Fault Management
TestOps: Continuous Integration when infrastructure is the product. Barry Jaspan Senior Architect, Acquia Inc.
TestOps: Continuous Integration when infrastructure is the product Barry Jaspan Senior Architect, Acquia Inc. This talk is about the hard parts. Rainbows and ponies have left the building. Intro to Continuous
SVNManager Installation. Documentation. Department of Public Health Erasmus MC University Medical Center
SVNManager Installation Documentation M. Verkerk Department of Public Health Erasmus MC University Medical Center Page 2 July 2005 Preface Version control in the context of this document is all about keeping
Apache httpd v2.4: Reverse Proxy. (The Hidden Gem) Jim Jagielski
Apache httpd v2.4: Reverse Proxy (The Hidden Gem) Jim Jagielski About me Jim Jagielski Hacker and developer Wearer o many hats at the ASF Director and President: Outercurve Council member: MARSEC-XL Consulting
Setting Up B2B Data Exchange for High Availability in an Active/Active Configuration
Setting Up B2B Data Exchange for High Availability in an Active/Active Configuration 2010 Informatica Abstract This document explains how to install multiple copies of B2B Data Exchange on a single computer.
Deployment Topologies
, page 1 Multinode Cluster with Unified Nodes, page 2 Clustering Considerations, page 3 Cisco Unified Communications Domain Manager 10.6(x) Redundancy and Disaster Recovery, page 4 Capacity Considerations,
PHP web serving study Performance report
PHP web serving study Performance report by Stefan "SaltwaterC" Rusu Date: May - June 2010 Contact: http://saltwaterc.net/contact or admin [at] saltwaterc [dot] net Hardware Configurations Web Server:
Working With Virtual Hosts on Pramati Server
Working With Virtual Hosts on Pramati Server 13 Overview Virtual hosting allows a single machine to be addressed by different names. There are two ways for configuring Virtual Hosts. They are: Domain Name
How to setup HTTP & HTTPS Load balancer for Mediator
How to setup HTTP & HTTPS Load balancer for Mediator Setting up the Apache HTTP Load Balancer for Mediator This guide would help you to setup mediator product to run via the Apache Load Balancer in HTTP
CumuLogic Connector for Citrix CloudPlatform Business Manager Guide
CumuLogic Connector for Citrix CloudPlatform Business September 2013 Table of Contents CumuLogic Cloud Services Connector for Citrix CloudPortal Business Manager 2.1... 1 Introduction... 1 Overview...
Online Backup Client User Manual
Online Backup Client User Manual Software version 3.21 For Linux distributions January 2011 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have
Apache and Virtual Hosts Exercises
Apache and Virtual Hosts Exercises Install Apache version 2 Apache is already installed on your machines, but if it was not you would simply do: # apt-get install apache2 As the root user. Once Apache
PROXY SETUP WITH IIS USING URL REWRITE, APPLICATION REQUEST ROUTING AND WEB FARM FRAMEWORK OR APACHE HTTP SERVER FOR EMC DOCUMENTUM EROOM
White Paper PROXY SETUP WITH IIS USING URL REWRITE, APPLICATION REQUEST ROUTING AND WEB FARM FRAMEWORK OR APACHE HTTP SERVER FOR EMC DOCUMENTUM EROOM Abstract This white paper explains how to setup Proxy
Installation Guide for contineo
Installation Guide for contineo Sebastian Stein Michael Scholz 2007-02-07, contineo version 2.5 Contents 1 Overview 2 2 Installation 2 2.1 Server and Database....................... 2 2.2 Deployment............................
Painless Web Proxying with Apache mod_proxy
Painless Web Proxying with Apache mod_proxy Justin R. Erenkrantz University of California, Irvine and Google, Inc. http://www.erenkrantz.com/oscon/ [email protected] Why should I pay attention? Apache
Virtual Host (Web Server)
Virtual Host (Web Server) 1 Muhammad Zen Samsono Hadi, ST. MSc. Lab. Komunikasi Digital Gedung D4 Lt. 1 EEPIS-ITS Virtual Networking implementation 2 Power consumption comparison 3 VS 5 Physical Virtual
ZingMe Practice For Building Scalable PHP Website. By Chau Nguyen Nhat Thanh ZingMe Technical Manager Web Technical - VNG
ZingMe Practice For Building Scalable PHP Website By Chau Nguyen Nhat Thanh ZingMe Technical Manager Web Technical - VNG Agenda About ZingMe Scaling PHP application Scalability definition Scaling up vs
INSTALLATION GUIDE VERSION
INSTALLATION GUIDE VERSION 4.1 2014 Copyright 2008 2014. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means electronic or mechanical, for any purpose
APACHE WEB SERVER. Andri Mirzal, PhD N28-439-03
APACHE WEB SERVER Andri Mirzal, PhD N28-439-03 Introduction The Apache is an open source web server software program notable for playing a key role in the initial growth of the World Wide Web Typically
Table of Contents. Overview... 1 Introduction... 2 Common Architectures... 3. Technical Challenges with Magento... 6. ChinaNetCloud's Experience...
Table of Contents Overview... 1 Introduction... 2 Common Architectures... 3 Simple System... 3 Highly Available System... 4 Large Scale High-Performance System... 5 Technical Challenges with Magento...
1. Configuring Apache2 Load Balancer with failover mechanism
1. Configuring Apache2 Load Balancer with failover mechanism node01 Messaging Part 1 Instance 1 for e.g.: 192.168.0.140 192.168.0.2 node02 Messaging Part 1 Instance 2 for e.g.: 192.168.0.90 Configuring
Simple and powerful site deployment with capistrano
Simple and powerful site deployment with capistrano Kim Pepper [email protected] @scorchio96 d.o: kim.pepper How are you deploying now? FTP, SFTP, SCP? SSH + GIT? Aegir? Drush? Debian packages? Don't
Drupal Performance Tuning
Drupal Performance Tuning By Jeremy Zerr Website: http://www.jeremyzerr.com @jrzerr http://www.linkedin.com/in/jrzerr Overview Basics of Web App Systems Architecture General Web
MINIMUM INSTALLATION REQUIREMENTS Processor: RAM: Hard disk: Operating system: Others: Pentium 200 MHz. 64 MB. 80 MB free space. One of the following: Red Hat (version 7.0, 7.1, 7.2, 7.3, 8.0, 9 or Enterprise
CO 246 - Web Server Administration and Security. By: Szymon Machajewski
CO 246 - Web Server Administration and Security By: Szymon Machajewski CO 246 - Web Server Administration and Security By: Szymon Machajewski Online: < http://cnx.org/content/col11452/1.1/ > C O N N E
Drupal CMS for marketing sites
Drupal CMS for marketing sites Intro Sample sites: End to End flow Folder Structure Project setup Content Folder Data Store (Drupal CMS) Importing/Exporting Content Database Migrations Backend Config Unit
Tableau Server Administrator Guide. Version 8.0.x
Tableau Server Administrator Guide Version 8.0.x Last updated: July 19, 2013 Before you install... Make sure the computer on which you re installing Tableau Server meets the following requirements: Supported
Syncplicity On-Premise Storage Connector
Syncplicity On-Premise Storage Connector Implementation Guide Abstract This document explains how to install and configure the Syncplicity On-Premise Storage Connector. In addition, it also describes how
SIMIAN systems. Setting up a Sitellite development environment on Mac OS X. Sitellite Content Management System
Setting up a Sitellite development environment on Mac OS X Sitellite Content Management System Introduction Mac OS X is a great platform for web application development, and now with tools like VMWare
Serving 4 million page requests an hour with Magento Enterprise
1 Serving 4 million page requests an hour with Magento Enterprise Introduction In order to better understand Magento Enterprise s capacity to serve the needs of some of our larger clients, Session Digital
