Linux serverNETWORK ADMINISTRATIONS

03-Instalación ESET Remote Administrator V6 on GNU/Linux CentOS 7

En este video tutorial veremos el paso a paso de la instalación de ESET Remote Administrator en GNU/Linux CentOS7, acontinuación agrego el Paso a Paso gracias al Ing. Rafael Velasquez

– yum update
– yum install bash-completion wget vim -y
– cd /etc/yum.repos.d/
– wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
– rpm -ivh mysql-community-release-el7-5.noarch.rpm
– cd
– yum install mysql-server -y
– systemctl start mysqld
– systemctl status mysqld
– systemctl enable mysqld.service
– mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!

In order to log into MySQL to secure it, we’ll need the current
password for the root user. If you’ve just installed MySQL, 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):
ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ (using password: YES)
Enter current password for root (enter for none):
OK, successfully used password, moving on…

Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.

Set root password? [Y/n] y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
… Success!

By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL 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] y
… 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] n
… skipping.

By default, MySQL 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] y
– Dropping test database…
ERROR 1008 (HY000) at line 1: Can’t drop database ‘test’; database doesn’t exist
… Failed! Not critical, keep moving…
– 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] y
… Success!

All done! If you’ve completed all of the above steps, your MySQL
installation should now be secure.

Thanks for using MySQL!

Cleaning up…

— Requisitos de instalcion de el ERA Server

– yum install mysql-connector-odbc xorg-x11-server-Xvfb cifs-utils -y

— Configurar my.cnf

– vim /etc/my.cnf
[mysqld]
max_allowed_packet=33M
innodb_log_files_in_group=2
innodb_log_file_size=128M

— restart mysqld.service
systemctl restart mysqld

–Crear carperta para descargar paquetes de instalacion
– mkdir esetdw
– wget https://download.eset.com/com/eset/apps/business/era/server/linux/latest/server-linux-x86_64.sh
– wget https://download.eset.com/com/eset/apps/business/era/webconsole/latest/era.war
– wget https://download.eset.com/com/eset/apps/business/era/agent/latest/agent-linux-x86_64.sh
– cd

– vim /etc/sysconfig/selinux
SELINUX=disabled

— Instalacion del Server

– chmod +x server-linux-x86_64.sh agent-linux-x86_64.sh

./server-linux-x86_64.sh –skip-license –locale=es_Cl –db-driver=’MySQL ODBC 5.3 Unicode Driver’ –db-hostname=127.0.0.1 –db-port=3306 –db-admin-username=root –db-admin-password=Admin123 –server-root-password=Admin123 –db-user-username=root –db-user-password=Admin123 –cert-hostname=”*”

— Instalacion del la consola Web
– yum install java-1.8.0-openjdk tomcat -y
– cp era.war /var/lib/tomcat/webapps/
– systemctl restart tomcat
– systemctl enable tomcat.service

– systemctl status firewalld
– systemctl stop firewalld
– systemctl disable firewalld

— Reiniciar el server
– init 6

— Instalacion del Agente

– ./agent-linux-x86_64.sh –skip-license –hostname=192.168.9.20 –port=2222 –webconsole-user=Administrator –webconsole-password=Admin123

source

centos 7

Leave a Reply

Your email address will not be published. Required fields are marked *