Installing Rails 2.3 Under CentOS/RHEL 5 and Apache 2.2
|
|
|
- Briana Cain
- 10 years ago
- Views:
Transcription
1 Installing Rails 2.3 Under CentOS/RHEL 5 and Apache 2.2 Scott Taylor Tailor Made Software July 24, 2011 Version Introduction Ruby On Rails (aka just Rails ) is a modern scripting system that allows easy development of Web 2.0 type applications. It relies heavily on Dynamic HTML (dhtml) and AJAX, a form of JavaScript that provides asynchronous communication between server and client. The following instructions will install Rails 2.3.x under Apache 2.2 on CentOS or Red Hat Enterprise Linux 5. They should work for any version of CentOS/RHEL 5 but were tested using CentOS 5.2 and 5.5. CentOS is the community supported version of RHEL and contains essentially the same packages as RHEL but without the commercial support. The normal operation of installing linux packages is with yum, downloading the packages automatically over the internet. However, some companies have restrictive firewalls that preclude this method. As a result we will describe loading using predownloaded packages. The basic effect of this is that only a given version will be available and therefore will be loaded instead of the version that is current. However, since we want to work with specific versions that have been tested, we would be installing specific versions in any case. Instructions are given for two methods of file serving/load balancing using Passenger and Mongrel. One of these needs to be installed. Each has 2. Prerequisites There are several packages that are required to run and install Rails, including the Ruby Interpreter (the system that processes the Ruby language files), RubyGems (the installation system for Ruby modules) and Apache 2.2 (the web server). 2.1 Non-requisites It is possible that certain software that is not desired may be already installed by default on your system, even if it is a clean system. For instance, CentOS 5.6 installs Rails 3.0 by default. Not only do we not want Rails 3.X (we are dependent on Rails 2.3) but
2 we may also want to replace the version of Ruby that is installed by default. At the appropriate time we will instruct you to check for these non-requisite packages. 2.2 Apache First we will install Apache 2 or verify that Apache 2 is installed correctly. You will need the Development headers, not just the normal installation. The standard commands for installing Apache on CentOS/RHEL are: yum install httpd yum install httpd-devel yum install apr-devel yum install apr-util-devel However, just installing httpd-devel will update or install the other three if Apache was not previously loaded on the machine. 2.2 Ruby There are two options for installing Ruby: standard Ruby and Enterprise Ruby. Standard Ruby is the normal Ruby interpreter that may be installed with your CentOS installation. Enterprise Ruby is a free version that is developed by Phusion, a Dutch software company. It is faster and manages memory better than standard Ruby. We recommend its use Enterprise Ruby The current source code for Enterprise Ruby is contained in ruby-enterprise tar.gz After copying the source to the desired location extract the code using: tar xzvf ruby-enterprise-x.x.x.tar.gz then install the code using:./ruby-enterprise-x.x.x/installer So for the current code those commands would be: tar xzvf ruby-enterprise tar.gz./ruby-enterprise /installer The installer will ask for the location to place Enterprise Ruby. We used: /opt/ruby-enterprise-1.8.7/
3 2.2.2 Replace Ruby If Ruby is already installed on the system you can either place the Enterprise Ruby path on the front of the system path, or replace the symlink in the /usr/bin or usr/sbin directory with a symlink to the Enterprise Ruby directory export PATH=/opt/ruby-enterprise-1.8.7/bin:$PATH sn l 2.3 RubyGems RubyGems is an installation system, sort of like yum or apt, that is used by Ruby modules. There are two versions of RubyGems that you can use: normal and Enterprise Ruby. It does not matter which you use, but, of course, if you do not have standard Ruby installed then you would use the version that comes with Enterprise Ruby Normal RubyGems If you are not using Enterprise Ruby, and do not have RubyGems already installed, you will need to install it. You can check whether it is already installed using whereis: whereis gem Installation of RubyGems is straightforward: 1) Copy the compressed tarball to the desired location 2) Extract the source 3) Switch to the rubygems directory 4) Run the ruby command setup.rb tar -xzvf rubygems tgz cd rubygems /opt/ruby-enterprise-1.8.7/bin/ruby setup.rb This should result in RubyGems installed Enterprise Ruby Enterprise Ruby installs its own version of RubyGems. If you have normal ruby installed on the system and did not switch the PATH environment variable or create a Symlink to Enterprise Ruby, you can create an alias to the Enterprise Ruby version. alias reegem=/opt/ruby-enterprise-1.8.7/bin/gem
4 2.4 Uninstall Rails 3.0 A base installation of CentOS may install an incorrect version of Rails. We are using Rails Version will also work. Version will work but contains a security bug that is fixed in 2.3.8, so should be used instead. CentOS 5.2 will install Rails which is totally incompatible and therefore must be removed or worked around. Removal is the easiest. You will use gem to uninstall the existing version of Rails and dependant packages. The command is: gem uninstall abc v=x.y.z where abc is the name of the package to be removed and x.y.z is the version. If there is more than one version of the package installed and you do not list the version you want uninstalled, it will prompt you for which version to remove, and give you a choice to remove all versions. The command gem list will give you a list of all gems installed. A sample from base CentOS 5.2 after rails has been installed: actionmailer (3.0.9, 2.3.8) actionpack (3.0.9, 2.3.8) activemodel (3.0.9) activerecord (3.0.9, 2.3.8) activeresource (3.0.9, 2.3.8) activesupport (3.0.9, 2.3.8) arel (2.0.10) builder (2.1.2) bundler (1.0.15) daemon_controller (0.2.6) erubis (2.6.6) fastthread (1.0.7) formtastic (1.2.4) i18n (0.6.0, 0.5.0) mail (2.2.19) mime-types (1.16) mysql (2.8.1) passenger (3.0.7) polyglot (0.3.1) rack (1.3.0, 1.2.3, 1.1.2) rack-mount (0.6.14) rack-test (0.5.7) rails (3.0.9, 2.3.8) railties (3.0.9) rake (0.9.2) Each item lists the name followed by the version number(s). For instance, activerecord has versions and installed. You need to remove the following if present: actionmailer actionpack activemodel activerecord activeresource activesupport builder 2.1.2
5 bundler passenger rack and rack-mount rack-test rails railties Install Rails 3.1 Installation Installation of Rails is straightforward. The easiest method is to copy the gem files to a directory and run RubyGems from that directory. You will need to install the following gem files: activerecord gem activeresource gem actionmailer gem activesupport gem actionpack gem rack gem rake gem These are installed in two steps. First run: gem install rack gem gem install rake gem then run: gem install rails -v=2.3.8 The rails install will install all of the active and action gems. Do NOT use Rack V Passenger will not recognize it. You should then install the other gems needs by Visual Query: gem install i18n gem gem install formtastic gem Note: when you install formtastic on a Rails 2.3 system it will complain that activesupport 3.0 or higher is required. That is a problem with the gem installer and is not really true. Activesupport is part of Rails 3 and is not required for Rails 2. If you run gem list you will see that formtastic was actually installed despite the error notice. You will need to install the database connector unless you are using SqlLite 3. For MySQL install use: gem install mysql
6 If you are using Oracle you will need to install the Oracle Enhanced Driver: gem install activerecord-oracle_enhanced-adapter gem 3.2 Testing Rails With Rails and Enterprise Ruby installed it is a good idea to test the installation so far. That is easiest by creating a simple rails application and running it. The instructions below use mysql for the database and call the project rtest. You should modify them as needed. Create a directory for the rails project and then run: rails d mysql rtest Create a database in the Mysql database: mysql u root mysql> create database rtest; Modify the config/database.yml file to point to the new database: development: adapter: mysql encoding: utf8 reconnect: false database: rtest pool: 5 username: root password: jpmc host: backset Create the database table using rails: script/generate scaffold simple name:string This will create the table simple in the rtest database. If then you start the rails server using ruby script/server and go to the main page localhost:3000 it will display the Rails equivalent of Hello world!. Click on the About your applications environment link and it should display the information about your setup of rails. It should be something like this: Ruby version (x86_64-linux) RubyGems version Rack version 1.1 Rails version Active Record version Active Resource version Action Mailer version Active Support version Application root /www/rtest Environment development Database adapter mysql Database schema version 0
7 4. Load Balancing Software In order to run more than one instance of the Rails application we will need to install multiple server instances and load balancing software. There are three methods of accomplishing this: Passenger, Mongrel and Thin. We will describe the first two. 4.1Phusion Passenger Phusion Passenger is a modification of an older system known as mod_rails. Passenger allows multiple instances of an application to be run and takes care of balancing the load between the instances so no one instance is being overtaxed or consumes all the resources. Passenger works with Apache or ngenix to serve the pages for the website. Apache and ngenix serve the static pages while Passenger handles the dynamic pages from the Rails application. Unlike mongrel, Passenger is very easy to configure and works with Apache Installation The easiest way to install Passenger is using the gem. From the directory where the gem is located run: gem install passenger This will install the version that is resident in that directory. If it does not then use: gem install passenger v=3.0.5 You then need to install the Apache specific code for Passenger. Run: /opt/ruby-enterprise-1.8.7/bin/passenger-install-apache2-module This should result in The Apache 2 module was successfully installed. Note: the path may differ depending on where you installed Enterprise Ruby Environment Variables If your installation of linux uses a non-default setup you may need to define one or more environment variables or modify the path to enable Passenger to find the dependant software. The following may need to be defined: export APXS2=/apps/fast/tyger/fcBase/bin/fc-osgi-apache/linux-rh5-x64/bin/apxs export APR_CONFIG=/apps/fast/tyger/fcBase/bin/fc-osgi-apache/linux-rh5-x64/bin/apr-1-config export APU_CONFIG=/apps/fast/tyger/fcBase/bin/fc-osgi-apache/linux-rh5-x64/bin/apu-1-config export APACHE=/apps/fast/tyger/fcBase/bin/fc-osgi-apache/linux-rh5-x64/bin/ export APACHE2=/apps/fast/tyger/fcBase/bin/fc-osgi-apache/linux-rh5-x64/bin/
8 export HTTPD=/apps/fast/tyger/fcBase/bin/fc-osgi-apache/linux-rh5-x64/bin/httpd export PATH=/opt/ruby-enterprise /bin:$PATH Configuring Apache The final step is to configure Apache to use Passenger. Edit your Apache configuration file (the default location is /etc/httpd/conf/httpd.conf), and add these lines (or their equivalent since the path will be different): LoadModule passenger_module /opt/ruby-enterprise-1.8.7/lib/ruby/gems/1.8/gems/passenger /ext/apache2/mod_passenger.so PassengerRoot /opt/ruby-enterprise-1.8.7/lib/ruby/gems/1.8/gems/passenger PassengerRuby /opt/ruby-enterprise-1.8.7/bin/ruby # Virtual host Default Virtual Host # Virtual host jpmcvq <VirtualHost *:80> ServerName DocumentRoot /www/rtest/public <Directory /www/rtest/public > RailsEnv development AllowOverride all Options -MultiViews </Directory> DirectoryIndex index.html index.htm index.shtml </VirtualHost> Make sure you set the RailsEnv variable to production, development or test as appropriate. Also, note that the directory statements point to the public subdirectory of the rails application. You will also need to change the ServerName setting higher in the httpd.conf file to a valid server name. Now, restart Apache and try the Hello, world! page again. 4.2 Mongrel Mongrel, and its associated process Mongrel Cluster, work in conjunction with Apache to provide load balancing and multiple process support. Mongrel is actually a web server written in Ruby that is optimized for running Ruby-based processes like Rails. Mongrel Cluster allows multiple instances of Mongrel to run in parallel. Apache is used to provide load balancing using mod_proxy_balancer and to serve static pages, while Mongrel is used to serve Ruby-based dynamic pages Installation Mongrel and Mongrel Cluster are installed from their gems. Use the commands: gem install mongrel v=1.1.5 gem install mongrel_cluster v=1.0.5
9 4.2.2 Configuration Mongrel has no specific configuration requirements. Everything is configured using Mongrel Cluster. To configure Mongrel Cluster you need to know the port to use (we will using 3000), the number of instances (we will start with 3) and which environment is being run (we will use development for now). First change directory to the home directory for the application and then run mongreal cluster configure: cd /www/public_html/testapp mongrel_rails cluster::configure -e development -p N 3 -c /www/public_html/testapp -a Of course you should use the appropriate values for the www directory and the URL. Note that this will create the file config/mogrel_cluster.yml. Make sure you have write permission to the config directory. You can manually start, restart and stop the cluster (from the document root directory) using: mongrel_rails cluster::start mongrel_rails cluster::restart mongrel_rails cluster::stop Next create an init script and add it to start automatically: mkdir /etc/mongrel_cluster ln -s /home/demo/public_html/testapp/config/mongrel_cluster.yml /etc/mongrel_cluster/testapp.yml cp /usr/lib/ruby/gems/1.8/gems/mongrel_cluster-1.0.5/resources/mongrel_cluster /etc/init.d/ chmod +x /etc/init.d/mongrel_cluster chkconfig add mongrel_cluster You can check the cluster status using: mongrel_cluster_ctl status Apache Configuration The final step is to configure apache to use mongrel. <VirtualHost *:80> ServerAdmin webmaster@ ServerName jpmcvq.com ServerAlias DocumentRoot /www/rtest/public RewriteEngine On <proxy balancer://mongrel1> BalancerMember
10 BalancerMember BalancerMember </proxy> RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME}!-f RewriteRule ^/(.*)$ balancer://mongrel1%{request_uri} [P,QSA,L] ProxyPass / balancer://mongrel1/ ProxyPassReverse / balancer://mongrel1/ ProxyPreserveHost on <Proxy *> Order deny,allow Allow from all </Proxy> ErrorLog /www/rtest/log/error.log CustomLog /www/rtest/log/access.log combined </VirtualHost>
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
Rails Application Deployment. July 2007 @ Philly on Rails
Rails Application Deployment July 2007 @ Philly on Rails What Shall We Deploy Tonight? Blogging/publishing system Standard Rails application Ships with gems in vendor directory Easy rake task for database
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
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
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
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
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
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
Server Installation/Upgrade Guide
Server Installation/Upgrade Guide System Version 3.8 2001-2009 Echo 360, Inc. Echo360 is a trademark of Echo360, Inc. Echo360 is a registered trademark of Echo360 Inc. in Australia. All other trademarks
LAMP Quickstart for Red Hat Enterprise Linux 4
LAMP Quickstart for Red Hat Enterprise Linux 4 Dave Jaffe Dell Enterprise Marketing December 2005 Introduction A very common way to build web applications with a database backend is called a LAMP Stack,
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
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
Dataworks System Services Guide
Dataworks System Services Guide UNAVCO initially established the GNSS data management service Dataworks as a full stack independent server running on Dell Hardware operating CentOS as its operating system.
Apache HTTP Server. Implementation Guide. (Version 5.7) Copyright 2013 Deepnet Security Limited
Implementation Guide (Version 5.7) Copyright 2013 Deepnet Security Limited Copyright 2013, Deepnet Security. All Rights Reserved. Page 1 Trademarks Deepnet Unified Authentication, MobileID, QuickID, PocketID,
TestCaseDB Administration Guide. Version 3.1
TestCaseDB Administration Guide Version 3.1 TestCaseDB.com 1 Table of Contents 1 Table of Contents... 2 2 Overview... 8 3 Requirements... 9 3.1 Operating System Versions... 9 3.1.1 Ubuntu... 9 3.1.2 Cent
Setup a Virtual Host/Website
Setup a Virtual Host/Website Contents Goals... 2 Setup a Website in CentOS... 2 Create the Document Root... 2 Sample Index File... 2 Configuration... 3 How to Check If Your Website is Working... 5 Setup
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
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...
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
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
Expresso Quick Install
Expresso Quick Install 1. Considerations 2. Basic requirements to install 3. Install 4. Expresso set up 5. Registering users 6. Expresso first access 7. Uninstall 8. Reinstall 1. Considerations Before
OpenGeo Suite for Linux Release 3.0
OpenGeo Suite for Linux Release 3.0 OpenGeo October 02, 2012 Contents 1 Installing OpenGeo Suite on Ubuntu i 1.1 Installing OpenGeo Suite Enterprise Edition............................... ii 1.2 Upgrading.................................................
WEB2CS INSTALLATION GUIDE
WEB2CS INSTALLATION GUIDE FOR XANDMAIL XandMail 32, rue de Cambrai 75019 PARIS - FRANCE Tel : +33 (0)1 40 388 700 - http://www.xandmail.com TABLE OF CONTENTS 1. INSTALLING WEB2CS 3 1.1. RETRIEVING THE
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 Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012
Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 1 The person installing the VC is knowledgeable of the Linux file system
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
Rancid Server Build and Operation Overview (v0.3) (This is being done from memory so expect some errors)
Rancid Server Build and Operation Overview (v0.3) (This is being from memory so expect some errors) Installation The installation will cover the setup and configuration of a RANCID server using CentOS
Kony MobileFabric. Sync Windows Installation Manual - WebSphere. On-Premises. Release 6.5. Document Relevance and Accuracy
Kony MobileFabric Sync Windows Installation Manual - WebSphere On-Premises Release 6.5 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and
Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4
Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4 by SK Cacti is an open source, front-end for the data logging tool called RRDtool. It is a web based network monitoring
Cloud Homework instructions for AWS default instance (Red Hat based)
Cloud Homework instructions for AWS default instance (Red Hat based) Automatic updates: Setting up automatic updates: by Manuel Corona $ sudo nano /etc/yum/yum-updatesd.conf Look for the line that says
Performance Optimization of Teaching Web Application based SSH Framework
Performance Optimization of Teaching Web Application based SSH Framework Jianchuan Meng 1 & Changdi Shi 1 & Liming Luo 1 1. Capital Normal University, Beijing, China ABSTRACT: Because Web applications
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
Red Hat JBoss Core Services Apache HTTP Server 2.4 Apache HTTP Server Installation Guide
Red Hat JBoss Core Services Apache HTTP Server 2.4 Apache HTTP Server Installation Guide For use with Red Hat JBoss middleware products. Red Hat Customer Content Services Red Hat JBoss Core Services Apache
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
AWS Schema Conversion Tool. User Guide Version 1.0
AWS Schema Conversion Tool User Guide AWS Schema Conversion Tool: User Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may
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
Moving Drupal to the Cloud: A step-by-step guide and reference document for hosting a Drupal web site on Amazon Web Services
Moving Drupal to the Cloud: A step-by-step guide and reference document for hosting a Drupal web site on Amazon Web Services MCN 2009: Cloud Computing Primer Workshop Charles Moad
GroundWork Monitor Open Source 5.1.0 Installation Guide
GroundWork Monitor Open Source 5.1 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version
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,
Installation overview
hroot - Hamburg registration and organization online tool Universität Hamburg School of Business, Economics and Social Sciences WiSo- Research Laboratory Von- Melle- Park 5 20146 Hamburg Germany Installation
INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6
INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6 Mathieu SCHIRES Version: 0.96.1 Published January 19, 2015 http://www.inuvika.com Contents 1 Prerequisites: RHEL 6 3 1.1 System Requirements...................................
owncloud 8 and DigitalOcean Matthew Davidson Bluegrass Linux User Group 03/09/2015
owncloud 8 and DigitalOcean Matthew Davidson Bluegrass Linux User Group 03/09/2015 owncloud 8 and DigitalOcean The following slides are based off the notes that I used to build owncloud 8, on a server
Certified Redmine Project Management Professional Sample Material
Certified Redmine Project Management Professional Sample Material 1. INSTALLATION 1.1. Installing Redmine This is the installation documentation for Redmine 1.4.0 and higher. You can still read the document
Graphviz Website Installation, Administration and Maintenance
Graphviz Website Installation, Administration and Maintenance 1 Overview The graphviz.org website is based on the Drupal content management system. Drupal uses a MySql database to store web pages and information
Partek Flow Installation Guide
Partek Flow Installation Guide Partek Flow is a web based application for genomic data analysis and visualization, which can be installed on a desktop computer, compute cluster or cloud. Users can access
A Beginner's Guide to Setting Up A Web Hosting System (Or, the design and implementation of a system for the worldwide distribution of pictures of
A Beginner's Guide to Setting Up A Web Hosting System (Or, the design and implementation of a system for the worldwide distribution of pictures of cats.) Yes, you can download the slides http://inthebox.webmin.com/files/beginners-guide.pdf
JAMF Software Server Installation Guide for Linux. Version 8.6
JAMF Software Server Installation Guide for Linux Version 8.6 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate.
i2b2: Security Baseline
i2b2: Security Baseline Contents Introduction... 3 CentOS Security Configuration... 4 SSL Configuration... 5 Database Configuration Files... 6 Revision History... 11 2 Introduction This document outlines
Magento Search Extension TECHNICAL DOCUMENTATION
CHAPTER 1... 3 1. INSTALLING PREREQUISITES AND THE MODULE (APACHE SOLR)... 3 1.1 Installation of the search server... 3 1.2 Configure the search server for usage with the search module... 7 Deploy the
HOW TO SETUP AN APACHE WEB SERVER AND INTEGRATE COLDFUSION
HOW TO SETUP AN APACHE WEB SERVER AND INTEGRATE COLDFUSION Draft version 1.0 July 15 th 2010 Software XAMPP is an open source package designed to take almost all the work out of setting up and integrating
About This Document 3. About the Migration Process 4. Requirements and Prerequisites 5. Requirements... 5 Prerequisites... 5
Contents About This Document 3 About the Migration Process 4 Requirements and Prerequisites 5 Requirements... 5 Prerequisites... 5 Installing the Migration Tool and Enabling Migration 8 On Linux Servers...
Installing and Configuring MySQL as StoreGrid Backend Database on Linux
Installing and Configuring MySQL as StoreGrid Backend Database on Linux Overview StoreGrid now supports MySQL as a backend database to store all the clients' backup metadata information. Unlike StoreGrid
Integrating SAP BusinessObjects with Hadoop. Using a multi-node Hadoop Cluster
Integrating SAP BusinessObjects with Hadoop Using a multi-node Hadoop Cluster May 17, 2013 SAP BO HADOOP INTEGRATION Contents 1. Installing a Single Node Hadoop Server... 2 2. Configuring a Multi-Node
VERSION 9.02 INSTALLATION GUIDE. www.pacifictimesheet.com
VERSION 9.02 INSTALLATION GUIDE www.pacifictimesheet.com PACIFIC TIMESHEET INSTALLATION GUIDE INTRODUCTION... 4 BUNDLED SOFTWARE... 4 LICENSE KEY... 4 SYSTEM REQUIREMENTS... 5 INSTALLING PACIFIC TIMESHEET
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
IceWarp Server. Log Analyzer. Version 10
IceWarp Server Log Analyzer Version 10 Printed on 23 June, 2009 i Contents Log Analyzer 1 Quick Start... 2 Required Steps... 2 Optional Steps... 2 Advanced Configuration... 5 Log Importer... 6 General...
CycleServer Grid Engine Support Install Guide. version 1.25
CycleServer Grid Engine Support Install Guide version 1.25 Contents CycleServer Grid Engine Guide 1 Administration 1 Requirements 1 Installation 1 Monitoring Additional OGS/SGE/etc Clusters 3 Monitoring
OS Installation: CentOS 5.8
OS Installation: CentOS 5.8 OpenTUSK Training University of Nairobi Mike Prentice [email protected] Tufts University Technology for Learning in the Health Sciences July 2013 Outline 1 OS Install
Building Ruby, Rails, LightTPD, and MySQL on Tiger
Home Archives Tags Links About Projects Contact Feeds Building Ruby, Rails, LightTPD, and MySQL on Tiger Technology Web Design Development Mac OS X Ruby on Rails 12.01.05-09:22 PM Gold Ruby Earring Shop
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
RHadoop Installation Guide for Red Hat Enterprise Linux
RHadoop Installation Guide for Red Hat Enterprise Linux Version 2.0.2 Update 2 Revolution R, Revolution R Enterprise, and Revolution Analytics are trademarks of Revolution Analytics. All other trademarks
Getting an ipath server running on Linux
Getting an ipath server running on Linux Table of Contents Table of Contents... 2 1.0. Introduction... 3 2.0. Overview... 3 3.0. Installing Linux... 3 4.0. Installing software that ipath requires... 3
Installation of the Shibboleth-Apache Authorisation Module. 2. Obtain and compile the Apache server software
Version Date Comments 1.0 15 January 2009 Stijn Lievens 1.0.1 2 April 2009 Stijn Lievens. Corrected some typos and mentioned that one also needs to set APACHE_HOME when compiling the mod_permis module.
Integrating Apache Web Server with Tomcat Application Server
Integrating Apache Web Server with Tomcat Application Server The following document describes how to build an Apache/Tomcat server from all source code. The end goal of this document is to configure the
AWS Schema Conversion Tool. User Guide Version 1.0
AWS Schema Conversion Tool User Guide AWS Schema Conversion Tool: User Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may
IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager
IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager Scenario You are a system administrator responsible for managing web application server installations.
SIMIAN systems. Setting up a Sitellite development environment on Windows. Sitellite Content Management System
Setting up a Sitellite development environment on Windows Sitellite Content Management System Introduction For live deployment, it is strongly recommended that Sitellite be installed on a Unix-based operating
Lab 3.4.2: Managing a Web Server
Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway R1-ISP R2-Central S0/0/0 10.10.10.6 255.255.255.252 N/A Fa0/0 192.168.254.253 255.255.255.0 N/A S0/0/0 10.10.10.5
How to Install Multicraft on a VPS or Dedicated Server (Ubuntu 13.04 64 bit)
How to Install Multicraft on a VPS or Dedicated Server (Ubuntu 13.04 64 bit) Introduction Prerequisites This tutorial will show you step-by-step on how to install Multicraft 1.8.2 on a new VPS or dedicated
Reference and Troubleshooting: FTP, IIS, and Firewall Information
APPENDIXC Reference and Troubleshooting: FTP, IIS, and Firewall Information Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the
OpenPro ERP Software Installation Guide REDHAT LINUX
OpenPro ERP Software Installation Guide REDHAT LINUX 10061 Talbert Ave Suite 228 Fountain Valley, CA 92708 USA Phone 714-378-4600 Fax 714-964-1491 www.openpro.com [email protected] OpenPro Installation
Release Notes for McAfee(R) VirusScan(R) Enterprise for Linux Version 1.9.0 Copyright (C) 2014 McAfee, Inc. All Rights Reserved.
Release Notes for McAfee(R) VirusScan(R) Enterprise for Linux Version 1.9.0 Copyright (C) 2014 McAfee, Inc. All Rights Reserved. Release date: August 28, 2014 This build was developed and tested on: -
StoreGrid Backup Server With MySQL As Backend Database:
StoreGrid Backup Server With MySQL As Backend Database: Installing and Configuring MySQL on Windows Overview StoreGrid now supports MySQL as a backend database to store all the clients' backup metadata
Amon Agent. User Guide
Amon Agent User Guide Table of Contents Agent Installation.............................................................................. 1 Scheduling....................................................................................
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.
Web Site Content Management Server. Installation Guide Version 4.1 Build 0
Web Site Content Management Server Installation Guide Version 4.1 Build 0 livesite: Web Site Content Management Server No parts of this work may be reproduced in any form or by any means - graphic, electronic,
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
Setting up an Apache Web Server for Greenstone 2 Walkthrough
Setting up an Apache Web Server for Greenstone 2 Walkthrough From GreenstoneWiki Setting up an Apache web server to work with Greenstone 2: [edit] #Installing the Apache web server on Linux and MacOS (Leopard)
ABS Manual Installation Guide
This document includes all the information required to install, upgrade and configure the Amberdms Billing System manually on nonoffically supported platforms. If you are a user of RHEL, CentOS, Debian
Installation Guide. Copyright (c) 2015 The OpenNMS Group, Inc. OpenNMS 17.0.0-SNAPSHOT Last updated 2015-09-22 05:19:20 EDT
Installation Guide Copyright (c) 2015 The OpenNMS Group, Inc. OpenNMS 17.0.0-SNAPSHOT Last updated 2015-09-22 05:19:20 EDT Table of Contents 1. Basic Installation of OpenNMS... 1 1.1. Repositories for
FTP, IIS, and Firewall Reference and Troubleshooting
FTP, IIS, and Firewall Reference and Troubleshooting Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the Windows Firewall, the
CYCLOPE let s talk productivity
Cyclope 6 Installation Guide CYCLOPE let s talk productivity Cyclope Employee Surveillance Solution is provided by Cyclope Series 2003-2014 1 P age Table of Contents 1. Cyclope Employee Surveillance Solution
Contents: 1. Preparation/download files 2. Apache HTTPD Web Server 2.2.3 3. MySQL 5.0.27 4. PHP 5.2.0 5. PHPMyAdmin 2.9.1.1 6. Ruby On Rails 1.8.
Installation guide for Apache webserver, MySQL, PHP 5, PHPMyAdmin en Ruby On Rails by: Wietse Veenstra - http://www.wietseveenstra.nl/blog last update: January 3rd, 2007 Contents: 1. Preparation/download
How To Set Up A Virtual Host In Apa On A Linux Box On A Windows Xp Or Ipa On An Ubuntu Box On An Ipa (Windows) Or Ipo (Windows Xp) On A Ubora Box On Your Ubora
Hentzenwerke Whitepaper Series Setting Up Virtual Hosts in Apache (A Tutorial for Windows Web Admins) By Whil Hentzen One common need of Web site administrators is to host multiple Web sites on the same
Install and configure Apache, MySQL, PHP on OSX 10.8 Mountain Lion
1 de 9 12/01/13 14:07 Install and configure Apache, MySQL, PHP and phpmyadmin on OSX 10.8 Mountain Lion Get your Local Web Development Server Purring on all Fours With the new cat out of the bag, getting
STREAMEZZO RICH MEDIA SERVER
STREAMEZZO RICH MEDIA SERVER Clustering This document is the property of Streamezzo. It cannot be distributed without the authorization of Streamezzo. Table of contents 1. INTRODUCTION... 3 1.1 Rich Media
vtiger CRM 4.2 Installation Guide for Linux OS
- 1 - vtiger CRM 4.2 Installation Guide for Linux OS (Revision: 4.2) - 2 - Contents 1. System Requirements...3 2. Linux Dependency Packages...4 3. Installation Prerequisites...6 4. Installing vtiger CRM...7
Install Apache on windows 8 Create your own server
Source: http://www.techscio.com/install-apache-on-windows-8/ Install Apache on windows 8 Create your own server Step 1: Downloading Apache Go to Apache download page and download the latest stable version
Spam Marshall SpamWall Step-by-Step Installation Guide for Exchange 5.5
Spam Marshall SpamWall Step-by-Step Installation Guide for Exchange 5.5 What is this document for? This document is a Step-by-Step Guide that can be used to quickly install Spam Marshall SpamWall on Exchange
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
Evaluation. Chapter 1: An Overview Of Ruby Rails. Copy. 6) Static Pages Within a Rails Application... 1-10
Chapter 1: An Overview Of Ruby Rails 1) What is Ruby on Rails?... 1-2 2) Overview of Rails Components... 1-3 3) Installing Rails... 1-5 4) A Simple Rails Application... 1-6 5) Starting the Rails Server...
