Ubuntu 14.04.5 + OCS Inventory

Total Page:16

File Type:pdf, Size:1020Kb

Ubuntu 14.04.5 + OCS Inventory Потребовалось на работе реализовать систему учета техники и т.п. Была выбрана для тестирования «OCS Inventory». В качестве ОС была выбранаUbuntu Server 14.04. На момент написания статьи использовались следующие версии ПО и ОС: OCS Inventory (Server): OCSNG_UNIX_SERVER-2.2.1 Ubuntu Server: Ubuntu 14.04.5 LTS x86_64 OCS Inventory (Agent Windows\Linux): OCS Inventory NG Agent 2.1.1.3 Клиентскую и серверную часть скачал с офф. сайта. Потребовалось ввести Имя, Фамилию и адрес электронной почты. В конце есть ссылка на скачивание, если не хочется качать с офф.сайта. Подготовка ОС: 1) обновление кэша пакетов и обновление самой ОС (здесь сразу с подтверждением обновления) sudo apt-get update && sudo apt-get upgrade -y доп. ПО еще обычно сразу ставлю sudo apt-get install mc htop aptitude [свернуть] По желанию потом: sudo reboot 2) установка apache2, mysql, php, make, git: sudo aptitude install apache2 mysql-server php php-soap php-xml libapache2- mod-php make git В процессе установки потребуется указать пароль для пользователя root в mysql. make нужен для OCS-Inventory. Он в процессе установки будет его искать. 3) установка доп. ПО: sudo aptitude install libapache2-mod-perl2 libxml-simple-perl libcompress- zlib-perl libapache-dbi-perl libnet-ip-perl libsoap-lite-perl libdbd-mysql- perl sudo aptitude install libc6-dev Далее, выполнить команды: cpan -i XML::Entities cpan -i Compress::Zlib cpan -i SOAP cpan SOAP::Lite При установке XML на оба вопроса ответить yes. Примечание: Что бы не ставить apache, mysql и php вручную, можно воспользоваться такой командой: sudo tasksel в списке выбрать LAMP-сервер. В таком случае apache, mysql и php поставятся сами. Останется установить только другие пакеты из п. «3». 4) далее, через winscp скопировал серверную и клиентскую часть в Ubuntu. Можно получить сразу с GitHub (ссылка на момент написания этой статьи) git clone https://github.com/OCSInventory-NG/OCSInventory-Server.git 5) установка серверной части 5.1) если используются архивы, то сначала надо распаковать tar -zxvf OCSNG_UNIX_SERVER-2.2.1.tar.gz переходим в папку. cd OCSNG_UNIX_SERVER-2.2.1 Перед установкой желательно убедиться, что скрипт setup.sh имеет атрибут выполнения. Для этого надо запустить ls -l и убедиться, что у setup.sh есть -x Далее, запускаем установку так ./setup.sh или bash setup.sh 5.2) если пакет получен через git clone, то cd OCSInventory-Server и запускаем установщик как показано выше. В процессе установки будут заданы вопросы относительно установленных apache, mysql и perl. Так же будет проверено наличие модуля mod_perl для apache. Как видно на скриншоте, тут написано как посмотреть есть ли такой модуль в системе. У меня он не был установлен, т.ч. я запустил новую консоль и установил: sudo aptitude install libapache2-mod-perl2 -y После этого я проверил его наличие: dpkg -l libapache*-mod-perl* и вот что получилось (под спойлером) вывод dpkg Имя Версия Архитектура Описание Integration of perl with the Apache2 web libapache2-mod-perl2 2.0.9-4ubuntu1 amd64 server [свернуть] После проверки выбираем цифру соответствующей установленной версии. В моем случае это «2». После этого пойдут проверки путей хранения лог-файлов и всего необходимого для установки. Следующая заковыка, которая возникла у меня, это отсутствие модулей для perl проверка модулей perl +———————————————————-+ | Checking for required Perl Modules… | +———————————————————-+ Checking for DBI PERL module… *** ERROR: PERL module DBI is not installed ! Checking for Apache: BI PERL module… *** ERROR: PERL module Apache: BI is not installed ! Checking for DBD::mysql PERL module… *** ERROR: PERL module DBD::mysql is not installed ! Checking for Compress::Zlib PERL module… Found that PERL module Compress::Zlib is available. Checking for XML::Simple PERL module… *** ERROR: PERL module XML::Simple is not installed ! Checking for Net::IP PERL module… *** ERROR: PERL module Net::IP is not installed ! Checking for SOAP::Lite Perl module… *** ERROR: PERL module SOAP::Lite is not installed ! Checking for Archive::Zip Perl module… *** ERROR: PERL module Archive::Zip is not installed ! *** ERROR: There is one or more required PERL modules missing on your computer ! Please, install missing PERL modules first. [свернуть] Но скрипт сказал, что может сам их поставить. OCS setup.sh can install perl module from packages for you The script will use the native package from your operating system like apt or rpm Do you wish to continue (y/[n])? Ответил утвердительно — y. Далее, еще несколько проверок, но там ничего особенного не случилось. В итоге установка завершилась. +———————————————————————-+ | OK, Administration server installation finished ;-) | | | | Please, review /etc/apache2/conf-available/ocsinventory-reports.conf | to ensure all is good and restart Apache daemon. | | | | Then, point your browser to http://server//ocsreports | to configure database server and create/update schema. | +———————————————————————-+ Setup has created a log file /home/admin02/OCSNG_UNIX_SERVER-2.2.1/ocs_server_setup.log. Please, save this file. If you encounter error while running OCS Inventory NG Management server, we can ask you to show us his content ! DON’T FORGET TO RESTART APACHE DAEMON ! Enjoy OCS Inventory NG ;-) 5) проверим что там у нас есть в конфигах apache ls -1 /etc/apache2/conf-available вывод у меня вот такой: вывод ls -1 charset.conf javascript-common.conf localized-error-pages.conf ocsinventory-reports.conf other-vhosts-access-log.conf security.conf serve-cgi-bin.conf z-ocsinventory-server.conf [свернуть] посмотрим что из этого включено ls -1 /etc/apache2/conf-enabled включено не много: включенные конфигурации apache charset.conf localized-error-pages.conf other-vhosts-access-log.conf security.conf serve-cgi-bin.conf [свернуть] Включим необходимые конфиги: ocsinventory-reports.conf | z-ocsinventory-server.conf a2enconf z-ocsinventory-server.conf a2enconf ocsinventory-reports.conf 6) перезапустим сервер apache sudo service apache2 restart 7) подготовка к установке Редактируем /usr/share/ocsinventory-reports/ocsreports/dbconfig.inc.php sudo nano /usr/share/ocsinventory-reports/ocsreports/dbconfig.inc.php dbconfig.inc.php <?php $_SESSION[«SERVEUR_SQL»]=»localhost»; $_SESSION[«COMPTE_BASE»]=»ocs»; $_SESSION[«PSWD_BASE»]=»ocs»; ?> [свернуть] здесь надо прописать имя и пароль пользователя mysql. Можете указать и root (созданный ранее), но лучше создать отдельно базу, пользователя и назначить этому пользователю права на базу. mysql mysql -u root -p вводим пароль созданный ранее создаем базу данных. Вместо name_db пишем свое название, CREATE DATABASE name_db; создаем пользователя. Вместо user_name пишем своё, вместо password указываем свой пароль. ‘ ‘ — обязательны. CREATE USER 'user_name'@'localhost' IDENTIFIED BY 'password'; Даем права этому пользователю на созданную базу GRANT ALL PRIVILEGES ON name_db.* TO 'user_name'@'localhost'; выходим exit [свернуть] открываем браузер и переходим http://[your_ip]/ocsreports/install.php 8) подключение к БД. Откроется страница установки. У меня она выглядит так: Придется исправить то, что ему не нравится: установка GD sudo aptitude install php5-gd sudo service apache2 restart обновляем страницу с установкой WARNING: You will not be able to build any deployment package with size greater than 100MB You must raise both post_max_size and upload_max_filesize in your vhost configuration to encrease this limit. sudo nano /etc/apache2/conf-available/ocsinventory-reports.conf Там меняем соответствующие строки. Но, по-сути, это даже не ошибка, а простое предупреждение. [свернуть] После этого настраиваем подключение к БД (данные из пункта «7»): вводим логин вводим пароль вводим название базы данных имя сервера в mysql (в моем случае localhost, т.к. mysql у меня на той же самой машине) жмем send Пойдет установка. После завершения перейдите по ссылке. Если потребуется обновление, то произведите его. Рекомендуется удалить install.php после успешной установке. sudo /usr/share/ocsinventory-reports/ocsreports/ авторизируемся в системе — admin | admin На это установка закончена. Так же установку можно провести так: sudo aptitude install ocsinventory-server Download: OCS Inventory (2016-09-28): серверная часть (Windows, Linux) и агент (Windows, Linux…) If you found an error, highlight it and press Shift + Enter or Уведомлятор ошибок (очепяток) to inform us..
Recommended publications
  • BSM 1.4 Installation Guide
    & ESCALA BSM 1.4 NOVASCALE Installation Guide REFERENCE 86 A2 54FA 04 NOVASCALE & ESCALA BSM 1.4 Installation Guide Software December 2010 BULL CEDOC 357 AVENUE PATTON B.P.20845 49008 ANGERS CEDEX 01 FRANCE REFERENCE 86 A2 54FA 04 The following copyright notice protects this book under Copyright laws which prohibit such actions as, but not limited to, copying, distributing, modifying, and making derivative works. Copyright © Bull SAS 2008-2010 Printed in France Trademarks and Acknowledgements We acknowledge the rights of the proprietors of the trademarks mentioned in this manual. All brand names and software and hardware product names are subject to trademark and/or patent protection. Quoting of brand and product names is for information purposes only and does not represent trademark misuse. The information in this document is subject to change without notice. Bull will not be liable for errors contained herein, or for incidental or consequential damages in connection with the use of this material. Table of Contents Preface..................................................................................................................vii Overview .............................................................................................................. ix Chapter 1. General Installation Requirements ..........................................................1 1.1 Supported Operating Systems.............................................................................................. 1 1.2 Required Disk Space .........................................................................................................
    [Show full text]
  • Problème : Solution : Activités : Bilan De L'existant : Planification Des
    Activités 4 – OCS Inventory et GLPI Problème : Un client souhaiterait mettre en place un système d’inventaire de son parc informatique de façon totalement automatique. Solution : La gestion du parc informatique se fait par deux logiciels complémentaires : OCS Inventory et GLPI. • OCS permet de faire l'inventaire d'une machine et de centraliser cet inventaire sur un serveur. • GLPI permet la gestion du parc au sens large. Il se base sur l'inventaire que remonte OCS et y ajoute notamment la gestion des tickets d'incidents, réservations de matériels, base de connaissance, ... Activités : A5.1.1 Mise en place d'une gestion de configuration A5.1.2 Recueil d'information sur une configuration et ses éléments A5.1.3 Suivi d'une configuration et de ses éléments. Bilan de l’existant : - Une machine sous Debian 10 qui va nous servir de serveur pour installer et configurer OCS et GLPI - Une machine sous Windows 10 qui va nous servir de machine test pour essayer l’interface web de OCS et GLPI ainsi que de test pour l’inventaire de machine - Une machine sous Windows 10 qui va nous servir d’utilisation en SSH pour quelques copier-coller. Planification des taches : Debian : - Installation de Debian 10 sous une machine virtuelle - Paramétrage des cartes réseaux sous VMware (Segment Lan & NAT) - Configurations des IP de façon statique et dynamique sous Debian - Installations des prérequis pour OCS - Téléchargement du paquet OCSInventory - Décompression & installation - Paramétrage de OCSInventory sous ligne de commande - Création de la base de données OCS
    [Show full text]
  • Edital 001 2017 Hostedagem De Site
    SERVIÇO PÚBLICO FEDERAL CONSELHO REGIONAL DE QUÍMICA DA 9ª REGIÃO/PARANÁ PREGÃO ELETRÔNICO Nº 001/2017 PROCESSO CRQ9-CPL Nº 006/2017 O Conselho Regional de Química – IX Região, doravante denominado apenas CRQ-IX, localizado na Rua Monsenhor Celso, 225 – 5º/6º/10º Andar, Curitiba, Paraná, torna público que o Pregoeiro e sua Equipe de Apoio, designados pela Portaria CRQ-IX nº 014 e 015, ambas de 27 de abril de 2016, realizarão, no dia 22/02/2017, às 10 horas - horário de Brasília, por meio de utilização de recursos de tecnologia de informação- INTERNET , licitação na modalidade de PREGÃO ELETRÔNICO, do tipo menor Preço. Esta licitação observará as disposições do presente Edital e seus Anexos e, ainda, os preceitos de Direito Público, em especial: - Lei nº 8.666 e alterações posteriores; - Lei nº 10.520 de 17.07.2002; - Decreto nº 3.555, Anexo I, de 08.08.2000, e alterações posteriores; - Lei 8.666, de 21.06.1993 e alterações posteriores; - Decreto nº 5.450 de 31.05.2005. 1. DO OBJETO 1.1 – O presente Pregão tem por objeto a Contratação de Empresa, Contratação de Empresa especializada na prestação de serviços profissional, de Hospedagem (Hosting), Fornecimento de Sistema de Gestão de Conteúdo na modalidade de Software como Serviço (SAAS) e Criação de Conteúdo, Marketing Digital, Consultoria em ambiente Microsoft, VMware, Linux, FreeBSD e Networking para implantações, configurações e suporte técnico nível 2, nível 3 nas sedes Curitiba/PR, Cascavel/PR e Maringá/PR, conforme descrições e especificações contidas no presente Edital de seus Anexos. Anexo I – Termo de Referência Anexo II - Modelo de Proposta Comercial Anexo III - Minuta de Contrato Rua Monsenhor Celso, 225 – 5º/6º/10º Andar – Cx.
    [Show full text]
  • Guide to Open Source Solutions
    White paper ___________________________ Guide to open source solutions “Guide to open source by Smile ” Page 2 PREAMBLE SMILE Smile is a company of engineers specialising in the implementing of open source solutions OM and the integrating of systems relying on open source. Smile is member of APRIL, the C . association for the promotion and defence of free software, Alliance Libre, PLOSS, and PLOSS RA, which are regional cluster associations of free software companies. OSS Smile has 600 throughout the World which makes it the largest company in Europe - specialising in open source. Since approximately 2000, Smile has been actively supervising developments in technology which enables it to discover the most promising open source products, to qualify and assess them so as to offer its clients the most accomplished, robust and sustainable products. SMILE . This approach has led to a range of white papers covering various fields of application: Content management (2004), portals (2005), business intelligence (2006), PHP frameworks (2007), virtualisation (2007), and electronic document management (2008), as well as PGIs/ERPs (2008). Among the works published in 2009, we would also cite “open source VPN’s”, “Firewall open source flow control”, and “Middleware”, within the framework of the WWW “System and Infrastructure” collection. Each of these works presents a selection of best open source solutions for the domain in question, their respective qualities as well as operational feedback. As open source solutions continue to acquire new domains, Smile will be there to help its clients benefit from these in a risk-free way. Smile is present in the European IT landscape as the integration architect of choice to support the largest companies in the adoption of the best open source solutions.
    [Show full text]
  • Softwares OCS E GLPI
    FACULDADE DE TECNOLOGIA OSASCO - PREFEITO HIRANT SANAZAR Redes de Computadores Softwares OCS e GLPI São Paulo 2021 Anderson Carlos Anjos de Lima RA 2160292013013 Bruna Rafaele Maciel Oliveira RA 2160292113031 Diogenes Castro de Souza RA 2160292023026 Luciano Souza de Jesus RA 2160292022037 Tatiane Pereira Santos RA 2160292023006 João Lucas Hallwas Bueno RA 2160292113010 Matheus Alexandrino dos Santos 2160292023043 Rodrigo Inocencio da Silva RA 2160292113014 Softwares OCS e GLPI Trabalho apresentado para a matéria de Laboratório de Hardware e redes, para a faculdade Fatec Osasco Prefeito Hirant Sanazar. Orientador: Profª Marcio André Ferreira Pereira São Paulo 2021 Sumário 1.GLPI – GESTION LIBRE DE PARC INFORMATIQUE ...................................................................................... 4 1.1 Plugins ................................................................................................................................................. 5 1.2 Principais Funcionalidades Do Sistema ............................................................................................... 5 1.3 Porque utilizar o GLPI e o OCS juntos? ............................................................................................... 6 1.4 Módulos do GLPI ................................................................................................................................. 7 1.5 Sistema em execução .......................................................................................................................... 7 2. OCS
    [Show full text]
  • Configuració D'ocs Inventory 2.0.5 En Centos 6.3
    Configuració d'OCS Inventory 2.0.5 en CentOS 6.3 Configuració del servidor 1. Instal·la CentOS 6.3 i386 minimal 2. Configura la interfície de xarxa vi /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE="eth0" BOOTPROTO="none" HWADDR="08:00:27:D7:9B:C2" NM_CONTROLLED="no" ONBOOT="yes" TYPE="Ethernet" UUID="f17abfb3-7772-47de-ad27-575585b15644" GATEWAY="192.168.1.1" NETMASK="255.255.255.0" IPADDR="192.168.1.XXX" DNS1="194.179.1.100" DNS2="8.8.8.8" 3. Activa la interfície de xarxa i comprova que funciona ifup eth0 ping www.google.cat 4. Afegeix el dipòsit epel rpm -ivH http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm 5. Edita el dipòsit epel vi /etc/yum.repos.d/epel.repo Cerca: enabled=1 Canvia per: enabled=0 6. Actualitza els sistema yum update -y 7. Instal·la l'editor de text nano (opcional) yum install nano 8. Instal·la dependències d'OCS Inventory yum install make wget httpd mysql mysql-server php php-gd php-mysql php-mbstring mod_perl perl-XML-Simple perl-Net-IP perl-SOAP-Lite perl-DBI perl-DBD-MySQL yum install --enablerepo=epel perl-Apache-DBI perl-Apache2-SOAP perl-XML-Entities Pàgina 1 de 13 9. Canvia el nom del servidor en la configuració d'Apache nano /etc/httpd/conf/httpd.conf Cerca: servername Canvia: #ServerName www.example.com:80 Per: ServerName 192.168.1.XXX 10. Configura el servidor de bases de dades MySQL mysql_install_db 11. Configura el servidor de bases de dades perquè engegui des de l'inici del sistema en els runlevels 3, 4 i 5 chkconfig --levels 345 mysqld on 12.
    [Show full text]
  • Nethserver Documentation Release 6.10 Final
    NethServer Documentation Release 6.10 Final Nethesis Dec 01, 2020 Contents 1 Release notes 6.10 Final 3 1.1 Release notes...............................................3 2 Installation 5 2.1 Installation................................................5 2.2 Accessing the Server Manager......................................9 3 Configuration 11 3.1 Base system............................................... 11 3.2 Software center.............................................. 19 4 Modules 21 4.1 Backup.................................................. 21 4.2 Users and groups............................................. 26 4.3 Email................................................... 30 4.4 Webmail................................................. 39 4.5 POP3 connector............................................. 40 4.6 POP3 proxy............................................... 41 4.7 Shared folders.............................................. 42 4.8 Windows network............................................ 43 4.9 Chat.................................................... 45 4.10 UPS.................................................... 46 4.11 Fax server................................................ 47 4.12 Web proxy................................................ 49 4.13 Web content filter............................................. 51 4.14 Firewall and gateway........................................... 53 4.15 Cloud content filter............................................ 58 4.16 Proxy pass................................................ 59
    [Show full text]
  • Migrationsleitfaden Leitfaden Für Die Migration Von Software
    Migrationsleitfaden Leitfaden für die Migration von Software Version 4.0 März 2012 II Herausgeber Die Beauftragte der Bundesregierung für Informationstechnik Bundesministerium des Innern Alt-Moabit 101D 10559 Berlin Dieses Dokument wurde durch die Bundesstelle für Informationstechnik im Bundesverwaltungsamt in Zusammenarbeit mit der 4Soft GmbH, der akquinet AG sowie Prof. Dr. Axel Metzger erstellt. Ansprechpartner Referat BIT A4 - Standards und Methoden, Kompetenzzentrum Open Source Software (CC OSS) in der Bundesstelle für Informationstechnik - Bundesverwaltungsamt [email protected] Nachdruck, auch auszugsweise, ist genehmigungspflichtig. Berlin, März 2012 Vorwort zur vierten Version des Migrationsleitfadens Der Migrationsleitfaden bietet IT-Entscheidern einen Überblick über alle wichtigen Aspekte von Software- Migrationen sowie eine praktische Hilfe für deren Planung und Durchführung. In der vorliegenden Ver- sion 4 wurde der Migrationsleitfaden vollständig überarbeitet und einige bisher enthaltene Bestandteile als eigenständige Dokumente ausgelagert. Die bisherige Beschreibung einzelner Migrationspfade wur- de wegen der stark heterogenen Ursprungs- und Zielsysteme einzelner Behörden sowie der schnellen Alterung betrachteter Software-Versionen aufgegeben. Stattdessen finden sich nun Entscheidungshilfen für die jeweiligen Migrationsgebiete in Form von Kriterienlisten, kurzen Produktbeschreibungen, tabella- rischen Gegenüberstellungen und Empfehlungen. Die (Bundes-)Verwaltung ist seit langem selbst oder als Auftraggeberin im
    [Show full text]
  • Bacula Monitoring Mit Nagios Oder Icinga
    http://www.netways.de Bacula Monitoring mit Nagios oder Icinga Julian Hein – NETWAYS GmbH NETWAYS GmbH . Deutschherrnstr. 15-19 . 90429 Nürnberg . +49 911 92885-0 . http://www.netways.de http://www.netways.de Agenda . Kurzvorstellung . Nagios Einführung . AddOns & Erweiterungen . Bacula Überwachung . Fragen & Antworten NETWAYS GmbH . Deutschherrnstr. 15-19 . 90429 Nürnberg . +49 911 92885-0 . http://www.netways.de http://www.netways.de NETWAYS GmbH Kurzvorstellung NETWAYS GmbH . Deutschherrnstr. 15-19 . 90429 Nürnberg . +49 911 92885-0 . http://www.netways.de http://www.netways.de Allgemeine Daten . Julian Hein . Firmengründung 1995 . GmbH seit 2001 . Open Source seit 1997 . Nagios / Netsaint seit 1999 . 20 Mitarbeiter . Sitz in Nürnberg NETWAYS GmbH . Deutschherrnstr. 15-19 . 90429 Nürnberg . +49 911 92885-0 . http://www.netways.de http://www.netways.de Leistungsbereiche Open Source Open Source Systems Management Data Center Solutions . Monitoring . High Availability Lösungen . Performance Management . Cluster Lösungen . Configuration Management . Loadbalancing . Service Management . Virtualisierung . Knowledge Management . Speicherlösungen . Asset Management . Firewalls . Identity Management . Datenbanken . Backup & Datensicherung . Voice over IP Managed Services Monitoring HW Veranstaltungen NETWAYS GmbH . Deutschherrnstr. 15-19 . 90429 Nürnberg . +49 911 92885-0 . http://www.netways.de http://www.netways.de Konferenzen 4. Monitoring Conference (OSMC) . Mehr als 250 Teilnehmer . 5 Tracks mit Vorträgen & Workshops . 28. - 29. Oktober -> http://netways.de/osmc 2. Open Source Datacenter Conference (OSDC) . Mehr als 80 Teilnehmer . 3 Tracks mit Vorträgen & Workshops . 26. – 27. Mai -> http://netways.de/osdc NETWAYS GmbH . Deutschherrnstr. 15-19 . 90429 Nürnberg . +49 911 92885-0 . http://www.netways.de http://www.netways.de Eigene Nagios AddOns und unzählige Nagios Plugins NETWAYS GmbH . Deutschherrnstr. 15-19 .
    [Show full text]
  • Guide De L'open Source
    GUIDE DE L'OPEN SOURCE I .T IS OPE N PREAMBULE SMILE Smile est une société d’ingénieurs experts dans la mise en œuvre de solutions open source et l’intégration de systèmes appuyés sur l’open source. Smile est membre de l’APRIL, l’association pour la promotion et la défense du logiciel libre, du PLOSS – le réseau des entreprises du Logiciel Libre en Ile-de-France et du CNLL – le conseil national du logiciel libre. Smile compte plus de 1200 collaborateurs dans le monde ce qui en fait le premier intégrateur français et européen de solutions open source. Depuis 2000, environ, Smile mène une action active de veille technologique qui lui permet de découvrir les produits les plus prometteurs de l’open source, de les qualifier et de les évaluer, de manière à proposer à ses clients les produits les plus aboutis, les plus robustes et les plus pérennes. Cette démarche a donné lieu à toute une gamme de livres blancs couvrant différents domaines d’application. La gestion de contenus (2004), les portails (2005), la business intelligence (2006), la virtualisation (2007), la gestion électronique de documents (2008), les PGIs/ERPs (2008), les VPN open source (2009), les Firewall et Contrôle de flux (2009), les Middleware orientés messages (2009), l’ecommerce et les Réseaux Sociaux d'Entreprise (2010), le Guide de l’open source et NoSQL (2011), Mobile et Recensement et audit (2012), et plus récemment Big Data et ERP open source pour l’e-commerce (2014). Chacun de ces ouvrages présente une sélection des meilleures solutions open source dans le domaine considéré, leurs qualités respectives, ainsi que des retours d’expérience opérationnels.
    [Show full text]
  • Remote Collection of Network Information (Recon)
    CANUNCLASSIFIED RemoteCollectionofNetworkInformation (ReCoN) ScottMilne ScottMilneConsultingInc. Preparedby: ScottMilne ScottMilneConsultingInc. 280AlbertStreet,Suite1000(10thFLOOR) Ottawa,Ontario K1P5G8 TaskID:0007 Version:1.0.2 PSPCContractNumber:W7714-176208/001/IPS TechnicalAuthority:JonathanRisto,ResearchEngineer Contractor'sdateofpublication:January2020 ThebodyofthisCANUNCLASSIFIEDdocumentdoesnotcontaintherequiredsecuritybannersaccordingtoDNDsecurity standards.However,itmustbetreatedasCANUNCLASSIFIEDandprotectedappropriatelybasedonthetermsandconditions specifiedonthecoveringpage. DefenceResearchandDevelopmentCanada ContractReport DRDC-RDDC-2020-C076 May2020 CANUNCLASSIFIED CANUNCLASSIFIED IMPORTANTINFORMATIVESTATEMENTS ThisdocumentwasreviewedforControlledGoodsbyDefenceResearchandDevelopmentCanadausingtheScheduletothe DefenceProductionAct. Disclaimer:ThisdocumentisnotpublishedbytheEditorialOfficeofDefenceResearchandDevelopmentCanada,anagencyofthe DepartmentofNationalDefenceofCanadabutistobecataloguedintheCanadianDefenceInformationSystem(CANDIS),the nationalrepositoryforDefenceS&Tdocuments.HerMajestytheQueeninRightofCanada(DepartmentofNationalDefence) makesnorepresentationsorwarranties,expressedorimplied,ofanykindwhatsoever,andassumesnoliabilityfortheaccuracy, reliability,completeness,currencyorusefulnessofanyinformation,product,processormaterialincludedinthisdocument.Nothing inthisdocumentshouldbeinterpretedasanendorsementforthespecificuseofanytool,techniqueorprocessexaminedinit.Any relianceon,oruseof,anyinformation,product,processormaterialincludedinthisdocumentisatthesoleriskofthepersonso
    [Show full text]
  • IT Infrastructure Management Software Documentation Release 4.6.3
    IT Infrastructure Management Software Documentation Release 4.6.3 Yvan Manon Nicolas Lécureuil Stéphane Pointu<[email protected]> Jun 24, 2020 Contents 1 Installation and configuration3 1.1 Core...................................................3 1.2 Pulse 2.................................................. 35 2 User manual 89 2.1 IT infrastructure management software................................. 89 3 Other documentation 91 3.1 Development............................................... 91 3.2 Specifications............................................... 122 3.3 QA.................................................... 126 3.4 Mandriva Directory Server........................................ 129 i ii IT Infrastructure Management Software Documentation, Release 4.6.3 IT infrastructure management software is a framework used in Directory Server and Pulse projects that provides plugins for MMC. If you plan to install MDS plugins or Pulse 2 plugins you first need to install and configure MMC (see section Core). Contents 1 IT Infrastructure Management Software Documentation, Release 4.6.3 2 Contents CHAPTER 1 Installation and configuration 1.1 Core 1.1.1 Introduction The MMC (Mandriva Management Console) is made of two parts: • An agent running on the machine to manage. We call it « MMC agent ». The agent exports to the network several plugins that allow to manage the machine. Of course, there can be multiple agents running on the network. The agent and its plugins are written in Python. • A web interface, that talks to the agent(s) using XML-RPC. The interface is written in PHP, and use the scrip- taculous and prototype frameworks to provide an AJAX experience across all major browsers including Internet Explorer 6. In this document, we will first explain how to install and configure the MMC agent and the base plugins, and then how to install the web interface.
    [Show full text]