Giter Site home page Giter Site logo

ubellavance / zendserverpuppet Goto Github PK

View Code? Open in Web Editor NEW

This project forked from zend-patterns/zendserverpuppet

1.0 2.0 0.0 655 KB

ZendServerPuppet

License: Apache License 2.0

Puppet 75.95% Shell 10.46% PHP 5.54% Pascal 2.33% HTML 0.13% Ruby 2.59% Python 2.99%

zendserverpuppet's Introduction

Server Puppet Module

Table of Contents

  1. Overview
  2. Module Description
  3. Setup
  4. Usage
  5. Further Reference
  6. Limitations
  7. Troubleshooting
  8. Contributing to this module

Overview

The zendserver module allows you to easily manage Zend Server with Puppet.

Module Description

On the first run, this module:

  • Installs Zend Server
  • Installs the desired web server (httpd or nginx), if not already installed
  • Deploys an SDK client (zs-client.phar)
    • Will be discontinued in the future as all supported Zend Server Versions already install it by default, in another location)
    • The usage of /usr/local/zend/bin/zs-client.sh will probably replace the call to the phar
  • "bootstraps" the installation
    • Deploys a file (/usr/local/zend/bin/zs-puppet-common-functions.sh), that contains functions for the bootstrap
    • Sets the license
    • Sets the admin and (optional) developer password for the web admin interface
    • Creates a target
      • A target is an API key/hash pair that is saved in a file, that allow one to do API calls using only the name of the target (does not send the key/hash pair on the network
      • The target info (key/hash) is saved in a file, typically $home/.zsapi.ini. However, when using puppet,there is no $HOME, so the file is in /.zsapi.ini (at the root). This may change in the future.
  • Configures a cluster (or single machine) running Zend Server.
    • Sets up a database for the cluster
  • Creates puppet facts about Zend Server
    • The Zend Server-related facts are managed every puppet run

It can also:

  • Define, deploy, remove or update an application
  • Deploy or remove a library
  • Install/enable/configure a 3rd-party extension (pear, pecl, OS package)
  • Do an API call with the SDK client
  • Execute commands with zs-manage (Using the SDK client should be preferred)
  • Create a target (most likely useless by itself, but used by the bootstrap process)

Zend Server is an integrated PHP application server for mobile and web apps. Zend Server will also install a web server (apache/nginx) if it is not already installed on your system. Check http://www.zend.com for more information about Zend Server.

Setup

Components affected by this module

The module modifies files under the following directories (and sub directories):

  • /usr/local/zend (and all sub-directories).
  • Apache configuration (/etc/apache2 or /etc/httpd depending on distro).
  • Nginx configuration (if relevant).

Setup Requirements

Typically, only vendor-supported (LTS, if applicable) versions are supported and tested with this module.

Puppet dependencies:

  • Puppet version >= 3.4
  • The following puppet-forge modules:
    • puppetlabs/stdlibs
    • puppetlabs/apt (for Debian and Ubuntu)

For a cluster environment, access to a mysql server is required.

Getting started

If you want to get started quickly you can checkout our Vagrant testing box.

This code will:

  1. Install a machine running Ubuntu/Centos/Debian (depending on choice).
  2. Install the latest stable puppet version from puppet labs' repository.
  3. Obtain the puppet module and its dependencies using R10K.
  4. Pass parameters to the Zend Server module using hiera.
  5. Download and install Zend Server onto that machine.
  6. Install mysql.
  7. Bootstrap and join Zend Server on the machine to a cluster (using the local mysql database).
  8. Deploy a sample application to the cluster.

You can also use the testing box as a reference for using puppet in your environment. You can view and modify the following files to customize the vagrant setup:

  • /data/common.yaml - This files contains parameters to be passed to puppet on the Vagrant box (using hiera).
  • /manifests/site.pp - Example puppet manifest which uses the zendserver module.

Module installation

To manually install the module:

  1. Install the dependent modules using the command (puppetlabs/stdlib will be automatically installed as a dependency): sudo puppet module install puppetlabs/apt
  2. Clone the module into your module dir (usually /etc/puppet/modules):

git clone https://github.com/zend-patterns/ZendServerPuppet /etc/puppet/modules/zendserver

If your puppet module dir is a git working copy then define the above repo as a git sub-moudle instead of cloning it. 3. Check your installation using the command: sudo puppet module list

Example output:

  /etc/puppet/modules
  ├── puppetlabs-apt (v1.6.0)
  ├── puppetlabs-stdlib (v4.3.2)
  └── zend-zendserver (v0.2.0)

Alternatively you can use R10K to install the module and dependencies (see the puppet file in the above Vagrant test box for reference.

Usage

For reference about the module's public API (classes and resources that should be used) check: Module API reference or SDK code on Github. The [Zend Server documentation section about the API](http://files.zend.com/help/Zend-Server/content/introduction2.htm may also be useful).

You can check the comments in the code for further information.

Further reference

You can check Zend Server's online help zend-online-help for instructions and more information. R10K Instructions

Limitations

The module is still under testing - please try it on a non-production system first.

  • It is recommended you do not use the module to manage a Zend Server system that was not installed with this module(Such a setup might work but is untested).
  • You should make sure that no other PHP installation is present on the system (such as the distros' php or manually installed versions).
  • Before installing Zend Server for use with Nginx, define the nginx repository: http://nginx.org/en/linux_packages.html#stable. (Without this installation of zend server will fail)
  • The module does not add /usr/local/zend/bin to the search path - you might want to do it yourself.
  • The module is not compatible with the puppetlabs/apache module. Do not use both modules to manage the same node (=server). puppetlabs/apache can be used to manage other nodes.

Troubleshooting

Log output is disabled by default. You may enable it back for debugging purposes:

-      logoutput => false,
+      logoutput => true,

in manifests/sdk/command.pp

Contributing to this module

If you wish to help our efforts you can open issues in the github repository or contribute code. To contribute, please fork the repository and send us a pull-request with your changes using github. You can email [email protected] for further questions.

zendserverpuppet's People

Contributors

aepod avatar clarkphp avatar davidl-zend avatar evsheffield avatar fgerards avatar fwwarr avatar jeremiahsmall avatar lavere avatar michaelkrieg avatar slaff avatar ubellavance avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.