Securing the MySQL server deployment.
Enter password for user root:
VALIDATE PASSWORD PLUGIN can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD plugin?
Press y|Y for Yes, any other key for No: y
There are three levels of password validation policy:
LOW Length >= 8
MEDIUM Length >= 8, numeric, mixed case, and special characters
STRONG Length >= 8, numeric, mixed case, special characters and dictionary file
Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 1
Using existing password for root.
Estimated strength of the password: 100
Change the password for root ? ((Press y|Y for Yes, any other key for No) : n
... skipping.
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? (Press y|Y for Yes, any other key for No) : 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? (Press y|Y for Yes, any other key for No) : y
Success.
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? (Press y|Y for Yes, any other key for No) : y
- 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? (Press y|Y for Yes, any other key for No) : y
Success.
All done!
echo "deb http://download.onlyoffice.com/repo/debian squeeze main" | tee /etc/apt/sources.list.d/onlyoffice.list
Actualizamos
apt-get update
Instalamos
apt-get install onlyoffice-communityserver
Nos pide la contraseña de MYSQL
Ingresamos el navegador
http://10.20.200.48/
Ingresamos los datos
Pas:AC2
Si nos da problemas de codificación:
locale-gen en_US en_US.UTF-8
dpkg-reconfigure locales
reboot
mysql -u root -p
USE onlyoffice
select textValue from res_data where cultureTitle='ru' limit 1;
delete from res_data;
source /var/www/onlyoffice/Sql/onlyoffice.resources.sql
exit
service monoserve restart
Instalar certificados
DNS
Agregamos el dominio office.siua.ac.cr -> 10.20.200.48 / 181.193.87.6
NameVirtualHost 181.193.87.6:80
<VirtualHost 181.193.87.6:80>
#************************************************************************
#******************* DATOS DEL SITIO WEB ********************************
#************************************************************************
ServerName office.siua.ac.cr
ServerAlias www.office.siua.ac.cr
ErrorLog /var/log/apache2/office_80.siua.ac.cr-error.log
CustomLog /var/log/apache2/office_80.siua.ac.cr-access.log common
#************************************************************************
#********************** DATOS DEL WEBMASTER *****************************
#************************************************************************
ServerAdmin interuniversitariadealajuela@gmail.com
Header add Author "Unidad de Gestion e Innovacion Tecnologica"
#************************************************************************
#************************** DATOS DEL REDIRECCIONAMIENTO ****************
#************************************************************************
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost 181.193.87.6:443>
#************************************************************************
#******************* DATOS DEL SITIO WEB ********************************
#************************************************************************
ServerName office.siua.ac.cr
ServerAlias www.office.siua.ac.cr
ErrorLog /var/log/apache2/office_443.siua.ac.cr-error.log
CustomLog /var/log/apache2/office_443.siua.ac.cr-access.log common
#************************************************************************
#********************** DATOS DEL WEBMASTER *****************************
#************************************************************************
ServerAdmin interuniversitariadealajuela@gmail.com
Header add Author "Unidad de Gestion e Innovacion Tecnologica"
#************************************************************************
#********************* DATOS DEL REDIRECCIONAMIENTO *********************
#************************************************************************
ProxyPreserveHost On
ProxyRequests off
SSLProxyEngine on
ProxyPass / https://10.20.200.48/
ProxyPassReverse / https://10.20.200.48/
#************************************************************************
#********************** DATOS DEL CERTIFICADO ***************************
#************************************************************************
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/office.siua.ac.cr/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/office.siua.ac.cr/privkey.pem
</VirtualHost>
</IfModule>
Recargamos apache
systemctl reload apache2
ONLYOFFICE
Creamos la carpeta donde se guardan los certificados
server {
listen 80;
server_name office.siua.ac.cr;
rewrite ^ https://$http_host$request_uri? permanent; # force redirect http to https
# Enables or disables emitting nginx version on error pages and in the "Server" response header field.
server_tokens off;
}
Agregamos el servidor 443
server {
listen 443;
server_name office.siua.ac.cr;
server_tokens off;
charset utf-8;
ssl on;
ssl_certificate /var/www/onlyoffice/Data/certs/fullchain.pem; # managed by Certbot
ssl_certificate_key /var/www/onlyoffice/Data/certs/privkey.pem; # managed by Certbot
add_header Access-Control-Allow-Origin *;
large_client_header_buffers 4 16k;
set $X_REWRITER_URL $the_scheme://$the_host;
if ($http_x_rewriter_url != '') {
set $X_REWRITER_URL $http_x_rewriter_url ;
}
include /etc/nginx/includes/onlyoffice-communityserver-*.conf;
}
NameVirtualHost 181.193.87.6:80
<VirtualHost 181.193.87.6:80>
#************************************************************************
#******************* DATOS DEL SITIO WEB ********************************
#************************************************************************
ServerName document.siua.ac.cr
ServerAlias www.document.siua.ac.cr
ErrorLog /var/log/apache2/document_80.siua.ac.cr-error.log
CustomLog /var/log/apache2/document_80.siua.ac.cr-access.log common
#************************************************************************
#********************** DATOS DEL WEBMASTER *****************************
#************************************************************************
ServerAdmin interuniversitariadealajuela@gmail.com
Header add Author "Unidad de Gestion e Innovacion Tecnologica"
#************************************************************************
#************************** DATOS DEL REDIRECCIONAMIENTO ****************
#************************************************************************
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost 181.193.87.6:443>
#************************************************************************
#******************* DATOS DEL SITIO WEB ********************************
#************************************************************************
ServerName document.siua.ac.cr
ServerAlias www.document.siua.ac.cr
ErrorLog /var/log/apache2/document_443.siua.ac.cr-error.log
CustomLog /var/log/apache2/document_443.siua.ac.cr-access.log common
#************************************************************************
#********************** DATOS DEL WEBMASTER *****************************
#************************************************************************
ServerAdmin interuniversitariadealajuela@gmail.com
Header add Author "Unidad de Gestion e Innovacion Tecnologica"
#************************************************************************
#********************* DATOS DEL REDIRECCIONAMIENTO *********************
#************************************************************************
ProxyPreserveHost On
ProxyRequests off
SSLProxyEngine on
ProxyPass / https://10.20.200.49/
ProxyPassReverse / https://10.20.200.49/
#************************************************************************
#********************** DATOS DEL CERTIFICADO ***************************
#************************************************************************
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/document.siua.ac.cr/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/document.siua.ac.cr/privkey.pem
</VirtualHost>
</IfModule>
Reiniciamos apache
systemctl reload apache2
Servidor DOCUMENT
Creamos una carpeta para almacenar los certificados