Koha su Centos 6.3 i386 (installazione in locale)

Size: px
Start display at page:

Download "Koha 3.10.03 su Centos 6.3 i386 (installazione in locale)"

Transcription

1 Koha su Centos 6.3 i386 (installazione in locale) Indice CENTOS...1 APACHE...1 MYSQL...2 PERL...2 PHP...2 PRE-INSTALLATION SETUP...3 PHPMYADMIN...3 KOHA...4 HTTPD - KOHA...8 CREARE UN DATABASE...8 SET UP ADMIN INTERFACE...12 ZEBRA...18 REINDEX...19 DAEMON...19 ZEBRA - DAEMON...19 CAMBIARE I DATI DI DEFAULT DEL DATABASE...19 PATRON...20 CRONJOB...20 CENTOS 1. Scaricare CentOS e, dopo averlo scritto su un USB, installare la versione Live su una partizione CentOS-6.3-i386-LiveCD.iso 2. Verifica della versione dei CentOS # cat /etc/issue CentOS release 6.3 (Final) Kernel \r on an \m APACHE 3. Installare Apache # yum install httpd 4. Settare Apache in modo che parta al boot del sistema # chkconfig --levels 235 httpd on 5. Far partire Apache #service httpd start 6. Testare Apache digitare localhost nel browser e visualizzare la pagina Test di Apache 1

2 MYSQL 7. Installare MySQL # yum install mysql mysql-server 8. Far partire MySQL #service mysqld start 9. Mettere in sicurezza l installazione di MySQL # /usr/bin/mysql_secure_installation Set root password? [Y/n] y Remove anonymous users? [Y/n] y Disallow root login remotely? [Y/n] y Remove test database and access to it? [Y/n] y Reload privilege tables now? [Y/n] y 10. Provare ad accedere a MySQL # mysql -p enter the root password > exit 11. Settare MySQL in modo che parta al boot del sistema # chkconfig --levels 235 mysqld on PERL 12. Installare Perl # yum install perl 13. Verifica della versione di Perl # rpm -qa perl perl el6.i686 PHP 14. Installare PHP # yum install php Configurare PHP # vim /etc/php.ini [sostituire] memory_limit = 16M [con] memory_limit = 128M [sostituire] max_execution_time = 30 [con] max_execution_time = 120 [sostituire] upload_max_filesize = 2M [con] upload_max_filesize = 50M [sostituire] post_max_size = 8M [con] post_max_size = 50M # mkdir /usr/share/phpinfo # vim /usr/share/phpinfo/index.php <?php phpinfo();?> # chmod 0755 /usr/share/phpinfo/index.php #vim /etc/httpd/conf.d/phpinfo.conf # phpinfo - PHP utility function for displaying php configuration # # Allows only localhost by default 2

3 Alias /phpinfo /usr/share/phpinfo <Directory /usr/share/phpinfo/> order deny,allow deny from all allow from </Directory> Riavviare Apache # service httpd restart Testare PHP digitare localhost/phpinfo nel browser e visualizzare la pagina di output PHP PRE-INSTALLATION SETUP 15. Aggiornare il sistema # yum -y update (In caso si blocchi l'aggiornamento e yum rimanga in esecuzione digitare, come root, # yum-complete-transaction --cleanup-only) 16. Set up di EPEL and RPMForge. (Per facilitare l installazione dei moduli Perl con RPM piuttosto che con Cpan) # rpm --install ' 6-8.noarch.rpm' # rpm --install ' el6.rf.i686.rpm' 17. Installare alcuni rpms non compresi nell installazione di Centos, ma richiesti da Koha # yum -y install libyaz libyaz-devel perl-cpan perl-cpan-meta-yaml gcc GraphicsMagick-perl # yum -y install --disablerepo=rpmforge,epel 'perl-*' # yum -y --enablerepo=rpmforge-extras install perl-yaml Fissare l installazione di GraphicsMagic # cd /usr/lib/perl5/auto/graphics/magick # mv Magick.so Magick-0.so # ld -share -o Magick.so `pwd`/magick-0.so /usr/lib/libgraphicsmagick.so.3.6.0) PHPMYADMIN 18. Installare PhpMyAdmin # yum search phpmyadmin # yum -y install phpmyadmin.noarch 19. Riavviare Apache # service httpd restart 20. Testare PHPMyAdmin digitare localhost/phpmyadmin nel browser, inserire i dati di accesso e visualizzare la pagina di PHPMyAdmin 3

4 KOHA 21. Aggiunggere un nuovo user koha # useradd koha # passwd koha 22. Scaricare e decomprimere Koha # wget # tar xvf koha-latest.tar.gz 23. Installare "Development Tools" (per installare i moduli perl richiesti da Koha) # yum groupinstall "Development Tools" 24. Installare le dipendenze (usare lo script koha_perl_deps.pl per sapere quali moduli scaricare da EPEL and RPMForge. Non si specifichino singoli moduli, così che lo script valga anche quando quelli richiesti da Koha cambieranno) # cd koha # perl koha_perl_deps.pl -m grep 'Yes' sed -e 's/::/-/g' awk '{print "yum -y install perl-"$1}' > perl-pkgs-install # sh perl-pkgs-install 25. Configurare CPAN per dire yes automaticamente e seguire e installare tutte le dipendenze in automatico # perl -MCPAN -e shell > o conf build_requires_install_policy yes > o conf prerequisites_policy follow > o conf commit > exit Installare i moduli richiesti da Koha # cd koha # perl koha_perl_deps.pl -m grep 'Yes' awk '{print "cpan -i -f "$1}' > perlmodules-install # sh perl-modules-install 26. Installare gli ultimi moduli rimasti con cpan # cd koha # perl koha_perl_deps.pl -u -m # cpan AnyEvent AnyEvent::HTTP CGI::Session::Driver::memcached CHI CHI::Driver::Memcached Cache::Memcached::Fast DBD::SQLite2 Data::Pagination Data::Paginator JSON::Any Memoize::Memcached Moose MooseX::Storage MooseX::Types Net::Server Net::Z3950::ZOOM SMS::Send String::RewritePrefix Test::Strict Test::YAML::Valid Time::Progress UNIVERSAL::require DateTime DateTime::TimeZone Risolvere il problema con il modulo Net::Z3950::ZOOM che non si installa: [fonte] [/fonte] Scaricare da il pacchetto: "tcp_wrappers-devel el6.i686.rpm" # wget ftp://rpmfind.net/linux/centos/6.3/os/i386/packages/tcp_wrappers-devel el6.i686.rpm [cartella dove si è scaricato]# rpm --install tcp_wrappers-devel el6.i686.rpm # cd koha

5 # perl koha_perl_deps.pl -u -m # cpan Net::Z3950::ZOOM 27. Installare Koha # cd koha # perl Makefile.PL unable to locate Koha configuration file koha-conf.xml at /koha /c4/context.pm line 360. By default, Koha can be installed in one of three ways: standard: Install files in conformance with the Filesystem Hierarchy Standard (FHS). This is the default mode and should be used when installing a production Koha system. On Unix systems, root access is needed to complete a standard installation. single: dev: Install files under a single directory. This option is useful for installing Koha without root access, e.g., on a web host that allows CGI scripts and MySQL databases but requires the user to keep all files under the user's HOME directory. Create a set of symbolic links and configuration files to allow Koha to run directly from the source distribution. This mode is useful for developers who want to run Koha from a git clone. Installation mode (dev, single, standard) [standard] Please specify the directory under which most Koha files will be installed. Note that if you are planning in installing more than one instance of Koha, you may want to modify the last component of the directory path, which will be used as the package name in the FHS layout. Base installation directory [/usr/share/koha] Since you are using the 'standard' install mode, you should run 'make install' as root. However, it is recommended that a non-root user (on Unix and Linux platforms) have ownership of Koha's files, including the Zebra indexes if applicable. Please specify a user account. This user account does not need to exist right now, but it needs to exist before you run 'make install'. Please note that for security reasons, this user should not be the same as the user account Apache runs under. User account [koha] Please specify the group that should own Koha's files. As above, this group need not exist right now, but should be created before you run 'make install'. Group [koha] Please specify which database engine you will use to store data in Koha. The choices are MySQL and PostgreSQL; please note that at the moment PostgreSQL support is highly experimental. DBMS to use (Pg, mysql) [mysql] Please specify the name or address of your database server. Note that the database does not have to exist at this point, it can be created after running 'make install' and before you try using Koha for the first time. Database server [localhost] Please specify the port used to connect to the DMBS [3306] Please specify the name of the database to be used by Koha [koha] Please specify the user that owns the database to be 5

6 used by Koha [kohaadmin] Please specify the password of the user that owns the database to be used by Koha [katikoan] Koha can use the Zebra search engine for high-performance searching of bibliographic and authority records. If you have installed the Zebra software and would like to use it, please answer 'yes' to the following question. Otherwise, Koha will default to using its internal search engine. Please note that if you choose *NOT* to install Zebra, koha-conf.xml will still contain some references to Zebra settings. Those references will be ignored by Koha. Install the Zebra configuration files? (no, yes) [yes] Unable to find the Zebra programs 'zebrasrv' and 'zebraidx' in your PATH or in some of the usual places. If you haven't installed Zebra yet, please do so and run Makefile.PL again. Since you've chosen to use Zebra with Koha, you must specify the primary MARC format of the records to be indexed by Zebra. Koha provides Zebra configuration files for MARC21, NORMARC and UNIMARC. MARC format for Zebra indexing (marc21, normarc, unimarc) [marc21] Koha supplies Zebra configuration files tuned for searching either English (en) or French (fr) MARC records. Primary language for Zebra indexing (en, fr, nb) [en] Koha can use one of two different indexing modes for the MARC bibliographic records: grs1 - uses the Zebra GRS-1 filter, available for legacy support dom - uses the DOM XML filter; offers improved functionality. Bibliographic indexing mode (dom, grs1) [dom] Koha can use one of two different indexing modes for the MARC authorities records: grs1 - uses the Zebra GRS-1 filter, available for legacy support dom - uses the DOM XML filter; offers improved functionality. Authorities indexing mode (dom, grs1) [dom] Zebra has two methods to perform records tokenization and characters normalization: CHR and ICU. ICU is recommended for catalogs containing non-latin characters. (chr, icu) [chr] Please specify Zebra database user [kohauser] Please specify the Zebra database password [zebrastripes] Since you've chosen to use Zebra, you can enable the SRU/ Z39.50 Server if you so choose, but you must specify a few configuration options for it. Please note that if you choose *NOT* to configure SRU, koha-conf.xml will still contain some references to SRU settings. Those references will be ignored by Koha. Install the SRU configuration files? (no, yes) [yes] SRU Database host? [localhost] SRU port for bibliographic data? [9998] SRU port for authority data? [9999] Since you've chosen to use Zebra, you can also choose to install PazPar2, which is a metasearch tool. With PazPar2, Koha can perform on-the-fly merging of bibliographic records during searching, allowing for FRBRization of the results list. 6

7 Install the PazPar2 configuration files? [no] Use memcached and memoize to cache the results of some function calls? This provides a signficant performance improvement. You will need a Memcached server running. (no, yes) [no] Would you like to run the database-dependent test suite? (no, yes) [no] Koha will be installed with the following configuration parameters: AUTH_INDEX_MODE dom BIB_INDEX_MODE dom DB_HOST localhost DB_NAME koha DB_PASS katikoan DB_PORT 3306 DB_TYPE mysql DB_USER kohaadmin INSTALL_BASE /usr/share/koha INSTALL_MODE standard INSTALL_PAZPAR2 no INSTALL_SRU yes INSTALL_ZEBRA yes KOHA_GROUP koha KOHA_INSTALLED_VERSION KOHA_USER koha RUN_DATABASE_TESTS no USE_MEMCACHED no ZEBRA_LANGUAGE en ZEBRA_MARC_FORMAT marc21 ZEBRA_PASS zebrastripes ZEBRA_SRU_AUTHORITIES_POR9999 ZEBRA_SRU_BIBLIOS_PORT 9998 ZEBRA_SRU_HOST localhost ZEBRA_TOKENIZER chr ZEBRA_USER kohauser and in the following directories: BACKUP_DIR DOC_DIR INTRANET_CGI_DIR INTRANET_TMPL_DIR INTRANET_WWW_DIR KOHA_CONF_DIR LOG_DIR MAN_DIR MISC_DIR OPAC_CGI_DIR OPAC_TMPL_DIR OPAC_WWW_DIR PAZPAR2_CONF_DIR PERL_MODULE_DIR SCRIPT_DIR SCRIPT_NONDEV_DIR ZEBRA_CONF_DIR ZEBRA_DATA_DIR ZEBRA_LOCK_DIR ZEBRA_RUN_DIR $(DESTDIR)/var/spool/koha $(DESTDIR)/usr/share/koha/doc $(DESTDIR)/usr/share/koha/intranet/cgi-bin $(DESTDIR)/usr/share/koha/intranet/htdocs/intranet-tmpl $(DESTDIR)/usr/share/koha/intranet/htdocs $(DESTDIR)/etc/koha $(DESTDIR)/var/log/koha $(DESTDIR)/usr/share/koha/man $(DESTDIR)/usr/share/koha/misc $(DESTDIR)/usr/share/koha/opac/cgi-bin $(DESTDIR)/usr/share/koha/opac/htdocs/opac-tmpl $(DESTDIR)/usr/share/koha/opac/htdocs $(DESTDIR)/etc/koha/pazpar2 $(DESTDIR)/usr/share/koha/lib $(DESTDIR)/usr/share/koha/bin $(DESTDIR)/usr/share/koha/bin $(DESTDIR)/etc/koha/zebradb $(DESTDIR)/var/lib/koha/zebradb $(DESTDIR)/var/lock/koha/zebradb $(DESTDIR)/var/run/koha/zebradb To change any configuration setting, please run perl Makefile.PL again. To override one of the target directories, you can do so on the command line like this: perl Makefile.PL PERL_MODULE_DIR=/usr/share/perl/5.10 You can also set different default values for parameters or override directory locations by using environment variables. For example: export DB_USER=my_koha perl Makefile.PL or DB_USER=my_koha DOC_DIR=/usr/local/info perl Makefile.PL If installing on a Win32 platform, be sure to use: 'dmake -x MAXLINELENGTH=300000' Writing Makefile for koha Writing MYMETA.yml and MYMETA.json 28. Make Koha 7

8 # cd koha # make 29. Make install Koha # cd koha # make install 30. Esportare le variabili relative a Koha # vim /etc/profile.d/koha.tcsh setenv KOHA_CONF /etc/koha/koha-conf.xml setenv PERL5LIB /usr/share/koha/lib # vim /etc/profile.d/koha.sh export KOHA_CONF=/etc/koha/koha-conf.xml export PERL5LIB=/usr/share/koha/lib HTTPD - KOHA 31. Settare Koha su HTTPD # ln -s /etc/koha/koha-httpd.conf /etc/httpd/conf.d/ # vim /etc/httpd/conf/httpd.conf Listen Settare un http_context: # chcon -t httpd_sys_content_t /usr/share/koha/intranet/cgi-bin/* -R # chcon -t httpd_sys_content_t /usr/share/koha/opac/cgi-bin/* -R 33. Riavviare Apache: # service httpd restart CREARE UN DATABASE 34. Creare il database Koha Login in Aggiungere un database "koha" Aggiungere un utente "kohaadmin" con password "katikoan" con tutti i privilegi sul database "koha" 8

9 9

10 10

11 11

12 SET UP ADMIN INTERFACE 34. Andare a per terminare l installazione 12

13 13

14 14

15 15

16 16

17 17

18 ZEBRA 35. Installare Yaz # wget # rpm -ivh yaz indexdata.src.rpm # cd /root/rpmbuild/sources # tar xvf yaz tar.gz # cd yaz #./configure # make # make install 36. Installare Libicu # yum install libicu-devel 37. Installare Zebra # wget # rpm -ivh idzebra indexdata.src.rpm # cd /root/rpmbuild/sources # tar xvf idzebra tar.gz # cd idzebra #./configure # make # make install 38. Cambiare le Path # vim /usr/share/koha/bin/koha-zebra-ctl.sh ZEBRASRV=/usr/local/bin/zebrasrv # vim /etc/koha/zebradb/zebra-authorities.cfg - zebra-authorities-dom.cfg - zebra-biblios.cfg - zebra-biblios-dom.cfg modulepath: /usr/local/lib/idzebra-2.0/modules 39. Permission on folder # cd /var/log/koha 18

19 # chown -R koha.. # cd /var/run/koha # chown -R koha.. # cd /var/lock/koha # chown -R koha.. REINDEX 40. Creare alcuni record (authorities e biblios) in Koha e fare un reindex totale: # su koha # cd /usr/share/koha/bin/ $ migration_tools/rebuild_zebra.pl -b -a -v -r DAEMON 41. Installare il tool daemon # wget # tar xvf daemon tar.gz # cd daemon #./config # make # make test # make install ZEBRA - DAEMON 42. Situazione iniziale # ps aux grep zebra root pts/0 S+ 02:22 0:00 grep zebra 43. Zebra - Demone # ln -s /usr/share/koha/bin/koha-zebra-ctl.sh /etc/init.d/koha-zebra-daemon # chkconfig --add koha-zebra-daemon # chkconfig koha-zebra-daemon on # su koha $ /etc/init.d/koha-zebra-daemon start $ ps aux grep zebra koha ? S 07:34 0:00 daemon --name=koha-zebra-ctl.koha --errlog=/var/log/koha/koha-zebradaemon.err --stdout=/var/log/koha/kohazebradaemon.log --output=/var/log/koha/koha-zebradaemon-output.log --verbose=1 --respawn --delay=30 --user=koha.koha -- usr/local/bin/zebrasrv -v none,fatal,warn -f /etc/koha/koha-conf.xml koha ? S 07:36 0:00 usr/local/bin/zebrasrv -v none,fatal,warn -f /etc/koha/koha-conf.xml root pts/0 S+ 07:45 0:00 grep zebra CAMBIARE I DATI DI DEFAULT DEL DATABASE 44. Cambiare in #vim /etc/koha/koha-conf.xml i dati di accesso al database (kohaadmin; katikoan) 43. Eliminare da Phpmyadmin l'utente kohaadmin e farne uno con i dati di quello settato in koha-conf.xml 19

20 PATRON 45. Dal pannello di controllo di Koha creare un Patron amministratore del sistema per non entrare con l'utente del database CRONJOB 46. Settare un Cronjob per il reindex dei record /]# env HOSTNAME=host.creacomstudio.net TERM=xterm SHELL=/bin/bash HISTSIZE=1000 SSH_CLIENT= PERL5LIB=/usr/share/koha/lib OLDPWD=/root SSH_TTY=/dev/pts/2 USER=root LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37; 41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31: *.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31: *.xz=01;31:*.bz2=01;31:*.tbz=01;31:*.tbz2=01;31:*.bz=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01 ;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*. pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=0 1;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35 :*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb =01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=0 1;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36: MAIL=/var/spool/mail/root PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin PWD=/ LANG=en_US.UTF-8 KOHA_CONF=/etc/koha/koha-conf.xml HISTCONTROL=ignoredups SHLVL=1 HOME=/root LOGNAME=root CVS_RSH=ssh SSH_CONNECTION= LESSOPEN= /usr/bin/lesspipe.sh %s G_BROKEN_FILENAMES=1 _=/bin/env e poi: [root@host /]#su koha [koha@host /]$ crontab -e PERL5LIB=/usr/share/koha/lib KOHA_CONF=/etc/koha/koha-conf.xml */1 * * * * PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin; /usr/share/koha/bin/migration_tools/rebuild_zebra.pl -b -a -z >/dev/null [gli a capo non vanno fatti] Ulteriore documentazione di riferimento 20

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 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

More information

LAMP Quickstart for Red Hat Enterprise Linux 4

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,

More information

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

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

More information

http://cnmonitor.sourceforge.net CN=Monitor Installation and Configuration v2.0

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

More information

Koha 3 Library Management System

Koha 3 Library Management System P U B L I S H I N G community experience distilled Koha 3 Library Management System Savitra Sirohi Amit Gupta Chapter No.4 "Koha's Web Installer, Crontab, and Other Server Configurations" In this package,

More information

Web Server using Apache. Heng Sovannarith heng_sovannarith@yahoo.com

Web Server using Apache. Heng Sovannarith heng_sovannarith@yahoo.com Web Server using Apache Heng Sovannarith heng_sovannarith@yahoo.com Introduction The term web server can refer to either the hardware (the computer) or the software (the computer application) that helps

More information

Installing Booked scheduler on CentOS 6.5

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,

More information

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 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

More information

Newton Linux User Group Graphing SNMP with Cacti and RRDtool

Newton Linux User Group Graphing SNMP with Cacti and RRDtool Newton Linux User Group Graphing SNMP with Cacti and RRDtool Summary: Cacti is an interface that can be used to easily manage the graphing of SNMP data. These graphs allow you to visualize performance

More information

OPENPROJECT INSTALL ON CENTOS 7 RUNNING IN VMWARE PLAYER

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

More information

PassBy[ME] - Bugzilla integration on

PassBy[ME] - Bugzilla integration on PassBy[ME] - Bugzilla integration on CentOS 6.5 operating system Document id: PBM_06 Version: 1.2 Author: Microsec Ltd. Date: February 2, 2015 1 Table of contents 1 Introduction... 4 1.1 PassBy[ME] and

More information

INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6

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...................................

More information

Installation Guide for AmiRNA and WMD3 Release 3.1

Installation Guide for AmiRNA and WMD3 Release 3.1 Installation Guide for AmiRNA and WMD3 Release 3.1 by Joffrey Fitz and Stephan Ossowski 1 Introduction This document describes the installation process for WMD3/AmiRNA. WMD3 (Web Micro RNA Designer version

More information

OS Installation: CentOS 5.8

OS Installation: CentOS 5.8 OS Installation: CentOS 5.8 OpenTUSK Training University of Nairobi Mike Prentice michael.prentice@tufts.edu Tufts University Technology for Learning in the Health Sciences July 2013 Outline 1 OS Install

More information

System and Network Monitoring With Zabbix

System and Network Monitoring With Zabbix System and Network Monitoring With Zabbix Zabbix Features http://www.zabbix.com/features.php Zabbix Requirements http://www.zabbix.com/requirements.php @GARR - alfredo.pagano@garr.it Download Zabbix http://www.zabbix.com/download.php

More information

dotdefender v5.12 for Apache Installation Guide Applicure Web Application Firewall Applicure Technologies Ltd. 1 of 11 support@applicure.

dotdefender v5.12 for Apache Installation Guide Applicure Web Application Firewall Applicure Technologies Ltd. 1 of 11 support@applicure. dotdefender v5.12 for Apache Installation Guide Applicure Web Application Firewall Applicure Technologies Ltd. 1 of 11 Installation Process The installation guide contains the following sections: System

More information

How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu

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

More information

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) 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

More information

Backup and Restore MySQL Databases

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

More information

Tableau Spark SQL Setup Instructions

Tableau Spark SQL Setup Instructions Tableau Spark SQL Setup Instructions 1. Prerequisites 2. Configuring Hive 3. Configuring Spark & Hive 4. Starting the Spark Service and the Spark Thrift Server 5. Connecting Tableau to Spark SQL 5A. Install

More information

Redmine Installation on Debian. v1.1

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

More information

How to Install SMTPSwith Mailer on Centos Server/VPS

How to Install SMTPSwith Mailer on Centos Server/VPS How to Install SMTPSwith Mailer on Centos Server/VPS SMTPSwitch Mailer User Guide V4.0 SMTPSwitch Mailer is a web based email marketing software that runs on a web server or online server. An online server

More information

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

Cacti complete network graphing solution. Oz Melamed E&M Computing Jun 2009 Cacti complete network graphing solution Oz Melamed E&M Computing Jun 2009 About Cacti Cacti is a complete network graphing solution designed to harness the power of RRDTool's data storage and graphing

More information

Apache 2.0 Installation Guide

Apache 2.0 Installation Guide Apache 2.0 Installation Guide Ryan Spangler spanglerrp22@uww.edu http://ceut.uww.edu May 2002 Department of Business Education/ Computer and Network Administration Copyright Ryan Spangler 2002 Table of

More information

Integrating Apache Web Server with Tomcat Application Server

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

More information

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 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

More information

Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6

Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6 201 Datavoice House, PO Box 267, Stellenbosch, 7599 16 Elektron Avenue, Technopark, Tel: +27 218886500 Stellenbosch, 7600 Fax: +27 218886502 Adept Internet (Pty) Ltd. Reg. no: 1984/01310/07 VAT No: 4620143786

More information

OpenPro ERP Software Installation Guide REDHAT LINUX

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 infoop@openpro.com OpenPro Installation

More information

GroundWork Monitor Open Source 5.1.0 Installation Guide

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

More information

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 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...

More information

www.kdev.it - ProFTPd: http://www.proftpd.org - ftp://ftp.proftpd.org/distrib/source/proftpd-1.2.9.tar.gz

www.kdev.it - ProFTPd: http://www.proftpd.org - ftp://ftp.proftpd.org/distrib/source/proftpd-1.2.9.tar.gz &8730; www.kdev.it ProFTPd Guida per ottenere un server ProFTPd con back-end MySQL. Guida per ottenere un server ProFTPd con back-end MySQL. Condizioni strettamente necessarie: - Mac OS X Developer Tools:

More information

Server Installation/Upgrade Guide

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

More information

Installing and Configuring MySQL as StoreGrid Backend Database on Linux

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

More information

BF2CC Daemon Linux Installation Guide

BF2CC Daemon Linux Installation Guide BF2CC Daemon Linux Installation Guide Battlefield 2 + BF2CC Installation Guide (Linux) 1 Table of contents 1. Introduction... 3 2. Opening ports in your firewall... 4 3. Creating a new user account...

More information

CPE111 COMPUTER EXPLORATION

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

More information

Installing an open source version of MateCat

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

More information

Partek Flow Installation Guide

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

More information

EZcast Installation guide

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 podcast@ulb.ac.be SOMMAIRE SOMMAIRE... 2 1. INSTALLATION

More information

Project management integrated into Outlook

Project management integrated into Outlook y Project management integrated into Outlook InLoox PM 7.x Help for the configuration for MySQL-Server An InLoox Whitepaper Published: October 2011 Copyright: InLoox GmbH 2011 You find up-to-date information

More information

Installing Dspace 1.8 on Ubuntu 12.04

Installing Dspace 1.8 on Ubuntu 12.04 Installing Dspace 1.8 on Ubuntu 12.04 This is an abridged version of the dspace 1.8 installation guide, specifically targeted at getting a basic server running from scratch using Ubuntu. More information

More information

nitrobit update server

nitrobit update server nitrobit update server Administrator's Guide 2011 analytiq consulting gmbh. All rights reserved. Page 2 nitrobit update server Administrator's Guide Content I. Introduction... 4 Overview... 4 Components

More information

Installation. Installation centreon + nagios3 1 25 mai 2009 1.1 LISTE DES PRE-REQUIS. Nagios/centreon. 1.1.1 Paquets divers. 1.1.

Installation. Installation centreon + nagios3 1 25 mai 2009 1.1 LISTE DES PRE-REQUIS. Nagios/centreon. 1.1.1 Paquets divers. 1.1. Installation 1.1 LISTE DES PRE-REQUIS 1.1.1 Paquets divers tofrodos mailx lsb-release build-essential 1.1.2 Compilateurs : 1.1.3 Serveur Web et php5 apache2 php5 php5-mysql php-pear php5-ldap php5-snmp

More information

MySQL quick start guide

MySQL quick start guide R E S E L L E R S U P P O R T www.fasthosts.co.uk MySQL quick start guide This guide will help you: Add a MySQL database to your reseller account. Find your database. Add additional users. Use the MySQL

More information

How to install RADIUSdesk on CentOS 6.4 using Nginx

How to install RADIUSdesk on CentOS 6.4 using Nginx How to install RADIUSdesk on CentOS 6.4 using Nginx Freddy FALANGA With this document you will install step by step RADIUSdesk on CentOS 6.4 32 bits using nginx web server. Important This installation

More information

Linux FTP Server Setup

Linux FTP Server Setup 17Harrison_ch15.qxd 2/25/05 10:06 AM Page 237 C H A P T E R 15 Linux FTP Server Setup IN THIS CHAPTER FTP Overview Problems with FTP and Firewalls How to Download and Install VSFTPD How to Get VSFTPD Started

More information

Installation and Control in Linux

Installation and Control in Linux IceWarp Unified Communications Installation and Control in Linux Version 11.3 Published on 9/1/2015 Contents IceWarp Server... 4 Before Installation... 5 Quick Installation Guide... 6 Running... 7 Installation

More information

IT6204 Systems & Network Administration. (Optional)

IT6204 Systems & Network Administration. (Optional) Systems & Network Administration (Optional) INTRODUCTION This is one of the Optional courses designed for Semester 6 of the Bachelor of Information Technology Degree program. This course on Systems & Network

More information

CC ICT-SUD. Setting up and integrate Apache, MySQL and PHP on a Linux system

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

More information

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

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

More information

Extending Remote Desktop for Large Installations. Distributed Package Installs

Extending Remote Desktop for Large Installations. Distributed Package Installs Extending Remote Desktop for Large Installations This article describes four ways Remote Desktop can be extended for large installations. The four ways are: Distributed Package Installs, List Sharing,

More information

Introduction. General to the Introduction to the Project. General Introduction to the Project. Overview of Koha (and Ubuntu) Support and Resources

Introduction. General to the Introduction to the Project. General Introduction to the Project. Overview of Koha (and Ubuntu) Support and Resources Kolasinski 1 Introduction General Introduction to the Project Purpose Introduction Overview of Koha (and Ubuntu) Overview Koha s Iterations Support and Resources Prerequisites to Installation Hardware

More information

Installing and Running MOVES on Linux

Installing and Running MOVES on Linux Installing and Running MOVES on Linux MOVES Workgroup Wednesday June 15, 2011 Gwo Shyu Dan Stuart USEPA Office of Transportation & Air Quality Assessment and Standards Division 2000 Traverwood Drive, Ann

More information

JobScheduler - Amazon AMI Installation

JobScheduler - Amazon AMI Installation JobScheduler - Job Execution and Scheduling System JobScheduler - Amazon AMI Installation March 2015 March 2015 JobScheduler - Amazon AMI Installation page: 1 JobScheduler - Amazon AMI Installation - Contact

More information

Zend Server 5.0 Reference Manual

Zend Server 5.0 Reference Manual Zend Server 5.0 Reference Manual By Zend Technologies www.zend.com Table of Contents Zend Server Installation Guide... 5 Zend Server... 5 Installing for the First Time... 5 Installation Directories...

More information

DoD Public Key Enablement (PKE) Quick Reference Guide. Securing Apache HTTP with mod_ssl for Linux

DoD Public Key Enablement (PKE) Quick Reference Guide. Securing Apache HTTP with mod_ssl for Linux DoD Public Key Enablement (PKE) Quick Reference Guide Securing Apache HTTP with mod_ssl for Linux Contact: PKE_Support@disa.mil URL: https://www.us.army.mil/suite/page/474113 This guide provides instructions

More information

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 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

More information

Perforce Helix Threat Detection On-Premise Deployment Guide

Perforce Helix Threat Detection On-Premise Deployment Guide Perforce Helix Threat Detection On-Premise Deployment Guide Version 3 On-Premise Installation and Deployment 1. Prerequisites and Terminology Each server dedicated to the analytics server needs to be identified

More information

INSTALLATION GUIDE FOR SDN/OPENFLOW DEMONSTRATION. Jerry Lei Solutions Architect Service Provider Group

INSTALLATION GUIDE FOR SDN/OPENFLOW DEMONSTRATION. Jerry Lei Solutions Architect Service Provider Group INSTALLATION GUIDE FOR SDN/OPENFLOW DEMONSTRATION Jerry Lei Solutions Architect Service Provider Group Legal Disclaimer All or some of the products detailed in this presentation may still be under development

More information

Secure Shell Demon setup under Windows XP / Windows Server 2003

Secure Shell Demon setup under Windows XP / Windows Server 2003 Secure Shell Demon setup under Windows XP / Windows Server 2003 Configuration inside of Cygwin $ chgrp Administrators /var/{run,log,empty} $ chown Administrators /var/{run,log,empty} $ chmod 775 /var/{run,log}

More information

LedgerSMB on Mac OS X An Installation Guide

LedgerSMB on Mac OS X An Installation Guide LedgerSMB on Mac OS X An Installation Guide Andy 'dru' Satori - dru@druware.com Table of Contents What Is LedgerSMB?! 4 Prerequisites! 4 Known Issues & Limitations! 5 Installation! 5 First Use! 12 Additional

More information

StoreGrid Backup Server With MySQL As Backend Database:

StoreGrid Backup Server With MySQL As Backend Database: StoreGrid Backup Server With MySQL As Backend Database: Installing and Configuring MySQL on Linux Overview StoreGrid now supports MySQL as a backend database to store all the clients' backup metadata information.

More information

Single Node Hadoop Cluster Setup

Single Node Hadoop Cluster Setup Single Node Hadoop Cluster Setup This document describes how to create Hadoop Single Node cluster in just 30 Minutes on Amazon EC2 cloud. You will learn following topics. Click Here to watch these steps

More information

Secure File Transfer Installation. Sender Recipient Attached FIles Pages Date. Development Internal/External None 11 6/23/08

Secure File Transfer Installation. Sender Recipient Attached FIles Pages Date. Development Internal/External None 11 6/23/08 Technical Note Secure File Transfer Installation Sender Recipient Attached FIles Pages Date Development Internal/External None 11 6/23/08 Overview This document explains how to install OpenSSH for Secure

More information

QuickBooks Enterprise Solutions. Linux Database Server Manager Installation and Configuration Guide

QuickBooks Enterprise Solutions. Linux Database Server Manager Installation and Configuration Guide QuickBooks Enterprise Solutions Linux Database Server Manager Installation and Configuration Guide Copyright Copyright 2007 Intuit Inc. All rights reserved. STATEMENTS IN THIS DOCUMENT REGARDING THIRD-PARTY

More information

Installing QuickBooks Enterprise Solutions Database Manager On Different Linux Servers

Installing QuickBooks Enterprise Solutions Database Manager On Different Linux Servers Installing QuickBooks Enterprise Solutions Database Manager On Different Linux Servers 1 Contents QuickBooks Enterprise Solutions and Linux... 3 Audience of This Guide... 3 What is the Linux Database Manager

More information

Installation and Control in Linux

Installation and Control in Linux IceWarp Server Installation and Control in Linux Version 10 Printed on 17 August, 2009 i Contents IceWarp Server Installation and Control in Linux 1 V10 New Features... 2 Differences between Windows and

More information

Moving to Plesk Automation 11.5

Moving to Plesk Automation 11.5 Moving to Plesk Automation 11.5 Last updated: 2 June 2015 Contents About This Document 4 Introduction 5 Preparing for the Move 7 1. Install the PA Moving Tool... 8 2. Install Mail Sync Software (Windows

More information

Install and configure Apache, MySQL, PHP on OSX 10.8 Mountain Lion

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

More information

User Guide Zend Server Community 4.0.3

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

More information

Hadoop Lab - Setting a 3 node Cluster. http://hadoop.apache.org/releases.html. Java - http://wiki.apache.org/hadoop/hadoopjavaversions

Hadoop Lab - Setting a 3 node Cluster. http://hadoop.apache.org/releases.html. Java - http://wiki.apache.org/hadoop/hadoopjavaversions Hadoop Lab - Setting a 3 node Cluster Packages Hadoop Packages can be downloaded from: http://hadoop.apache.org/releases.html Java - http://wiki.apache.org/hadoop/hadoopjavaversions Note: I have tested

More information

http://cnmonitor.sourceforge.net CN=Monitor Installation and Configuration v3.2

http://cnmonitor.sourceforge.net CN=Monitor Installation and Configuration v3.2 1 Installation and Configuration v3.2 2 1. Introduction... 3 2. Installation... 3 2.1. Prerequisites... 3 2.2. Linux RPM Installation... 4 2.3. Manual *nix Installation... 5 2.4. Manual Windows Installation...

More information

vtiger CRM 4.2 Installation Guide for Linux OS

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

More information

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

IMPLEMENTATION OF CIPA - PUDUCHERRY UT SERVER MANAGEMENT. Client/Server Installation Notes - Prepared by NIC, Puducherry UT. SERVER MANAGEMENT SERVER MANAGEMENT The Police department had purchased a server exclusively for the data integration of CIPA. For this purpose a rack mount server with specifications- as per annexure

More information

Using Cacti To Graph MySQL s Metrics

Using Cacti To Graph MySQL s Metrics Using Cacti To Graph MySQL s Metrics Kenny Gryp kenny.gryp@percona.com Principal Consultant @ Percona Collaborate 2011 1 Percona MySQL/LAMP Consulting MySQL Support Percona Server (XtraDB) Percona XtraBackup

More information

User Manual of the Pre-built Ubuntu 9 Virutal Machine

User Manual of the Pre-built Ubuntu 9 Virutal Machine SEED Document 1 User Manual of the Pre-built Ubuntu 9 Virutal Machine Copyright c 2006-2011 Wenliang Du, Syracuse University. The development of this document is funded by the National Science Foundation

More information

How To Run Nrpe On Nagios On Windows 7.5 (Windows) On A Linux Computer On A Windows 7 (Windows 7) On An Ubuntu Computer On An Ipad Or Ipad (Windows 8) On Your Pc

How To Run Nrpe On Nagios On Windows 7.5 (Windows) On A Linux Computer On A Windows 7 (Windows 7) On An Ubuntu Computer On An Ipad Or Ipad (Windows 8) On Your Pc Server Monitoring Contents Ganglia... 1 Nagios...3 Open Computer and Software Inventory Next Generation...8 Ganglia Ganglia is a web based program developed by Berkeley University designed to monitor machine

More information

Cacti The ULTIMATE Management Solution

Cacti The ULTIMATE Management Solution Cacti The ULTIMATE Management Solution Cacti SNMP Management Installation HOW-TO For Linux Author: Lee Carter Published: October 20 th 2004 Version 2 Updated November 1, 2004 Table of Contents Purpose...3

More information

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 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

More information

Installation of PHP, MariaDB, and Apache

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

More information

Lucid Key Server v2 Installation Documentation. www.lucidcentral.org

Lucid Key Server v2 Installation Documentation. www.lucidcentral.org Lucid Key Server v2 Installation Documentation Contents System Requirements...2 Web Server...3 Database Server...3 Java...3 Tomcat...3 Installation files...3 Creating the Database...3 Step 1: Create the

More information

ABS Manual Installation Guide

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

More information

Linux Administrator (Advance)

Linux Administrator (Advance) Linux Administrator (Advance) Mr.Kriangsak Namkot Trainer & Director Jodoi IT&Service Co.,Ltd. jodoi@jodoi.com jodoi1819@hotmail.com http://www.jodoi.com Linux Admin II Day 2 9:00 น. -12.00 น. - Mail Server

More information

WEB2CS INSTALLATION GUIDE

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

More information

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

Oracle, the Oracle logo, Java, and MySQL are registered trademarks of the Oracle Corporation and/or its affiliates. Zenoss Service Dynamics Resource Management Installation Copyright 2012 Zenoss, Inc., 275 West St. Suite 204, Annapolis, MD 21401, U.S.A. All rights reserved. Zenoss and the Zenoss logo are trademarks

More information

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts AlienVault Unified Security Management (USM) 4.x-5.x Deploying HIDS Agents to Linux Hosts USM 4.x-5.x Deploying HIDS Agents to Linux Hosts, rev. 2 Copyright 2015 AlienVault, Inc. All rights reserved. AlienVault,

More information

Version 1.6. MDweb installation and configuration (scripts databases) Linux Platform. 1.3 Authors: Jean Christophe Desconnets (jcd@teledetection.

Version 1.6. MDweb installation and configuration (scripts databases) Linux Platform. 1.3 Authors: Jean Christophe Desconnets (jcd@teledetection. Version 1.6 MDweb installation and configuration (scripts databases) Linux Platform Version Comments 1 Authors : Jean Christophe Desconnets (jcd@teledetection.fr) Translation : Kim Agrawal (kim@auromail.net)

More information

SIMIAN systems. Setting up a Sitellite development environment on Mac OS X. Sitellite Content Management System

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

More information

Setting-Up an Open-Source Backup Software Amanda Community in About 15 Minutes

Setting-Up an Open-Source Backup Software Amanda Community in About 15 Minutes Setting-Up an Open-Source Backup Software Amanda Community in About 5 Minutes Abstract Amanda is the most popular open source backup and recovery software in the world because of its openness, robustness,

More information

HOWTO: Setting up WP7 monitoring tools with GLite

HOWTO: Setting up WP7 monitoring tools with GLite HOWTO: Setting up WP7 monitoring tools with GLite Paul Mealor October 2004 1 Downloads and installation 1.1 Unmodified WP7 work The EDG RPM repository can be reached from WP6 s website at http://marianne.in2p3.fr/.

More information

Setup a Virtual Host/Website

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

More information

Business Objects BI Server Installation Guide - Linux

Business Objects BI Server Installation Guide - Linux Business Objects BI Server Installation Guide - Linux Business Objects BI Server Linux Patents Trademarks Copyright Third-party contributors Business Objects owns the following U.S. patents, which may

More information

Installing SQL-Ledger on Windows

Installing SQL-Ledger on Windows Installing SQL-Ledger on Windows Requirements Windows 2000, Windows XP, Windows Server 2000 or Windows Server 2003 WinZip Knowledge of simple DOS commands, i.e. CD, DIR, MKDIR, COPY, REN Steps Installing

More information

2. Boot using the Debian Net Install cd and when prompted to continue type "linux26", this will load the 2.6 kernel

2. Boot using the Debian Net Install cd and when prompted to continue type linux26, this will load the 2.6 kernel These are the steps to build a hylafax server. 1. Build up your server hardware, preferably with RAID 5 (3 drives) plus 1 hotspare. Use a 3ware raid card, 8000 series is a good choice. Use an external

More information

MySQL Quick Start Guide

MySQL Quick Start Guide Quick Start Guide MySQL Quick Start Guide SQL databases provide many benefits to the web designer, allowing you to dynamically update your web pages, collect and maintain customer data and allowing customers

More information

Quick Installation Guide. CereusReporting - Express Edition

Quick Installation Guide. CereusReporting - Express Edition Quick Installation Guide CereusReporting - Express Edition Version 2.10.66 1 Introduction 1.1 About CereusReporting CereusReporting is a plugin designed to enhance the reporting functionality of the Cacti

More information

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 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

More information

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

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

More information

Installation Guide. SafeArchive Version 2.0 1

Installation Guide. SafeArchive Version 2.0 1 Installation Guide SafeArchive Version 2.0 1 Table of Contents Conventions Used in This Guide... 1 The Nano Text Editor... 1 System Requirements... 2 Hardware Requirements... 2 Software Dependencies...

More information

Recommended File System Ownership and Privileges

Recommended File System Ownership and Privileges FOR MAGENTO COMMUNITY EDITION Whenever a patch is released to fix an issue in the code, a notice is sent directly to your Admin Inbox. If the update is security related, the incoming message is colorcoded

More information

Windows Template Creation Guide. How to build your own Windows VM templates for deployment in Cloudturk.

Windows Template Creation Guide. How to build your own Windows VM templates for deployment in Cloudturk. Windows Template Creation Guide How to build your own Windows VM templates for deployment in Cloudturk. TABLE OF CONTENTS 1. Preparing the Server... 2 2. Installing Windows... 3 3. Creating a Template...

More information