Redmine, Aipo DATAGRAM INC.



Similar documents
OPENPROJECT INSTALL ON CENTOS 7 RUNNING IN VMWARE PLAYER

TestCaseDB Administration Guide. Version 3.1

Redmine Installation on Debian. v1.1

OS Installation: CentOS 5.8

Installing Rails 2.3 Under CentOS/RHEL 5 and Apache 2.2

INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6

Certified Redmine Project Management Professional Sample Material

OpenMind: Know Your Customer

CloudPortal Business Manager 2.2 POC Cookbook

Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4

Ruby on Rails (Ruby 1.9.2, Rails 3.1.1) Installation

vtiger CRM Database UTF-8 Configuration (For MySQL)

Tibbr Installation Addendum for Amazon Web Services

Rancid Server Build and Operation Overview (v0.3) (This is being done from memory so expect some errors)

Moving Drupal to the Cloud: A step-by-step guide and reference document for hosting a Drupal web site on Amazon Web Services

Server Installation/Upgrade Guide

Cloud Homework instructions for AWS default instance (Red Hat based)

Red Hat JBoss Core Services Apache HTTP Server 2.4 Apache HTTP Server Installation Guide

LAMP Quickstart for Red Hat Enterprise Linux 4

Network Infrastructure Security Recommendations

F-Secure Internet Gatekeeper

Newton Linux User Group Graphing SNMP with Cacti and RRDtool

System and Network Monitoring With Zabbix

Cloud.com CloudStack Community Edition 2.1 Beta Installation Guide

Parallels Plesk Automation

Installing and Configuring MySQL as StoreGrid Backend Database on Linux

Web Server using Apache. Heng Sovannarith

Ciphermail Gateway Separate Front-end and Back-end Configuration Guide

StoreGrid Backup Server With MySQL As Backend Database:

Basic Exchange Setup Guide

CN=Monitor Installation and Configuration v2.0

Lucid Key Server v2 Installation Documentation.

Installing Platform RTM. Platform RTM Version Release date: October 2011

Installing Booked scheduler on CentOS 6.5

GroundWork Monitor Open Source Installation Guide

Installation overview

Basic Exchange Setup Guide

owncloud 8 and DigitalOcean Matthew Davidson Bluegrass Linux User Group 03/09/2015

Getting Started with RES Automation Manager Agent for Linux

Document Freedom Workshop DFW 2012: CMS, Moodle and Web Publishing

OpenPro ERP Software Installation Guide REDHAT LINUX

Installing Rails 2.3 Under Windows XP and Apache 2.2

Solr Bridge Search Installation Guide

CentOS. Apache. 1 de 8. Pricing Features Customers Help & Community. Sign Up Login Help & Community. Articles & Tutorials. Questions. Chat.

i2b2: Security Baseline

Installation. Installation centreon + nagios mai LISTE DES PRE-REQUIS. Nagios/centreon Paquets divers. 1.1.

Linux Administrator (Advance)

Omnistar Recruiter Install User Guide (Codelock)

ULTEO OPEN VIRTUAL DESKTOP V4.0

Oracle, the Oracle logo, Java, and MySQL are registered trademarks of the Oracle Corporation and/or its affiliates.

Setup Local Mail Server Using Postfix, Dovecot And Squirrelmail On CentOS 6.5/6.4

Repository Management with Nexus

Cacti complete network graphing solution. Oz Melamed E&M Computing Jun 2009

Intro to Docker for CMS

Configuring MailArchiva with Insight Server

Cybozu Garoon 3 Server Distributed System Installation Guide Edition 3.1 Cybozu, Inc.

Railo Installation on CentOS Linux 6 Best Practices

NGASI Universal APP Panel Administration and User Guide WebAppShowcase DBA NGASI

User Manual of the Pre-built Ubuntu 9 Virutal Machine

WEB2CS INSTALLATION GUIDE

Creating an ESS instance on the Amazon Cloud

Installing and Running MOVES on Linux

Spectrum Technology Platform. Version 9.0. Spectrum Spatial Administration Guide

VERSION 9.02 INSTALLATION GUIDE.

Secure Messaging Server Console... 2

Installation and Control in Linux

Defender Token Deployment System Quick Start Guide

NoMachine Enterprise Products, Cloud Server Installation and Configuration Guide

Alert Notification of Critical Results (ANCR) Public Domain Deployment Instructions

How to Install SMTPSwith Mailer on Centos Server/VPS

Setting Up Specify to use a Shared Workstation as a Database Server

Installation Guide for AmiRNA and WMD3 Release 3.1

SVNManager Installation. Documentation. Department of Public Health Erasmus MC University Medical Center

Migrating LAMP stack from x86 to Power using the Server Consolidation Tool

OnCommand Performance Manager 1.1

Configuring Keystone in OpenStack (Essex)

How to install PowerChute Network Shutdown on VMware ESXi 3.5, 4.0 and 4.1

CloudStack Basic Installation Guide

Enterprise Manager. Version 6.2. Installation Guide

Tableau Spark SQL Setup Instructions

IMPLEMENTATION OF CIPA - PUDUCHERRY UT SERVER MANAGEMENT. Client/Server Installation Notes - Prepared by NIC, Puducherry UT.

First Steps after Installation Guide

Hands-on Lab Exercise Guide

Providing an Effective Intranet Knowledge Base Using Linux and Open Source Software

Migration Manual (For Outlook 2010)

Installation and Control in Linux

Installation and Control in Linux

secure for mobile devices

Network Management & Monitoring Request Tracker (RT) Installation and Configuration

Introduction to CloudScript

Linux: 20 Iptables Examples For New SysAdmins

Amazon EC 2 Cloud Deployment Guide

LAMP : THE PROMINENT OPEN SOURCE WEB PLATFORM FOR QUERY EXECUTION AND RESOURCE OPTIMIZATION. R. Mohanty Mumbai, India

Device Log Export ENGLISH

HOW TO BUILD A VMWARE APPLIANCE: A CASE STUDY

vtiger CRM 4.2 Installation Guide for Linux OS

EZcast Installation guide

Transcription:

Redmine, Aipo 1 DATAGRAM INC. 26 7 7 Redmine Aipo Redmine PDCA plan-do-check-act cycle 1 2 2 Redmine 2 3 Aipo 4 1

1 Android lamp.pdf OS(Linux) : redmine-2.3.3.tar.gz, ruby-2.0.0-p353.tar.gz, aipo7010ja linux32.tar.gz SMTP SMTP gmail /root/wrk/redmine-2.3.3.tar.gz /root/wrk/ruby-2.0.0-p353.tar.gz /root/wrk/aipo7010ja linux32.tar.gz 2 Redmine 1. SELinux # vi /etc/sysconfig/selinux SELINUX=disabled # shutdown -r now 2. 80 # vi /etc/sysconfig/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT # service iptables restart 3. # yum -y groupinstall "Development Tools" # yum -y install openssl-devel readline-devel zlib-devel curl-devel libyaml-devel # yum -y install mysql-server mysql-devel # yum -y install httpd httpd-devel # yum -y install ImageMagick ImageMagick-devel # yum -y install ipa-pgothic-fonts 4. Ruby # tar xvzf ruby-2.0.0-p353.tar.gz # cd ruby-2.0.0-p353 #./configure # make && make install # ruby -v # gem install bundler --no-rdoc --no-ri 5. MySQL # vi /etc/my.cnf [mysqld] character-set-server=utf8 [mysql] default-character-set=utf8 # service mysqld start # chkconfig mysqld on # mysql -uroot 2

mysql> use mysql; mysql> update user set password=password( ) where user = root ; mysql> delete from user where user = ; mysql> flush privileges; mysql> \q # mysql -uroot -p mysql> create database db_redmine default character set utf8; mysql> grant all on db_redmine.* to user_redmine identified by ; mysql> flush privileges; mysql> \q 6. Redmine # tar xvzf redmine-2.3.3.tar.gz # mv redmine-2.3.3 /var/lib/redmine # cd /var/lib/redmine/config # vi database.yml production: adapter: mysql2 database: db_redmine host: localhost username: user_redmine password: encoding: utf8 ### SMTP # vi configuration.yml production: email_delivery: delivery_method: :smtp smtp_settings: enable_starttls_auto: true address: "smtp.gmail.com" port: 587 domain: "smtp.gmail.com" authentication: :plain user_name: "someuser@gmail.com" password: " " rmagick_font_path: /usr/share/fonts/ipa-pgothic/ipagp.ttf # bundle install --without development test # bundle exec rake generate_secret_token # RAILS_ENV=production bundle exec rake db:migrate # gem install passenger --no-rdoc --no-ri # passenger-install-apache2-module # vi /etc/httpd/conf.d/passenger.conf <<< # Passenger # passenger-install-apache2-module --snippet # 3 # LoadModule passenger_module /usr/local/lib/ruby/gems/...... 2.0.0/gems/passenger-4.0.37/buildout/apache2/mod_passenger.so PassengerRoot /usr/local/lib/ruby/gems/2.0.0/gems/passenger-4.0.37 PassengerDefaultRuby /usr/local/bin/ruby # Passenger HTTP # Header always unset "X-Powered-By" Header always unset "X-Rack-Cache" 3

Header always unset "X-Content-Digest" Header always unset "X-Runtime" # Passenger # Phusion Passenger users guide(http://...... www.modrails.com/documentation/users%20guide%20apache.html) PassengerMaxPoolSize 20 PassengerMaxInstancesPerApp 4 PassengerPoolIdleTime 3600 PassengerHighPerformance on PassengerStatThrottleRate 10 PassengerSpawnMethod smart RailsAppSpawnerIdleTime 86400 RailsFrameworkSpawnerIdleTime 0 # chown -R apache:apache /var/lib/redmine # service httpd start # chkconfig httpd on # ln -s /var/lib/redmine/public /var/www/html/redmine # vi /etc/httpd/conf.d/passenger.conf # Redmine RackBaseURI /redmine # service httpd configtest # service httpd restart 7. Redmine (a) admin # cd /var/lib/redmine # ruby script/rails console production > admin_user = User.find_by_login( admin ) > admin_user.password = > admin_user.save! > quit (b) http://192.168.101.254/redmine/login (c) (d) (e) Redmine (f) (g) (h) 3 Aipo Aipo SELinux 1. # yum -y install make gcc readline-devel zlib-devel nmap 2. # vi /etc/sysconfig/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 81 -j ACCEPT # service iptables restart 4

3. Aipo # tar xvzf aipo7010ja_linux32.tar.gz # cd /usr/local # tar xvzf ~/wrk/aipo7010ja_linux/aipo7010.tar.gz # chmod -R 777 aipo # cd aipo/bin #./installer.sh... ==Aipo7.0.1.0 == user:aipo_postgres pass:t360tatmcpid directory:/usr/local/aipo/./postgres port:5432 Aipo URL: http://192.168.101.254:81/aipo/ 4. / # cd /etc/rc.d/init.d/ # vi aipo #!/bin/sh # chkconfig: 2345 99 1 # description: Aipo # processname: Aipo start(){ /usr/local/aipo/bin/startup.sh return 0 } stop(){ /usr/local/aipo/bin/shutdown.sh return 0 } case $1 in start) start ;; stop) stop ;; esac # chmod +x aipo # chkconfig aipo on # service aipo start 5. : admin : admin 5