{"id":4739,"date":"2021-05-13T10:37:37","date_gmt":"2021-05-13T16:37:37","guid":{"rendered":"https:\/\/ugit.siua.ac.cr\/?p=4739"},"modified":"2021-05-14T09:53:50","modified_gmt":"2021-05-14T15:53:50","slug":"glpi-instalacion-de-ubuntu-20-04","status":"publish","type":"post","link":"https:\/\/sada.services\/?p=4739","title":{"rendered":"GLPI: instalaci\u00f3n de GLPI en CT ubuntu 20.04"},"content":{"rendered":"\n<ul class=\"wp-block-list\"><li>Guia: <a rel=\"noreferrer noopener\" href=\"https:\/\/glpi-install.readthedocs.io\/en\/latest\/index.html\" target=\"_blank\">https:\/\/glpi-install.readthedocs.io\/en\/latest\/index.html<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Preparaci\u00f3n del servidor<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Sistema<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>Instalamos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>apt install apt-transport-https software-properties-common sudo<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Actualizamos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get update &amp;&amp; sudo apt-get upgrade &amp;&amp; sudo apt-get dist-upgrade\n\nsudo apt-get check &amp;&amp; sudo apt-get install -fy &amp;&amp; sudo apt-get autoremove &amp;&amp; sudo apt-get autoclean &amp;&amp; sudo apt-get clean<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">PHP<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>Agregamos repositorio<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo add-apt-repository ppa:ondrej\/php<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Buscamos m\u00f3dulos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt search php7.4-* <\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Instalamos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install php7.4 php7.4-curl php7.4-gd php7.4-json php7.4-mbstring php7.4-mysql php-zip php7.4-geoip php7.4-gnupg php7.4-imagick php7.4-ldap php7.4-mcrypt php7.4-memcache php7.4-memcached php7.4-snmp php7.4-xml php7.4-xsl php7.4-zip php7.4-intl php7.4-cli php-dompdf php7.4-xmlrpc php7.4-apcu php-cas php7.4-bz2 -y<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Apache<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>Instalamos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install apache2 libapache2-mod-php7.4 -y\nsudo a2enmod php7.4<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Si nos da el error<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>Considering dependency mpm_prefork for php7.4:\nConsidering conflict mpm_event for mpm_prefork:\nERROR: Module mpm_event is enabled - cannot proceed due to conflicts. It needs to be disabled first!\nConsidering conflict mpm_worker for mpm_prefork:\nERROR: Could not enable dependency mpm_prefork for php7.4, aborting<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Ejecutamos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>a2dismod mpm_event\na2enmod mpm_prefork\nsudo a2enmod php7.4\nsystemctl restart apache2\nservice apache2 status<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Php.ini<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>Abrimos el archivo<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>nano \/etc\/php\/7.4\/apache2\/php.ini<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Modificamos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>memory_limit = 128M ;        \/\/ max memory limit\nfile_uploads = on ;\nmax_execution_time = 600;  \/\/ not mandatory but recommended\nsession.auto_start = 0;\nsession.use_trans_sid = 0 ; \/\/ not mandatory but recommended<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">MYSQL<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>Instalamos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install mysql-server<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Configuramos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mysql_secure_installation<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Resultado<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>Securing the MySQL server deployment.\n\nConnecting to MySQL using a blank password.\n\nVALIDATE PASSWORD COMPONENT can be used to test passwords\nand improve security. It checks the strength of password\nand allows the users to set only those passwords which are\nsecure enough. Would you like to setup VALIDATE PASSWORD component?\n\nPress y|Y for Yes, any other key for No: N\nPlease set the password for root here.\n\nNew password: HB3\n\nRe-enter new password: HB3\nBy default, a MySQL installation has an anonymous user,\nallowing anyone to log into MySQL without having to have\na user account created for them. This is intended only for\ntesting, and to make the installation go a bit smoother.\nYou should remove them before moving into a production\nenvironment.\n\nRemove anonymous users? (Press y|Y for Yes, any other key for No) : Y\nSuccess.\n\n\nNormally, root should only be allowed to connect from\n'localhost'. This ensures that someone cannot guess at\nthe root password from the network.\n\nDisallow root login remotely? (Press y|Y for Yes, any other key for No) : N\n\n ... skipping.\nBy default, MySQL comes with a database named 'test' that\nanyone can access. This is also intended only for testing,\nand should be removed before moving into a production\nenvironment.\n\n\nRemove test database and access to it? (Press y|Y for Yes, any other key for No) : Y\n - Dropping test database...\nSuccess.\n\n - Removing privileges on test database...\nSuccess.\n\nReloading the privilege tables will ensure that all changes\nmade so far will take effect immediately.\n\nReload privilege tables now? (Press y|Y for Yes, any other key for No) : Y\nSuccess.\n\nAll done!<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Crear usuario remoto<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>Ingresamos a mysql<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mysql<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Podemos consultar el tipo de autenticaci\u00f3n de los usuarios<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>SELECT user,authentication_string,plugin,host FROM mysql.user;<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Creamos usuario remoto<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE USER 'remoto'@'%' IDENTIFIED BY 'RB0';\n\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Creamos la base de datos \u00abbd_sis_glpi_siua\u00bb<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE DATABASE bd_sis_glpi_siua;<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Le otrogamos privilegios al usuario remoto<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>GRANT ALL PRIVILEGES ON *.* TO 'remoto'@'%';\nFLUSH PRIVILEGES;\nexit;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Instalaci\u00f3n de GLPI<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>Pagina: <a rel=\"noreferrer noopener\" href=\"https:\/\/github.com\/glpi-project\/glpi\/releases\" target=\"_blank\">https:\/\/github.com\/glpi-project\/glpi\/releases<\/a><\/li><li>Descargamos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/var\/www\/html\/\nwget https:\/\/github.com\/glpi-project\/glpi\/releases\/download\/9.5.5\/glpi-9.5.5.tgz<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Descomprimimos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>tar xvf glpi-9.5.5.tgz<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Damos permisos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>chmod 777 -R glpi<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Procedemos a instalar<\/li><li><a rel=\"noreferrer noopener\" href=\"http:\/\/10.20.200.80\/glpi\/install\/install.php\" target=\"_blank\">http:\/\/10.20.200.80\/glpi\/install\/install.php<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Instalaci\u00f3n<\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"843\" height=\"292\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_021.png\" alt=\"\" class=\"wp-image-4755\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_021.png 843w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_021-300x104.png 300w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_021-768x266.png 768w\" sizes=\"(max-width: 843px) 100vw, 843px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"817\" height=\"574\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_022.png\" alt=\"\" class=\"wp-image-4756\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_022.png 817w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_022-300x211.png 300w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_022-768x540.png 768w\" sizes=\"(max-width: 817px) 100vw, 817px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"825\" height=\"375\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_023.png\" alt=\"\" class=\"wp-image-4757\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_023.png 825w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_023-300x136.png 300w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_023-768x349.png 768w\" sizes=\"(max-width: 825px) 100vw, 825px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\"><li>Si nos da el error<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"694\" height=\"114\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_024.png\" alt=\"\" class=\"wp-image-4759\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_024.png 694w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_024-300x49.png 300w\" sizes=\"(max-width: 694px) 100vw, 694px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\"><li>Hacemos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>nano \/etc\/apache2\/apache2.conf<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Buscamos y remplazamos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;Directory \/var\/www\/&gt;\n        Options Indexes FollowSymLinks\n        AllowOverride None\n        Require all granted\n&lt;\/Directory&gt;\n\n\n&lt;Directory \/var\/www\/&gt;\n        Options Indexes FollowSymLinks\n        AllowOverride All\n        Require all granted\n&lt;\/Directory&gt;\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Reiniciamos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>\/etc\/init.d\/apache2 restart<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Listo tenemos todo en verde<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"545\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_025.png\" alt=\"\" class=\"wp-image-4761\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_025.png 719w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_025-300x227.png 300w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\"><li>Nos conectamos con el usuario remoto<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"821\" height=\"478\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_026.png\" alt=\"\" class=\"wp-image-4765\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_026.png 821w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_026-300x175.png 300w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_026-768x447.png 768w\" sizes=\"(max-width: 821px) 100vw, 821px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\"><li>Creamos la base de datos \u00abbd_sis_glpi_siua\u00bb<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"838\" height=\"420\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_027.png\" alt=\"\" class=\"wp-image-4766\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_027.png 838w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_027-300x150.png 300w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_027-768x385.png 768w\" sizes=\"(max-width: 838px) 100vw, 838px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\"><li>Comienza a crear la base de datos<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"841\" height=\"315\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_028.png\" alt=\"\" class=\"wp-image-4770\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_028.png 841w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_028-300x112.png 300w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_028-768x288.png 768w\" sizes=\"(max-width: 841px) 100vw, 841px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\"><li>Este paso puede tardar bastante<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"838\" height=\"551\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_029.png\" alt=\"\" class=\"wp-image-4772\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_029.png 838w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_029-300x197.png 300w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_029-768x505.png 768w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_029-120x80.png 120w\" sizes=\"(max-width: 838px) 100vw, 838px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"820\" height=\"418\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_030.png\" alt=\"\" class=\"wp-image-4774\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_030.png 820w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_030-300x153.png 300w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_030-768x391.png 768w\" sizes=\"(max-width: 820px) 100vw, 820px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"830\" height=\"419\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_031.png\" alt=\"\" class=\"wp-image-4776\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_031.png 830w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_031-300x151.png 300w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_031-768x388.png 768w\" sizes=\"(max-width: 830px) 100vw, 830px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"469\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_032-1024x469.png\" alt=\"\" class=\"wp-image-4778\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_032-1024x469.png 1024w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_032-300x137.png 300w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_032-768x351.png 768w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_032.png 1228w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\"><li>Como indica la advertencia vamos a modificar los datos de los diferentes usuarios<\/li><li>Editamos<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"779\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_008-1024x779.png\" alt=\"\" class=\"wp-image-4781\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_008-1024x779.png 1024w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_008-300x228.png 300w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_008-768x584.png 768w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_008.png 1104w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"500\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_007-1024x500.png\" alt=\"\" class=\"wp-image-4782\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_007-1024x500.png 1024w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_007-300x146.png 300w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_007-768x375.png 768w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_007.png 1449w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\"><li>como podemos ver se nos presenta el error<\/li><li>Timezones seems not loaded, see https:\/\/glpi-install.readthedocs.io\/en\/latest\/timezones.html.<\/li><li>Ingresamos a mysql<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Tratamos de ejecutar<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>SET GLOBAL time_zone = 'America\/Costa_Rica';<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Si nos da el error<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>ERROR 1298 (HY000): Unknown or incorrect time zone: 'America\/Costa_Rica'<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Debemos salir de mysql y ejecutar<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql_tzinfo_to_sql \/usr\/share\/zoneinfo\/|mysql -u root mysql -p<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Resultado<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>Warning: Unable to load '\/usr\/share\/zoneinfo\/\/iso3166.tab' as time zone. Skipping it.\nWarning: Unable to load '\/usr\/share\/zoneinfo\/\/leap-seconds.list' as time zone. Skipping it.\nWarning: Unable to load '\/usr\/share\/zoneinfo\/\/leapseconds' as time zone. Skipping it.\nWarning: Unable to load '\/usr\/share\/zoneinfo\/\/tzdata.zi' as time zone. Skipping it.\nWarning: Unable to load '\/usr\/share\/zoneinfo\/\/zone.tab' as time zone. Skipping it.\nWarning: Unable to load '\/usr\/share\/zoneinfo\/\/zone1970.tab' as time zone. Skipping it.\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Volvemos a ingresar a mysql<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql\nSET GLOBAL time_zone = 'America\/Costa_Rica';\n\n#Resultado\nQuery OK, 0 rows affected (0.00 sec)\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Verificamos<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>SHOW GLOBAL VARIABLES LIKE 'time_zone';\n\n#Resultado\n+---------------+--------------------+\n| Variable_name | Value              |\n+---------------+--------------------+\n| time_zone     | America\/Costa_Rica |\n+---------------+--------------------+\n1 row in set (0.00 sec)\n\n#Salimos\nexit;\n\n#Reiniciamos mysql\nservice mysql restart<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Ya corregimos el error<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"443\" height=\"127\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_009.png\" alt=\"\" class=\"wp-image-4783\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_009.png 443w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_009-300x86.png 300w\" sizes=\"(max-width: 443px) 100vw, 443px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\"><li>Ahora modificamos la contrase\u00f1a de los demas usuarios AC2<\/li><li>Y luego por medidas de seguridad eliminamos la carpeta de instalaci\u00f3n<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/var\/www\/html\/glpi\nrm install\/install.php<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Listo sin errores<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"284\" src=\"\/wp-content\/uploads\/2021\/05\/Seleccion_010-1024x284.png\" alt=\"\" class=\"wp-image-4786\" srcset=\"https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_010-1024x284.png 1024w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_010-300x83.png 300w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_010-768x213.png 768w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_010-1536x426.png 1536w, https:\/\/sada.services\/wp-content\/uploads\/2021\/05\/Seleccion_010.png 1622w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Guia: https:\/\/glpi-install.readthedocs.io\/en\/latest\/index.html Preparaci\u00f3n del servidor Sistema Instalamos Actualizamos PHP Agregamos repositorio Buscamos m\u00f3dulos Instalamos Apache Instalamos Si nos da el error Ejecutamos Php.ini Abrimos el archivo Modificamos MYSQL Instalamos Configuramos Resultado Crear usuario remoto Ingresamos a mysql Podemos consultar el tipo de autenticaci\u00f3n de los usuarios Creamos usuario remoto Creamos la base de datos \u00abbd_sis_glpi_siua\u00bb [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[292],"tags":[],"class_list":["post-4739","post","type-post","status-publish","format-standard","hentry","category-glpi"],"blocksy_meta":{"styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6}},"_links":{"self":[{"href":"https:\/\/sada.services\/index.php?rest_route=\/wp\/v2\/posts\/4739","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sada.services\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sada.services\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sada.services\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/sada.services\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4739"}],"version-history":[{"count":30,"href":"https:\/\/sada.services\/index.php?rest_route=\/wp\/v2\/posts\/4739\/revisions"}],"predecessor-version":[{"id":4787,"href":"https:\/\/sada.services\/index.php?rest_route=\/wp\/v2\/posts\/4739\/revisions\/4787"}],"wp:attachment":[{"href":"https:\/\/sada.services\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4739"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sada.services\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4739"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sada.services\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4739"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}