One environment Alibaba Cloud Server: CentOS 7.4 64-bit (based on RedHat) Local machine: macOS High Sierra Two compression packages JDK http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html Tomcat https://tomcat.apache.org/download-80.cgi#8.5.31 MySQL https://dev.mysql.com/downloads/mysql/ Three file transfer Enter the SFTP command to connect -> Enter the instance login password sftp root@public IP Upload put local file server path download Get the local path of the server file 4. Remote Access Enter the SSH command to connect -> enter the instance login password ssh root@public IP 5. Turn off the firewall Turn off firewall Disable the firewall startup function Check the firewall status 6. Install JDK Check whether Java is installed on the current Linux system Uninstall installed Java Create a new directory Unzip cd the directory where the jdk compressed package is located Configure the jdk environment variables and copy the following configuration into it vim /etc/profile # java environmentJAVA_HOME=/usr/local/jdk/jdk1.8.0_171CLASSPATH=.:$JAVA_HOME/lib.tools.jarPATH=$JAVA_HOME/bin:$PATHexport JAVA_HOME CLASSPATH PATH Reload the /etc/profile configuration file 7. Install Tomcat Create a new directory Unzip cd the directory where the tomcat compressed package is located Enter the bin directory start up ./startup.sh closure ./shutdown.sh 8. Install MySQL Check whether mysql is installed on the current Linux system Uninstall installed mysql Check whether mariadb is installed on the current Linux system Uninstall installed mariadb mysql dependency Create a new directory Unzip cd the directory where the mysql compressed package is located Install cd /usr/local/mysql rpm -ivh mysql-community-common-8.0.11-1.el7.x86_64.rpm rpm -ivh mysql-community-libs-8.0.11-1.el7.x86_64.rpm rpm -ivh mysql-community-client-8.0.11-1.el7.x86_64.rpm rpm -ivh mysql-community-server-8.0.11-1.el7.x86_64.rpm Initialize mysql database mysqld --initialize View mysql password more/var/log/mysqld.log Modify the user and group to which the mysql database directory belongs Start mysql database View the MySQL database status Enter the Security Settings Wizard (the new version of MySQL must first change the root user's password, otherwise you will not be able to execute any commands after logging in) Wizard 1 The existing password for the user account root has expired. Please set a new password Wizard 2 Validate Password plugin can be used to test passwords and improve security. It checks the strength of passwords and allows users to set only those passwords that are secure enough. Are you willing to install the Validate Password plugin? Wizard Three Use existing root password Wizard Four By default, MySQL is installed with anonymous users, which allow anyone to log in without having to create a user account for them. This is just for testing and to make the installation go more smoothly. You should remove them before going into a production environment. Wizard Five Normally root should only be allowed to connect to "localhost" This ensures that someone cannot guess the root password from the network (I don't understand this either. Selecting yes or no will not allow remote access. Additional settings are required, which will be discussed below) Wizard Six By default MySQL provides a database called "test" that anyone can access. This is also for testing and should be removed before going into production. Wizard Seven Reloading the privilege tables will ensure that all changes made so far will take effect immediately mysql starts by default Solving the problem java.sql.SQLException: null, message from server: "Host '113.57.183.25' is not allowed to connect to this MySQL server" Reason: MySQL does not allow remote access Solution -> Server input: Enter the MySQL login password use mysql; update user set host = '%' where user = 'root'; select host, user from user; flush privileges; java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed Reason: Retrieving public key is not allowed Solution -> Code modification: MySQL URL adds a parameter allowPublicKeyRetrieval=true jdbc:mysql://120.79.191.83:3306/web?characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true Navicat Premium 'caching_sha2_password' cannot be loaded: dlopen(../Frameworks/caching_sha2_password.so, 2): image not found Reason: MySQL 8.0 changed the authentication plugin Solution -> Server input: Enter the MySQL login password Summarize The above is the tutorial on how to install JDK Tomcat and MySQL on Linux. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Vue Element front-end application development conventional Element interface components
>>: Detailed explanation of Linux copy and paste in VMware virtual machine
The reason is that it was not uninstalled cleanly...
When we add an svg image to display, react prompt...
This article shares the specific code of the js n...
Table of contents Single-machine deployment Onlin...
The most important thing for idea to package a we...
This article example shares the specific code of ...
1. Introduction to Varnish Varnish is a high-perf...
1. What is Docker Swarm? Docker Swarm is a cluste...
As of now, the latest version of CentOS is CentOS...
The display effects on IE, Fir...
Preface After deploying the server, I visited my ...
If you want to install multiple tomcats, you must...
The happiest thing that happens in a production e...
First install ssh in Linux, taking centos as an e...
Question 1: How do you instruct the browser to dis...