CC ICT-SUD. Setting up and integrate Apache, MySQL and PHP on a Linux system
|
|
|
- Wendy Hodges
- 10 years ago
- Views:
Transcription
1 LAMP CC ICT-SUD Setting up and integrate Apache, MySQL and PHP on a Linux system
2 Installation Simple Alternative (for development/testing only): Xampp I will assume MySQL is already installed and configured (see related presentation) Arch Linux: # pacman -S apache php php-apache Fedora: # yum install httpd php php-mysql Ubuntu: $ sudo apt-get install php5 apache2
3 Start the service Arch Linux: # /etc/rc.d/httpd start Fedora: # service httpd start Ubuntu $ sudo invoke-rc.d apache2 start Test by visiting in a web browser.
4 Basic Apache Conf (1) Main configuration file Arch Linux, Fedora: /etc/httpd/conf/httpd.conf Ubuntu: /etc/apache2/apache2.conf If you set a hostname different from localhost edit /etc/hosts, e.g. for a local hostname: localhost.localdomain localhost myhostname
5 Document root (2) This is the directory where you should put your web pages Arch Linux: /srv/http Fedora: /var/www/html Ubuntu: /var/www Related directive: DocumentRoot path and <Directory "path"> to grant necessary privileges
6 User directories (3) E.g., ~/public_html on the machine is accessed as enable uncomment these lines in /etc/httpd/conf/extra/httpd-userdir.conf: UserDir public_html <Directory "/home/*/public_html"> AllowOverride FileInfo AuthConfig Limit Indexes Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec <Limit GET POST OPTIONS> Order allow,deny Allow from all </Limit> <LimitExcept GET POST OPTIONS> Order deny,allow Deny from all </LimitExcept> </Directory>
7 User directories (3) You must make sure that your home directory permissions are set properly so that Apache can get there. Your home directory and ~/public_html/ must be executable for others ("rest of the world"). This seems to be enough: $ chmod o+x ~ $ chmod o+x ~/public_html There may be some other, more-secure ways of setting the permissions by creating a special group and allowing only Apache and you to enter there.
8 Enabling PHP support (4) Add these lines in apache2/httpd.conf: LoadModule php5_module modules/libphp5.so Place this at the end of the "Include" list: Include conf/extra/php5_module.conf Restart the Apache service to make changes take effect. Testing: save this file as test.php and copy to document root or to ~/public_html. Go to or <?php phpinfo()?> If the php instruction is not executed add this to your apache2/httpd.conf - normally it's already taken care of: AddType application/x-httpd-php.php AddType application/x-httpd-php-source.phps
9 Basic PHP configuration (1) PHP configuration file: Arch Linux: /etc/php/php.ini Fedora: /etc/php.ini Ubuntu: /etc/php5/apache2/php.ini Restart the Apache service to make changes take effect open_basedir: open_basedir=/srv/ re/pear/
10 Basic PHP configuration (2) enabling extensions: uncomment each line by removing ; ;extensions=mysqli.so ;extension=pdo.so ;extension=pdo_mysql.so Display errors to help debug your php code: display_errors=on don't do it on production web sites!
11 PhpMyAdmin (1) A PHP web-based tool to administrate MySQL over the WWW Features: create and drop databases, create/drop/alter tables, delete/edit/add fields, execute any SQL statement, manage keys on fields, manage privileges, export data into various formats, etc Installation: Arch Linux: # pacman -S phpmyadmin php-mcrypt Fedora: # yum install phpmyadmin Ubuntu: $ sudo apt-get install phpmyadmin Enable extension=mcrypt.so in php.ini
12 PhpMyAdmin (2) Install configuration file: cp /etc/webapps/phpmyadmin/apache.example.conf /etc/httpd/conf/extra/httpd-phpmyadmin.conf Add the following line to /etc/httpd/conf/httpd.conf: Include conf/extra/httpd-phpmyadmin.conf Ensure there is not a line in deny from all in /usr/share/webapps/phpmyadmin/.htaccess
13 PhpMyAdmin (3) Sample httpd-phpmyadmin.conf: Alias /phpmyadmin "/usr/share/webapps/phpmyadmin" <Directory "/usr/share/webapps/phpmyadmin"> AllowOverride All Options FollowSymlinks Order allow,deny Allow from all </Directory> open_basedir in php.ini must include :/usr/share/webapps/:/etc/webapps In config.inc.php: $cfg['servers'][$i]['extension'] = 'mysqli';
14 PhpMyAdmin (4) Advanced features: Query bookmarks Column comments SQL-history Tracking mechanism PDF-generation Field content transformation Relations (even for MyISAM table type)
15 PhpMyAdmin (5) Enabling some advanced features: Define a controluser with the proper rights: GRANT SELECT, INSERT, DELETE, UPDATE ON `phpmyadmin`.* TO 'pma'@localhost IDENTIFIED BY 'some_pass'; Create support database: $ mysql -uroot -p <scripts/create_tables.sql Uncomment some lines in config.inc.php: $cfg['servers'][$i]['pmadb'] = 'phpmyadmin' $cfg['servers'][$i]['relation'] = 'pma_relation' $cfg['servers'][$i]['controlpass'] = 'some_pass'; $cfg['servers'][$i]['controluser'] = 'pma';...
16 LAMP CC ICT-SUD Setting up and integrate Apache, MySQL and PHP on a Linux system 1
17 Installation Simple Alternative (for development/testing only): Xampp I will assume MySQL is already installed and configured (see related presentation) Arch Linux: # pacman -S apache php php-apache Fedora: # yum install httpd php php-mysql Ubuntu: $ sudo apt-get install php5 apache2 2 php: command line PHP interpreter php-apache: Apache SAPI (Server Application Programming Interface) for PHP XAMPP is an easy to install and to use Apache distribution containing MySQL, PHP and Perl. It is available for all the most common OS's (Linux, Windows and Mac OS X)
18 Start the service Arch Linux: # /etc/rc.d/httpd start Fedora: # service httpd start Ubuntu $ sudo invoke-rc.d apache2 start Test by visiting in a web browser. 3
19 Basic Apache Conf (1) Main configuration file Arch Linux, Fedora: /etc/httpd/conf/httpd.conf Ubuntu: /etc/apache2/apache2.conf If you set a hostname different from localhost edit /etc/hosts, e.g. for a local hostname: localhost.localdomain localhost myhostname 4 If you set a hostname and it does not appear in the static hostnames database, apache will fail to start.
20 Document root (2) This is the directory where you should put your web pages Arch Linux: /srv/http Fedora: /var/www/html Ubuntu: /var/www Related directive: DocumentRoot path and <Directory "path"> to grant necessary privileges 5
21 User directories (3) E.g., ~/public_html on the machine is accessed as enable uncomment these lines in /etc/httpd/conf/extra/httpd-userdir.conf: UserDir public_html <Directory "/home/*/public_html"> AllowOverride FileInfo AuthConfig Limit Indexes Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec <Limit GET POST OPTIONS> Order allow,deny Allow from all </Limit> <LimitExcept GET POST OPTIONS> Order deny,allow Deny from all </LimitExcept> </Directory> 6 UserDir: The name of the directory that is appended onto a user's home directory if a ~user request is received. Note that you must also set the default access control for these directories, as in the example below. Control access to UserDir directories. The following is an example for a site where these directories are restricted to read-only. UserDir: Directory-filename: location of the user-specific directories <Directory>: enclose a group of directives that apply only to the named file-system directory and sub-directories AllowOverride: type of directives that are allowed in.htaccess files Options: Configures what features are available in a particular directory <Limit>: Restrict enclosed access controls to only certain HTTP methods <LimitExcept>: Restrict access controls to all HTTP methods except the named ones
22 User directories (3) You must make sure that your home directory permissions are set properly so that Apache can get there. Your home directory and ~/public_html/ must be executable for others ("rest of the world"). This seems to be enough: $ chmod o+x ~ $ chmod o+x ~/public_html There may be some other, more-secure ways of setting the permissions by creating a special group and allowing only Apache and you to enter there. 7
23 Enabling PHP support (4) Add these lines in apache2/httpd.conf: LoadModule php5_module modules/libphp5.so Place this at the end of the "Include" list: Include conf/extra/php5_module.conf Restart the Apache service to make changes take effect. Testing: save this file as test.php and copy to document root or to ~/public_html. Go to or <?php phpinfo()?> If the php instruction is not executed add this to your apache2/httpd.conf - normally it's already taken care of: AddType application/x-httpd-php.php AddType application/x-httpd-php-source.phps 8
24 Basic PHP configuration (1) PHP configuration file: Arch Linux: /etc/php/php.ini Fedora: /etc/php.ini Ubuntu: /etc/php5/apache2/php.ini Restart the Apache service to make changes take effect open_basedir: open_basedir=/srv/ re/pear/ 9
25 Basic PHP configuration (2) enabling extensions: uncomment each line by removing ; ;extensions=mysqli.so ;extension=pdo.so ;extension=pdo_mysql.so Display errors to help debug your php code: display_errors=on don't do it on production web sites! 10 You're strongly advised to use error logging in place of error displaying on production web sites because they could be useful to someone attempting to crack your server.
26 PhpMyAdmin (1) A PHP web-based tool to administrate MySQL over the WWW Features: create and drop databases, create/drop/alter tables, delete/edit/add fields, execute any SQL statement, manage keys on fields, manage privileges, export data into various formats, etc Installation: Arch Linux: # pacman -S phpmyadmin php-mcrypt Fedora: # yum install phpmyadmin Ubuntu: $ sudo apt-get install phpmyadmin Enable extension=mcrypt.so in php.ini 11
27 PhpMyAdmin (2) Install configuration file: cp /etc/webapps/phpmyadmin/apache.example.conf /etc/httpd/conf/extra/httpd-phpmyadmin.conf Add the following line to /etc/httpd/conf/httpd.conf: Include conf/extra/httpd-phpmyadmin.conf Ensure there is not a line in deny from all in /usr/share/webapps/phpmyadmin/.htaccess 12 /etc/webapps/phpmyadmin/ is the location for configuration files pertaining to phpmyadmin
28 PhpMyAdmin (3) Sample httpd-phpmyadmin.conf: Alias /phpmyadmin "/usr/share/webapps/phpmyadmin" <Directory "/usr/share/webapps/phpmyadmin"> AllowOverride All Options FollowSymlinks Order allow,deny Allow from all </Directory> open_basedir in php.ini must include :/usr/share/webapps/:/etc/webapps In config.inc.php: $cfg['servers'][$i]['extension'] = 'mysqli'; 13 Note that if you include a trailing / on the url-path of the Alias directive then the server will require a trailing / in order to expand the alias. That is, if you use Alias /phpmyadmin/ /usr/share/webapps/phpmyadmin/ then the url /phpmyadmin will not be aliased. Select mysqli as extension to use for making phpmyadmin communicating with MySQL, because it is faster than the old mysql extension.
29 PhpMyAdmin (4) Advanced features: Query bookmarks Column comments SQL-history Tracking mechanism PDF-generation Field content transformation Relations (even for MyISAM table type) 14 Bookmarks are useful for queries you often run. Any query you have executed can be stored as a bookmark on the page where the results are displayed. A bookmark is related to the database you run the query on and single variable support is available. You can store comments to describe each column for each table. These will then be shown on the "printview" or as tool-tips above the column names on the table property pages. SQL history means all queries you entered manually into the phpmyadmin interface are saved across navigation sessions. Tracking allows creating versions of tables and logs both DDL and DML SQL commands. You can create PDF graphics of your Database layout. Transform stored data into any format using a set of predefined functions, like displaying BLOB-data as image or download-link
30 PhpMyAdmin (5) Enabling some advanced features: Define a controluser with the proper rights: GRANT SELECT, INSERT, DELETE, UPDATE ON `phpmyadmin`.* TO 'pma'@localhost IDENTIFIED BY 'some_pass'; Create support database: $ mysql -uroot -p <scripts/create_tables.sql Uncomment some lines in config.inc.php: $cfg['servers'][$i]['pmadb'] = 'phpmyadmin' $cfg['servers'][$i]['relation'] = 'pma_relation' $cfg['servers'][$i]['controlpass'] = 'some_pass'; $cfg['servers'][$i]['controluser'] = 'pma';... 15
Document Freedom Workshop 2012. DFW 2012: CMS, Moodle and Web Publishing
Document Freedom Workshop 2012 CMS, Moodle and Web Publishing Indian Statistical Institute, Kolkata www.jitrc.com (also using CMS: Drupal) Table of contents What is CMS 1 What is CMS About Drupal About
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
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
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
CPE111 COMPUTER EXPLORATION
CPE111 COMPUTER EXPLORATION BUILDING A WEB SERVER ASSIGNMENT You will create your own web application on your local web server in your newly installed Ubuntu Desktop on Oracle VM VirtualBox. This is a
Kollaborate Server Installation Guide!! 1. Kollaborate Server! Installation Guide!
Kollaborate Server Installation Guide 1 Kollaborate Server Installation Guide Kollaborate Server is a local implementation of the Kollaborate cloud workflow system that allows you to run the service in-house
Installation of PHP, MariaDB, and Apache
Installation of PHP, MariaDB, and Apache A few years ago, one would have had to walk over to the closest pizza store to order a pizza, go over to the bank to transfer money from one account to another
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
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
Installing Booked scheduler on CentOS 6.5
Installing Booked scheduler on CentOS 6.5 This guide will assume that you already have CentOS 6.x installed on your computer, I did a plain vanilla Desktop install into a Virtual Box VM for this test,
Backup and Restore MySQL Databases
Backup and Restore MySQL Databases As you use XAMPP, you might find that you need to backup or restore a MySQL database. There are two easy ways to do this with XAMPP: using the browser-based phpmyadmin
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
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
Getting the software The Apache webserver can be downloaded free from the Apache website : http://www.apache.org/.
Basic installation of APACHE in Windows This chapter deals with the installation of Apache to be used for ABCD in a Windows environment. At least Windows NT, Windows 2000 or later versions are supposed
Installation Instructions
Installation Instructions 25 February 2014 SIAM AST Installation Instructions 2 Table of Contents Server Software Requirements... 3 Summary of the Installation Steps... 3 Application Access Levels... 3
What will be supplied with chemoventory package?
Requirements... 1 What will be supplied with chemoventory package?... 1 Files structure of /chemoventory... 2 Download PHP, MySQL and Zend optimizer programs... 3 Apache Installation... 3 Apache installation
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
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
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
LAMP : THE PROMINENT OPEN SOURCE WEB PLATFORM FOR QUERY EXECUTION AND RESOURCE OPTIMIZATION. R. Mohanty Mumbai, India
LAMP : THE PROMINENT OPEN SOURCE WEB PLATFORM FOR QUERY EXECUTION AND RESOURCE OPTIMIZATION R. Mohanty Mumbai, India INTRODUCTION TO MAJOR WEB DEVELOPMENT PLATFORMS The concurrent online business transactions
Advantech AE Technical Share Document
Advantech AE Technical Share Document Date 2015 / 07 / 15 SR# Category FAQ SOP Related OS Debian GNU/Linux 5.0 Abstract Keyword Related Product [HOWTO] UNO-1140 - Install FTP server, LAMP, Telnet and PHPmyadmin
C:\www\apache2214\conf\httpd.conf Freitag, 16. Dezember 2011 08:50
This is the main Apache HTTP server configuration file. It contains the configuration directives that give the server its instructions. See for detailed information.
EZcast Installation guide
EZcast Installation guide Document written by > Michel JANSENS > Arnaud WIJNS from ULB PODCAST team http://podcast.ulb.ac.be http://ezcast.ulb.ac.be [email protected] SOMMAIRE SOMMAIRE... 2 1. INSTALLATION
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
Installing OptiRain Open on Macintosh OS X 10.6 (Snow Leopard)
QUICKSMART Installing OptiRain Open on Macintosh OS X 10.6 (Snow Leopard) QuickSmart Development P.O. Box 3689 Santa Clara, CA 95055 408-777-0944 www.quicksmart.com OptiRain Open provides local scheduling
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
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
MAMP 3 User Guide! March 2014 (c) appsolute GmbH!
MAMP 3 User Guide March 2014 (c) appsolute GmbH 1 I. Installation 3 1. Installation requirements 3 2. Installing and upgrading 3 3. Uninstall 3 II. First Steps 4 III. Preferences 5 Start/Stop 5 2. Ports
PassMark Software BurnInTest Management Console. Quick start guide
PassMark Software BurnInTest Management Console Quick start guide Edition: 1.1 Date: 16 August 2013 BurnInTest Version: 7.1.1011+ BurnInTest is a trademark of PassMark software Overview For BurnInTest
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
Building Website with Drupal 7
Building Website with Drupal 7 Building Web based Application Quick and Easy Hari Tjahjo This book is for sale at http://leanpub.com/book1-en This version was published on 2014-08-25 This is a Leanpub
OpenEyes - Windows Server Setup. OpenEyes - Windows Server Setup
OpenEyes - Windows Server Setup Editors: G W Aylward Version: 0.9: Date issued: 4 October 2010 1 Target Audience General Interest Healthcare managers Ophthalmologists Developers Amendment Record Issue
The Whole OS X Web Development System
The Whole OS X Web Development Title slide Building PHP/MySQL Web Databases for OS X Scot Hacker Webmaster, UC Berkeley s Graduate School of Journalism The Macworld Conference on Dreamweaver January 6-7,
UQC103S1 UFCE47-20-1. Systems Development. uqc103s/ufce47-20-1 PHP-mySQL 1
UQC103S1 UFCE47-20-1 Systems Development uqc103s/ufce47-20-1 PHP-mySQL 1 Who? Email: [email protected] Web Site www.cems.uwe.ac.uk/~jedawson www.cems.uwe.ac.uk/~jtwebb/uqc103s1/ uqc103s/ufce47-20-1 PHP-mySQL
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)
Matlab Web Server Installation and Configuration Guide
We reserve all rights in this document and in the information contained therein. Reproduction,use or disclosure to third parties without express authority is strictly forbidden. ABB Process Industries;
Tonido Cloud Admin Guide
CODELATHE LLC Tonido Cloud Admin Guide Installing and Managing Tonido Cloud CodeLathe LLC 10/27/2012 (c) CodeLathe LLC 2012. All Rights Reserved Contents 1. Introduction... 3 2. Pre-Requisites... 3 3.
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,
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,
SQL Injection Attack Lab Using Collabtive
Laboratory for Computer Security Education 1 SQL Injection Attack Lab Using Collabtive (Web Application: Collabtive) Copyright c 2006-2011 Wenliang Du, Syracuse University. The development of this document
Ulteo Open Virtual Desktop Installation
Ulteo Open Virtual Desktop Installation Copyright 2008 Ulteo SAS - CONTENTS CONTENTS Contents 1 Prerequisites 2 1.1 Installation of MySQL....................................... 2 2 Session Manager (sm.ulteo.com)
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
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
SETTING UP A LAMP SERVER REMOTELY
SETTING UP A LAMP SERVER REMOTELY It s been said a million times over Linux is awesome on servers! With over 60 per cent of the Web s servers gunning away on the mighty penguin, the robust, resilient,
Modelling with R and MySQL. - Manual - Gesine Bökenkamp, Frauke Wiese, Clemens Wingenbach
Modelling with R and MySQL - Manual - Gesine Bökenkamp, Frauke Wiese, Clemens Wingenbach October 27, 2014 1 Contents 1 Software Installation 3 1.1 Database...................................... 3 1.1.1
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
How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu
How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu Tagged In: Ubuntu, My Sql, Apache, Php, Lamp Stack About LAMP LAMP stack is a group of open source software used to get web servers up and
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
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
Setting up a Web Server using Raspbian Wheezy on the Raspberry Pi ( Kenneth A Spencer)
Setting up a Web Server using Raspbian Wheezy on the Raspberry Pi ( Kenneth A Spencer) To use the Raspbian Wheezy distribution of the Debian Linux release of Wheezy, for the Raspberry Pi, as a web server
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
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
How To Install Amyshelf On Windows 2000 Or Later
Contents I Table of Contents Part I Document Overview 2 Part II Document Details 3 Part III Setup 4 1 Download & Installation... 4 2 Configure MySQL... Server 6 Windows XP... Firewall Settings 13 3 Additional
Installation documentation for Ulteo Open Virtual Desktop
Installation documentation for Ulteo Open Virtual Desktop Copyright 2008 Ulteo SAS - 1 PREREQUISITES CONTENTS Contents 1 Prerequisites 1 1.1 Installation of MySQL.......................................
PacsOne Server Installation Guide. Author(s): Xiaohui Li Revision: 6.4.4
PacsOne Server Installation Guide Author(s): Xiaohui Li Revision: 6.4.4 GLOSSARY PACS DICOM HTML HTTP PHP NEMA AE WAMP Picture Archive and Communication System Digital Imaging and Communications in Medicine
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
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
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.
Getting Started with Dynamic Web Sites
PHP Tutorial 1 Getting Started with Dynamic Web Sites Setting Up Your Computer To follow this tutorial, you ll need to have PHP, MySQL and a Web server up and running on your computer. This will be your
Getting started with PrestaShop 1.4
Getting started with PrestaShop 1.4 Whether you are a computer expert or a novice, the PrestaShop e- Commerce solution lets you take any business online. Since PrestaShop can be accessed from any computer
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
Build it with Drupal 8
Build it with Drupal 8 Comprehensive guide for building common websites in Drupal 8. No programming knowledge required! Antonio Torres This book is for sale at http://leanpub.com/drupal-8-book This version
GestióIP IPAM v3.0 IP address management software Installation Guide v0.1 www.gestioip.net
GestióIP IPAM v3.0 IP address management software Installation Guide v0.1 www.gestioip.net GestióIP Copyright Marc Uebel 2011 Table of Contents 1 Introduction... 3 2 Requirements... 3 3 Installation...
Setup Local Mail Server Using Postfix, Dovecot And Squirrelmail On CentOS 6.5/6.4
Setup Local Mail Server Using Postfix, Dovecot And Squirrelmail On CentOS 6.5/6.4 For this tutorial, I use CentOS 6.5 32 bit minimal installation, with SELinux disabled. My test box details are given below.
TIMETABLE ADMINISTRATOR S MANUAL
2015 TIMETABLE ADMINISTRATOR S MANUAL Software Version 5.0 BY GEOFFPARTRIDGE.NET TABLE OF CONTENTS TOPIC PAGE 1) INTRODUCTION 1 2) TIMETABLE SPECIFICATIONS 1 3) SOFTWARE REQUIRED 1 a. Intranet Server (XAMPP
MAMP PRO 3 - User Guide! March 2014 (c) appsolute GmbH!
MAMP PRO 3 - User Guide March 2014 (c) appsolute GmbH 1 I. What is MAMP PRO? 3 II. Installation 3 1. Installation requirements 3 2. Installing and upgrading MAMP PRO 3 3. Uninstall 4 III. First Steps 4
MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server
MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server November 6, 2008 Group Logic, Inc. 1100 North Glebe Road, Suite 800 Arlington, VA 22201 Phone: 703-528-1555 Fax: 703-528-3296 E-mail:
SQL Injection Attack Lab
Laboratory for Computer Security Education 1 SQL Injection Attack Lab Copyright c 2006-2010 Wenliang Du, Syracuse University. The development of this document is funded by the National Science Foundation
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
The only skill required really is to locate and edit text-files with a text-editor like Notepad.
Installation of ABCD in WAMP Introduction This guide will illustrate and give instructions on how to install the ABCD software based on a WAMP istallation. It is perfectly possible to integrate both types
FireBLAST Email Marketing Solution v2
Installation Guide WELCOME to fireblast, one of the Industry s leading Email Marketing Software Solutions for your business. Whether you are creating a small email campaign, or you are looking to upgrade
Fermilab Central Web Service Site Owner User Manual. DocDB: CS-doc-5372
Fermilab Central Web Service Site Owner User Manual DocDB: CS-doc-5372 1 Table of Contents DocDB: CS-doc-5372... 1 1. Role Definitions... 3 2. Site Owner Responsibilities... 3 3. Tier1 websites and Tier2
Installing Apache, MySQL, PHP, and PECL on Windows
A P P E N D I X A Installing Apache, MySQL, PHP, and PECL on Windows Throughout the book, we outlined methods of improving different web servers and database configurations but stopped short of outlining
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
Digital Downloads Pro
Digital Downloads Pro [Install Manual] Start Requirements Install What s New About Created: 24/09/2014 By: wojoscripts.com http://wojoscripts.com/ddp/ Thank you for your purchase! If you have any questions
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
AJ Matrix V5. Installation Manual
AJ Matrix V5 Installation Manual AJ Square Consultancy Services (p) Ltd., The Lord's Garden, #1-12, Vilacheri Main Road, Vilacheri, Madurai-625 006.TN.INDIA, Ph:+91-452-3917717, 3917790. Fax : 2484600
Written by: Johan Strand, Reviewed by: Chafic Nassif, Date: 2006-04-26. 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
CTIS486 Midterm Solution 23/07/2012 - Akgül
Surname, Name: Section: Student No: Closed Book, closed note exam. Show your work! we must follow your reasoning. You are required to write down commands with necessary arguments and options. Give the
MOODLE Installation on Windows Platform
Windows Installation using XAMPP XAMPP is a fully functional web server package. It is built to test web based programs on a personal computer. It is not meant for online access via the web on a production
INSTALLING, CONFIGURING, AND DEVELOPING WITH XAMPP
INSTALLING, CONFIGURING, AND DEVELOPING WITH XAMPP by Dalibor D. Dvorski, March 2007 Skills Canada Ontario DISCLAIMER: A lot of care has been taken in the accuracy of information provided in this article,
Greenstone Documentation
Greenstone Documentation Web library and Remote Collection Building with GLI Client Web Library. This enables any computer with an existing webserver to serve pre-built Greenstone collections. As with
OpenPro ERP Software Installation Guide 10061 Talbert Ave Suite 200 Fountain Valley, CA 92708 USA Phone 714-378-4600 Fax 714-964-1491
OpenPro ERP Software Installation Guide 10061 Talbert Ave Suite 200 Fountain Valley, CA 92708 USA Phone 714-378-4600 Fax 714-964-1491 www.openpro.com [email protected] OpenPro Installation of Software
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
OpenCATS Documentation
OpenCATS Documentation Release 0.9.3 Stacey Boyer May 25, 2016 Contents 1 WARNING-READ FIRST 3 2 Contents 5 3 1. Preface 7 3.1 What is this manual?........................................... 7 3.2 Release
While are you still in Nagios working directory, create a new file for DNS servers monitoring
NAGIOS MONITORING ----------------- On AUTH1 server 1. Go to Nagios working directory $ cd /usr/local/etc/nagios 2. Copy Nagios sample files To do this, make sure you are in Nagios working directory from
User Guide Zend Server Community 4.0.3
User Guide Zend Server Community 4.0.3 By Zend Technologies www.zend.com Table of Contents Abstract... 1 Password Management... 1 Support... 2 Zend Support Center... 2 Administration Interface... 3 General
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
Install & Configure Apache with PHP, JSP and MySQL on Windows XP Pro
Install & Configure Apache with PHP, JSP and MySQL on Windows XP Pro Jeff Lundberg [email protected] This is a quick guide to install and configure the Apache web-server with PHP and JSP support on
SNPsyn documentation. Release 1.1b. Tomaž Curk Gregor Rot Davor Sluga Uroš Lotrič Blaž Zupan
SNPsyn documentation Release 1.1b Tomaž Curk Gregor Rot Davor Sluga Uroš Lotrič Blaž Zupan March 05, 2013 CONTENTS 1 Virtual server image 1 1.1 Install Linux server..........................................
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...................................
SQL Injection. Blossom Hands-on exercises for computer forensics and security
Copyright: The development of this document is funded by Higher Education of Academy. Permission is granted to copy, distribute and /or modify this document under a license compliant with the Creative
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
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
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,
See the installation page http://wiki.wocommunity.org/display/documentation/deploying+on+linux
Linux Installation See the installation page http://wiki.wocommunity.org/display/documentation/deploying+on+linux Added goodies (project Wonder) Install couple of more goodies from Wonder. I Installed
Sugar Open Source Installation Guide. Version 4.5.1
Sugar Open Source Installation Guide Version 4.5.1 Sugar Open Source Installation Guide Version 4.5.1, 2007 Copyright 2004-2007 SugarCRM Inc. www.sugarcrm.com This document is subject to change without
