Hola mis amados lectores, me disculpo con ustedes pero debido al tiempo no me da para traducirlo sino corregir algunas cosas que tal vez no se indican en el original ( casi nada ) pero agradecer a ustedes por su comprensión espero les guste:
Install OCS Inventory-NG 2.0 on CentOS 6
This guide is based on a fresh install of CentOS 6.2 from the Minimal ISO. It assumes you have already performed basic system configuration steps such as setting up networking, time synchronisation, etc. Install the EPEL repo for some pre-requisites with your own password (Hint: Don't use 'ocs')
configuraciones extras
En el php.ini
Visit http://yourserver/ocsreports
You will be shown the database configuration page
Database: ocs
Username: ocs
Password:
Hostname: localhost
Click submit and wait a few seconds while the database is setup by the installation script You will get a page which should show that everything was successful. You will be prompted to enter a string to show an agent the first time it contacts the OCS server. I leave it blank and click submit. You will get a page informing you that installation is complete.
Delete the installation script
Ojo dependiendo donde ubiques la ruta por defecto para dicho directorio en mi caso /usr/share/ocsinventory-reports/ocsreports puede ser también en tu caso /var/www/
Username: admin
Password: admin
You should change your 'admin' password after logging in. OCS Server installation is complete. You can now begin deploying your agents.
fuente: http://bit.ly/14owoeU
Install OCS Inventory-NG 2.0 on CentOS 6
This guide is based on a fresh install of CentOS 6.2 from the Minimal ISO. It assumes you have already performed basic system configuration steps such as setting up networking, time synchronisation, etc. Install the EPEL repo for some pre-requisites
root@localhost# rpm -ivH ftp://ftp.univie.ac.at/systems/linux/fedora/epel/beta/6/i386/epel-release-6-5.noarch.rpmEdit '/etc/yum.repos.d/epel.repo' and inside the [epel] stanza, set enabled=0 Screenshot Update the base system
1 [epel] 2 name=Extra Packages for Enterprise Linux 6 - $basearch 3 #baseurl=http://download.fedoraproject.org/pub/epel/6/$basearch 4 mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-6&arch=$base arch 5 failovermethod=priority 6 enabled=0 7 gpgcheck=1 8 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 9 ...
root@localhost# yum update -yInstall pre-requisite packages
root@localhost# yum install -y 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
root@localhost# yum install -y --enablerepo=epel perl-Apache-DBI perl-Apache2-SOAP perl-XML-EntitiesPerform the initial MySQL setup
root@localhost# mysql_install_db root@localhost# chkconfig --level 345 mysqld on root@localhost# service mysqld start
root@localhost# mysql_secure_installation Press Enter for current password Type a password for the 'root' user Re-enter your new 'root' password Y to remove anonymous user Y to disallow remote logon Y to remove the test database Y to reload the privilege tablesCreate the database for OCS. Replace
root@localhost# mysql -u root -p CREATE DATABASE ocs; GRANT ALL PRIVILEGES ON ocs.* to ocs@localhost IDENTIFIED BY ''; FLUSH PRIVILEGES; QUIT Install OCS (Based on OCS 2.0.4)
root@localhost# cd ~ root@localhost# wget http://launchpad.net/ocsinventory-server/stable-2.0/2.0.4/+download/OCSNG_UNIX_SERVER-2.0.4.tar.gz root@localhost# tar -xvzf OCSNG_UNIX_SERVER*.tar.gz root@localhost# cd OCSNG_UNIX_SERVER* root@localhost# sh ./setup.sh Y to continue Enter to accept 'localhost' as MySQL server Enter to accept '3306' as MySQL port Enter to accept '/usr/sbin/httpd' as Apache binary Enter to accept '/etc/httpd/conf/httpd.conf' as Apache config file Enter to accept 'apache' as Apache user Enter to accept 'apache' as Apache group Enter to accept '/etc/httpd/conf.d/' as Apache include directory Enter to accept '/usr/bin/perl' as Perl interpreter Y to install Communication server Enter to accept '/var/log/ocsinventory-server' as log directory Y to continue with installation Y to rename OCS server config to 'z-ocsinventory-server.conf' Y to installation Administration server Y to continue Enter '/var/www' as location for Administration Server static files location Enter '/var/www' as location for Download locationEdit /etc/selinux/config
Change SELINUX=enforcing to SELINUX=disabled
# setenforce 0Update database settings for OCS Server Screenshot
Edit '/etc/httpd/conf.d/z-ocsinventory-server.conf' Change line 26 (OCS_DB_NAME) from 'ocsweb' to 'ocs' Change line 27 (OCS_DB_LOCAL) from 'ocsweb' to 'ocs' Change line 31 (OCS_DB_PWD) from 'ocs' to whatever you chose for your MySQL 'ocs' user passwordUpdate IPTables config to allow HTTP on port 80 Screenshot
Edit '/etc/sysconfig/iptables' At line 11 (or just before the final 3 lines) insert -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT Save the file and exit then run
root@localhost# service iptables restartStart Apache
root@localhost# chkconfig --level 345 httpd on root@localhost# service httpd start
En el php.ini
root@localhost# vim /etc/php.ini 727 ; Maximum size of POST data that PHP will accept. 728 ; http://www.php.net/manual/en/ini.core.php#ini.post-max-size 729 post_max_size = 200M 876 ; Maximum allowed size for uploaded files. 877 ; http://www.php.net/manual/en/ini.core.php#ini.upload-max-filesize 878 upload_max_filesize = 200MEn el my.cnf, sino tiene agregarlo.
root@localhost# vim /etc/my.cnf 8 max_allowed_packet=16MPerform initial OCS config
Visit http://yourserver/ocsreports
You will be shown the database configuration page
Database: ocs
Username: ocs
Password:
Hostname: localhost
Click submit and wait a few seconds while the database is setup by the installation script You will get a page which should show that everything was successful. You will be prompted to enter a string to show an agent the first time it contacts the OCS server. I leave it blank and click submit. You will get a page informing you that installation is complete.
Delete the installation script
Ojo dependiendo donde ubiques la ruta por defecto para dicho directorio en mi caso /usr/share/ocsinventory-reports/ocsreports puede ser también en tu caso /var/www/
root@localhost# rm -f /usr/share/ocsinventory-reports/ocsreports/install.phpVisit http://yourserver/ocsreports to login
Username: admin
Password: admin
You should change your 'admin' password after logging in. OCS Server installation is complete. You can now begin deploying your agents.
fuente: http://bit.ly/14owoeU
1 comentario:
Gracias por tu aporte. Ha sido muy valioso.
Publicar un comentario