Configuration Management Center SCCA under Micro Services

Introduction to SCCA SCCA is called spring-cloud-config-admin, and Spring Boot applications (including Spring Cloud) are unified configuration management platforms under micro services. Github address: spring-cloud-config-admin Core Contributors: Programmer DD | stone-jin Tags: lightweight, easy to use, visually good, interactive Deploy ...

Posted by sebthib55 on Sat, 16 Nov 2019 23:54:10 -0800

Saltstack? Use guide 08? Remote execution - return procedure

1. Host planning   salt version 1 [root@salt100 ~]# salt --version 2 salt 2018.3.3 (Oxygen) 3 [root@salt100 ~]# salt-minion --version 4 salt-minion 2018.3.3 (Oxygen)   Returners document https://docs.saltstack.com/en/latest/ref/returners/index.html   Returner Modules documentation https://docs.saltstack.com/en/latest/ref ...

Posted by KrisCons on Fri, 15 Nov 2019 10:49:19 -0800

mysql master-slave replication, add new slave server

Master-slave replication, adding slave servers Three mysql servers. One is the master and one is the slave, realizing automatic backup. Add a new slave server System: CentOS 7.6 mariadb: 5.5.60 Primary server: [root@Centos7 ~]#vim /etc/my.cnf [mysqld] server_id=7 #Set server ID log_bin #Open binary log Start mysql, View b ...

Posted by imcomguy on Fri, 15 Nov 2019 07:20:30 -0800

Mysql/Mariadb master-slave replication

concept What is Mysql/Mariadb master-slave replication?      Mysql/Mariadb Master-slave replication: when the Master database changes, the changes will be synchronized to the slave database in real time; Similar to: Samba shared file (C/S), NFS network file share (C/S), when the Server changes, the client data content will change accord ...

Posted by lalov1 on Tue, 12 Nov 2019 02:42:11 -0800

Technology sharing | login MySQL safely without password

By Daniel gusman BurgosGuan ChanglongOriginal text: https://www.percona.com/blog/... Some people say the best password is one you don't have to remember. The auth? Socket plug-in and MariaDB's UNIX? Socket make this idea possible on MySQL. auth_socket: https://dev.mysql.com/doc/ref... unix_socket: https://mariadb.com/kb/en/lib... Although t ...

Posted by Baumusu on Fri, 08 Nov 2019 02:27:29 -0800

[CentOS 7LAMP Architecture 2], MariaDB installation and configuration#

shallow A kind of ove Installing MariaDB cd /usr/lcoal/src wget https://downloads.mariadb.com/MariaDB/mariadb-10.2.6/bintar-linux-glibc_214-x86_64/mariadb-10.2.6-linux-glibc_214-x86_64.tar.gz tar zxvf mariadb-10.2.6-linux-glibc_214-x86_64.tar.gz mv mariadb-10.2.6-linux-glibc_214-x86_64 /usr/local/mariadb cd /usr/local/mariadb ./scripts/mys ...

Posted by MobiTec on Fri, 01 Nov 2019 08:48:57 -0700

Install and configure MySQL database on Linux platform

Linux system version: CentOS 7.4MySQL version: 5.7.28There are three installation methods in Linux platform, RPM package, binary package and source package. This file mainly takes RPM package as an example to introduce how to install MySQL on Linux platform.Download address: https://dev.mysql.com/downloads/mysql/ The specific steps to install ...

Posted by UnknownPlayer on Tue, 29 Oct 2019 09:27:04 -0700

Detailed Explanation of Building zabbix Monitoring System

In order to understand the running status of the server in real time and solve the problems in time, it is a good choice to use monitoring software, while zabbix monitoring system stands out among many monitoring software. Zabbix is an enterprise-level open source monitoring software based on web interface. The Zabbix server needs LAMP or LNMP ...

Posted by serenade2 on Sat, 12 Oct 2019 13:48:35 -0700

Centos7 installs jumpserver fortress

1. Firewall Selinux settings echo -e "\033[31m 1. firewall Selinux Set up \033[0m" \ && if [ "$(systemctl status firewalld | grep running)" != "" ]; then firewall-cmd --zone=public --add-port=80/tcp --permanent; firewall-cmd --zone=public --add-port=2222/tcp --permanent; firewall-cmd --permanent --add-rich-rule="rule family="ipv4" sour ...

Posted by mr_badger on Fri, 11 Oct 2019 11:18:37 -0700

Linux system: install Jdk8, Tomcat8, MySQL 5.7 environment under centos7

1. JDK1.8 Environment Construction 1. Upload files to decompress [root@localhost mysoft]# tar -zxvf jdk-8u161-linux-x64.tar.gz [root@localhost mysoft]# pwd /usr/local/mysoft [root@localhost mysoft]# mv jdk1.8.0_161 jdk1.8 2. Check the environment. Installed and deleted [root@localhost mysoft]# ps -aux|grep java [root@localhost mysoft]# rpm -e - ...

Posted by onlyican on Thu, 10 Oct 2019 14:25:38 -0700