Linux system: under Centos7 installation Jdk8, Tomcat8, MySQL5.7 environment

This article Source: GitHub · Click here || GitEE · Click here

A, JDK1.8 environment to build

1, upload files unzip

[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, has been installed deleted

[root@localhost mysoft]# ps -aux|grep java
[root@localhost mysoft]# rpm -e --nodeps rpm -qa | grep java

3, configure the environment variables

[root@localhost /]# vim /etc/profile
# 文件末尾追加 下面内容 shit+g 跳到文件末尾
# JAVA_HOME
export JAVA_HOME=/usr/local/mysoft/jdk1.8
export PATH=$PATH:$JAVA_HOME/bin

4, detecting successful installation

[root@localhost /]# java -version
openjdk version "1.8.0_161"
OpenJDK Runtime Environment (build 1.8.0_161-b14)
OpenJDK 64-Bit Server VM (build 25.161-b14, mixed mode)

Two, TOMCAT8 installation

1, upload the installation package

[root@localhost mysoft]# tar -zxvf apache-tomcat-8.5.40.tar.gz
[root@localhost mysoft]# mv apache-tomcat-8.5.40 tomcat8.5

2, start the service

[root@localhost bin]# pwd
/usr/local/mysoft/tomcat8.5/bin
[root@localhost bin]# ./startup.sh 
Tomcat started.

3, test access

http://127.0.0.1:8080/ OK了

Three, MySQL5.7 installation

1, uninstall the original system mariadb

[root@localhost /]# rpm -qa|grep mariadb
mariadb-libs-5.5.56-2.el7.x86_64
[root@localhost /]# rpm -e --nodeps mariadb-libs
[root@localhost /]# rpm -qa|grep mariadb

2, to obtain official address

Linux system: under Centos7 installation Jdk8, Tomcat8, MySQL5.7 environment

Linux system: under Centos7 installation Jdk8, Tomcat8, MySQL5.7 environment

地址:https://dev.mysql.com/downloads/repo/yum/
https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm

3, Yum source installation

wget https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm
[root@localhost /]# rpm -ivh mysql80-community-release-el7-3.noarch.rpm
[root@localhost /]# yum repolist all|grep mysql
mysql57-community/x86_64 MySQL 5.7 Community Server disabled
mysql80-community/x86_64 MySQL 8.0 Community Server enabled: 113
mysql80-community-source MySQL 8.0 Community Server - disabled
……..

yum source enabled by default installation package version MySQL8.0, 5.7 here switching, execute the following command;

[root@localhost /]# yum-config-manager --disable mysql80-community
[root@localhost /]# yum-config-manager --enable mysql57-community

Linux system: under Centos7 installation Jdk8, Tomcat8, MySQL5.7 environment

4, MySQL installation start

[root@localhost /]# yum install mysql-community-server
# 需要安装依赖提示,选择y
Total download size: 192 M
Installed size: 865 M
Is this ok [y/d/N]: y

View version

[root@localhost /]# mysql -V
mysql Ver 14.14 Distrib 5.7.26, for Linux (x86_64) using EditLine wrapper

Start View Status

[root@localhost /]# systemctl start mysqld.service
[root@localhost /]# systemctl status mysqld.service 
    mysqld.service - MySQL Server
 Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled)
 Active: active (running) since Tue 2019-05-14 17:26:32 CST; 31s ago

Generates a temporary password for the root account

[root@localhost /]# grep 'temporary password' /var/log/mysqld.log
2019-05-14T09:26:28.657250Z 1 [Note] A temporary password is generated for root@localhost: !Bh(GT.od9L;

Set the root user password

# 这里防止出现密码策略,强度不够的问题
mysql> set global validate_password_policy=LOW;
mysql> alter user 'root'@'localhost' identified by 'husky123456';

In this way, Java environment on the basis of the set up is completed!

Fourth, the source address

GitHub·地址
https://github.com/cicadasmile/linux-system-base
GitEE·地址
https://gitee.com/cicadasmile/linux-system-base

Linux system: under Centos7 installation Jdk8, Tomcat8, MySQL5.7 environment

Guess you like

Origin blog.51cto.com/14439672/2443752