yum update -y
yum install -y httpd httpd-devel mod_perl mod_php mod_ssl php-gd php-mysql php-mbstring php perl perl-XML-Simple perl-Compress-Zlib perl-DBI perl-DBD-MySQL perl-Net-IP perl-SOAP-Lite perl-Apache-DBI perl-Apache2-SOAP perl-XML-Entities
Inicie o WebServer
systemctl start httpd.service
systemctl enable httpd.service
Adicione o repositorio do MariaDB
cd /etc/yum.repos.d/
vim MariaDB.repo
Adicione o conteúdo abaixo no arquivo e salve o arquivo Mariadb.repo
# MariaDB 10.0 CentOS repository list - created 2014-11-30 22:51 UTC
# http://mariadb.org/mariadb/repositories/
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.0/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
Agora faça a instalação do MariaDB
sudo yum install MariaDB-server MariaDB-client
Fonte: Maria DB
Inicie o Banco de Dados
/etc/init.d/mysql start
Execute o instalação segura do Mysql e atribui a senha para root
/usr/bin/mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none): <--ENTER
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.
Set root password? [Y/n]
New password: <--yourmariadbpassword
Re-enter new password: <--yourmariadbpassword
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] <--ENTER
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] <--ENTER
... Success!
By default, MariaDB comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] <--ENTER
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] <--ENTER
... Success!
Cleaning up...
All done! If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks for using MariaDB!
Opcional: Caso deseje criar a base de dados agora, segue abaixo o procedimento, porém é possivel criar na durante a instalação do OCS.
Fazendo essa configuração agora quando acessar o OCS será necessário somente dar input das informações de conexão com o banco de dados.
# mysql -u root -p
CREATE DATABASE ocs;
GRANT ALL PRIVILEGES ON ocs.* to ocs@localhost IDENTIFIED BY 'suasenha';
FLUSH PRIVILEGES;
QUIT
Habilitando o Remi no CentOs 7
wget http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
sudo rpm -Uvh remi-release-7*.rpm
sudo yum --enablerepo=remi install php-tcpdf
Acesse /etc/yum.repos.d/remi.repo em [remi] modifique enable=0 para enable-1 para ativar o repositorio.
Abaixo como [remi] deve ficar.
[remi]
name=Les RPM de remi pour Enterprise Linux 7 - $basearch
#baseurl=http://rpms.famillecollet.com/enterprise/7/remi/$basearch/
mirrorlist=http://rpms.famillecollet.com/enterprise/7/remi/mirror
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi
failovermethod=priority
Verifique se o repositorio está funcionando.
yum repolist
Caso deseje desabilitar futuramento o repositorio abaixo comando utilize o comando abaixo.
yum repolist disabled
Instalação do OCS NG através do Yum utilizando o Remi
yum --enablerepo=remi install ocsinventory
Libera acesso http e https
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
Altere no php.ini o tamanho maximo de post e upload
vim /etc/php.ini
post_max_size = 200M
upload_max_filesize = 200M
Concluindo a instalação remova o arquivo install.php do diretorio /usr/share/ocsinventory-reports/ocsreports
cd /usr/share/ocsinventory-reports/ocsreports
rm install.php
Acesse a URL para configurar o OCS http://ipdoservidor/ocsreports
Oi . Estou precisando de ajuda . Eu instalei o OCS em um servidor CentOS 7 com uma base do Zero, e este é problema :
ResponderExcluir+----------------------------------------------------------+
| Checking for required Perl Modules... |
+----------------------------------------------------------+
Checking for DBI PERL module...
Found that PERL module DBI is available.
Checking for Apache::DBI PERL module...
*** ERROR: PERL module Apache::DBI is not installed !
Checking for DBD::mysql PERL module...
Found that PERL module DBD::mysql is available.
Checking for Compress::Zlib PERL module...
Found that PERL module Compress::Zlib is available.
Checking for XML::Simple PERL module...
Found that PERL module XML::Simple is available.
Checking for Net::IP PERL module...
*** ERROR: PERL module Net::IP 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
RedHat based automatic installation
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: centos.brnet.net.br
* centosplus: centos.brnet.net.br
* epel: epel.gtdinternet.com
* extras: centos.brnet.net.br
* rpmforge: apt.sw.be
* updates: centos.brnet.net.br
No packages marked for update
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: centos.brnet.net.br
* centosplus: centos.brnet.net.br
* epel: epel.gtdinternet.com
* extras: centos.brnet.net.br
* rpmforge: apt.sw.be
* updates: centos.brnet.net.br
No package perl-Net-IP available.
Resolving Dependencies
--> Running transaction check
---> Package perl-Apache-DBI.noarch 0:1.09-1.el6 will be installed
--> Processing Dependency: perl(Digest::SHA1) for package: perl-Apache-DBI-1.09-1.el6.noarch
--> Processing Dependency: perl(:MODULE_COMPAT_5.10.1) for package: perl-Apache-DBI-1.09-1.el6.noarch
--> Running transaction check
---> Package perl-Apache-DBI.noarch 0:1.09-1.el6 will be installed
--> Processing Dependency: perl(:MODULE_COMPAT_5.10.1) for package: perl-Apache-DBI-1.09-1.el6.noarch
---> Package perl-Digest-SHA1.x86_64 0:2.13-9.el7 will be installed
--> Finished Dependency Resolution
Error: Package: perl-Apache-DBI-1.09-1.el6.noarch (epel)
Requires: perl(:MODULE_COMPAT_5.10.1)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
Installation aborted !
Installation script encounter problems to install packages !
root@localhost:/opt/OCSNG_UNIX_SERVER-2.1.2#
Agradeço antecipadamente.
Está apresentando erro no Perl.
ResponderExcluirTá usando o repositorio EPEL ?
Adiciona ele
yum install epel-release
Depois de adicionar tentar instalar novamente o Perl
yum install perl-Apache-DBI perl-XML-Entities perl-Apache2-SOAP
Caso não funcione tente com Perl-CPAN
yum install perl-CPAN
Parabens pelo tutorial ! ficou perfeito !
ResponderExcluirObrigado Ricardo.
ExcluirFellipe, tentei rodar o comando para instalação dos pacotes e os seguinte não estão sendo encontrados:
ResponderExcluirNenhum pacote perl-Apache-DBI disponível.
Nenhum pacote perl-Apache2-SOAP disponível.
O repositório EPEL da minha instalação (Centos 7) já esta adicionado a base do yum. Aonde posso encontrar estes pacotes faltantes?
Obrigado.
Marcelo Magalhães
Marcelo,
ExcluirNa epoca em que fiz a instalação não tive problemas com os pacotes, como não está disponivel deve ter ocorrido algo e removeram.
Tentou CPAN ? Lembro que alguém pediu e eu indique, não teve retorno então deve ter funcionado "espero".
perl -MCPAN -e shell
install CPAN
reload CPAN
install YAML
Felipe também estou enfrentando o mesmo problema, não localizo os pacotes:
ResponderExcluirNenhum pacote perl-Apache-DBI disponível.
Nenhum pacote perl-Apache2-SOAP disponível.
Se alguém conseguir de uma luz por favor.
Alan,
ExcluirTenta o procedimento que enviei pro Marcelo.
Na epoca em que fiz a instalação não tive problemas com os pacotes, como não está disponivel deve ter ocorrido algo e removeram.
Tentou CPAN ? Lembro que alguém pediu e eu indique, não teve retorno então deve ter funcionado "espero".
perl -MCPAN -e shell
install CPAN
reload CPAN
install YAML
Eu tenho o mesmo problema com os mesmos pacotes,
ResponderExcluiralguém tem uma solução.
Camilo,
ExcluirTente o procedimento que indiquei ao Marcelo e o Alan.
Marcelo,
Na epoca em que fiz a instalação não tive problemas com os pacotes, como não está disponivel deve ter ocorrido algo e removeram.
Tentou CPAN ? Lembro que alguém pediu e eu indique, não teve retorno então deve ter funcionado "espero".
perl -MCPAN -e shell
install CPAN
reload CPAN
install YAML
Olá Fellipe...
ResponderExcluirObrigado pelas dicas!
Estou dando um retorno de que não funcionou utilizando os comandos:
perl -MCPAN -e shell
install CPAN
reload CPAN
install YAML
Já fiz instalações de outros repositórios também, como o RPMForge, também não tem os pacotes: perl-Apache-DBI e perl-Apache2-SOAP.
Ainda estou procurando a solução!
Forte abraço
Inclusive com CPAN também tentei instalar o DBI, Apache::DBI, etc... E não funcionou:
ResponderExcluirConsegui instalar Vornei?
ExcluirVornei,
ExcluirPesquisei e pacotes foram removidos, por isso não é possível fazer a instalação.
Olhei a instalação do Debian e tem um procedimento, já tentou verifica?
http://wiki.ocsinventory-ng.org/index.php?title=Howtos:Install_OCS_on_debian
Estou tendo os mesmo problemas, já tentei tudo que o pessoal acima !!
ResponderExcluirTentem usar o FEDORA, acho que ele é o único que mantém essas extensões.
https://www.rpmfind.net/linux/RPM/fedora/24/x86_64/p/perl-Apache-DBI-1.12-8.fc24.noarch.html
Estou com as mesmas dificuldades!
ResponderExcluirEu consegui instalar o perl-Apache-DBI através deste rpm.
http://rpm.pbone.net/index.php3/stat/3/limit/1/srodzaj/1/dl/40/search/perl%28Apache%3A%3ADBI%29/field[]/1/field[]/2
O Perl-Apache2-SOAP não consegui instalar nem por RPM nem por perl -MCPAN -e shell.
instalei o ocs em um CentOS 7, contudo meus agentes ainda não estão enviando. Consultei o log do agente e está desta forma.
ResponderExcluireste primeiro log de mais cedo sei que tinha a ver com o a configuração de acesso ao mariadb, mas depois fiz as configurações que reiniciei o servidor apache apareceu diferente conforme o outro log logo abaixo.
==============================================================================
Starting OCS Inventory NG Agent on Wednesday, August 24, 2016 14:19:21.
AGENT => Running OCS Inventory NG Agent Version 2.1.1.3
AGENT => Using OCS Inventory NG FrameWork Version 2.1.1.3
AGENT => Loading plug-in(s)
AGENT => Using network connection with Communication Server
AGENT => Using Communication Provider Version <2.1.1.3>
AGENT => Sending Prolog
ERROR *** AGENT => Failed to send Prolog
AGENT => Unloading communication provider
AGENT => Unloading plug-in(s)
AGENT => Execution duration: 00:00:00.
==============================================================================
Starting OCS Inventory NG Agent on Wednesday, August 24, 2016 15:01:51.
AGENT => Running OCS Inventory NG Agent Version 2.1.1.3
AGENT => Using OCS Inventory NG FrameWork Version 2.1.1.3
AGENT => Loading plug-in(s)
AGENT => Using network connection with Communication Server
AGENT => Using Communication Provider Version <2.1.1.3>
AGENT => Sending Prolog
ERROR *** AGENT => Failed to send Prolog
AGENT => Unloading communication provider
AGENT => Unloading plug-in(s)
AGENT => Execution duration: 00:00:00.
Como resolvo isso?
Bom pessoal, gostaria de fazer um comentário que acredito ser de muita importância, principalmente ao erro mencionado nos posts "*** ERROR: PERL module Apache::DBI is not installed !"
ResponderExcluirNotei que ao realizar o procedimento de instalação conforme publicado aqui pelo Fellipe Rocha, também estava esbarrando no mesmo problema dos demais colegas.
Realizei diversas tentativas instalando CPAN YAML e nada disso resolveu.
Decidir em uma nova instalação colocar tudo exatamente como foi descrito no tutorial e notei que ao acessar o arquivo remi.repo na linha que trata da BASEURL e MIRRORLIST estava diferente, com outro endereço. Copiei e colei o descrito no tutorial e fui para o passo de
yum --enablerepo=remi install ocsinventory
a partir desse momento tudo funcionou.
Deixo aqui minha contribuição ou não (risos) do que aconteceu comigo.
Muito obrigado Fellipe Rocha e demais colegas.
Cara fiz a mesma coisa que vc disse e agora sim deu certo aleluia viu kkkkk vlw ae mano
Excluirboas tardes...
ResponderExcluirsegui extamente o descrito no e correu tudo 5 estrelas no entanto quando tento aceder à pagina http:\\ip\ocsreports esta não abre.
alguem pode ajudar?
Este comentário foi removido pelo autor.
ExcluirA mesma coisa está dando na minha implementação. Quando coloco http://IP/ocsreports (a pagina não da erro nenhum, como se tivesse algo sendo carregado + tudo em branco);
ResponderExcluirAlguem poderia ajudar?
Amigo consegui abrir a tela no meu Browser.
ResponderExcluirFaça isso aqui e veja se dar certo:
Volte o install.php para o diretório que ele pertencia
/usr/share/ocsinventory-reports/ocsreports (TENTE ABRIR A PAGINA AGORA);
caso não abra, faça!
[root@OCS] systemctl restart httpd.service
caso ABRA!
voltar ao arquivo install.php e editalo
[root@OCS ocsreports] mv install.php install-.php
[root@OCS] systemctl restart httpd.service
caso não abra, faça:
reinstalar o pacote do OCS Inventory -> yum --enablerepo=remi install ocsinventory
Caso de certo: Acompanhar no LOG do HTTPD
acompanhe no log-> tail -f /var/log/httpd/error_log
verifique qual error está mostrando agora, para que você possa corrigi-los, mas acredito que irá aparecer timezone 'UTC'. Ai seria questão de verificar data / hora da sua estação ou configurar o NTP BR em sua maquina.
Depois disso acompanhe esta URL para finalizar:
http://cafecomredes.blogspot.com.br/2014/02/configurando-ocs-inventory-ng.html
Abraços.
201/5000
ResponderExcluirInstale o remi repo e instale-os a partir daí:
wget http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
rpm -Uvh remi-release-7 * .rpm
yum --enablerepo = remi install perl-Apache-DBI perl-Apache2-SOAP
pessoal estou com esse erro algum sabe me ajudar instalei o OCSinventory no linux CentOS 7 porém ao abrir o navedor aparece esse erro já coloquei a permissão do db...porém não deu certo.
ResponderExcluirERROR: can't write in directory (on dbconfig.inc.php), please set the required rights in order to install ocsinventory (you should remove the write mode after the installation is successful)