CentOS7安装部署DT固定资产管理系统

固定资产管理系统部署文档

一、准备环境

1.1、操作系统

此次部署固定资产管理系统使用的是Linux系统。CentOS 7.9

服务器配置如下:

CPU:双核 Intel(R) Pentium(R) CPU G2030 @ 3.00GHz

内存:4G

硬盘:500G

操作系统:CentOS 7.9

1.2、数据库

数据库使用MySQL数据库,要求MySQL版本在5.7.*,本次使用的是5.7.34版本。

1.3、Java

Java使用的是java-openjdk,版本要求在1.8以上。本次安装的是1.8.0.302。

安装步骤如下:

[root@Asset_Management_System ~]# yum -y install java-1.8.0-openjdk
[root@Asset_Management_System src]# java -version
openjdk version "1.8.0_302"
OpenJDK Runtime Environment (build 1.8.0_302-b08)
OpenJDK 64-Bit Server VM (build 25.302-b08, mixed mode)
[root@Asset_Management_System src]#

1.4、中间件

中间件使用的是Tomcat,版本要求在Tomcat 9 以上,本次安装的是Tomcat 9.0.20。

安装步骤如下:

[root@Asset_Management_System src]# wget https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.20/bin/apache-tomcat-9.0.20.tar.gz
[root@Asset_Management_System src]# ls apache-tomcat-9.0.20.tar.gz
apache-tomcat-9.0.20.tar.gz
[root@Asset_Management_System src]# tar -xzf apache-tomcat-9.0.20.tar.gz
[root@Asset_Management_System src]# mv apache-tomcat-9.0.20 /usr/local/tomcat
[root@Asset_Management_System src]#

二、导入初始数据

MySQL数据库中导入初始数据。

初始数据下载地址:

https://gitee.com/lank/zcdevmgr/attach_files/615231/download/dt.sql.tar.gz

数据导入步骤如下:

 [root@Asset_Management_System src]# wget https://gitee.com/lank/zcdevmgr/attach_files/615231/download/dt.sql.tar.gz
 [root@Asset_Management_System src]# tar -xzf dt.sql.tar.gz
 [root@Asset_Management_System src]# vim /etc/my.cnf
 [mysqld]
 lower_case_table_names=1
 [root@Asset_Management_System src]# /etc/init.d/mysql restart
 [root@Asset_Management_System src]#mysql -uroot -p
 Enter password:
 Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.34 MySQL Community Server (GPL)

Copyright (c) 2000, 2021, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> CREATE DATABASE IF NOT EXISTS dt default charset utf8 COLLATE utf8_general_ci;
mysql> set names utf8;
mysql> use dt;
mysql> source /usr/local/src/dt.sql

三、发布应用

将war包部署到Tomcat目录的webapps下后,修改配置文件(webapps/dt/WEB-INF/classes)中数据库的数据库配置文件config.properties
jdbc.url=jdbc:mysql://127.0.0.1:3306/dt?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
jdbc.username=root
jdbc.password=“你的密码”

修改成你所在的环境配置

应用war包下载地址:https://gitee.com/lank/zcdevmgr/attach_files/621685/download/dt.war

数据导入步骤如下:

[root@Asset_Management_System src]#wget https://gitee.com/lank/zcdevmgr/attach_files/621685/download/dt.war
[root@Asset_Management_System src]#mv dt.war /usr/local/tomcat
[root@Asset_Management_System src]# cp  dt.war /usr/local/tomcat/webapps/
[root@Asset_Management_System src]# cd /usr/local/tomcat/webapps/
[root@Asset_Management_System webapps]# ls
docs  dt.war  examples  host-manager  manager  ROOT
[root@Asset_Management_System webapps]#
[root@Asset_Management_System webapps]# /usr/local/tomcat/bin/startup.sh
Using CATALINA_BASE:   /usr/local/tomcat
Using CATALINA_HOME:   /usr/local/tomcat
Using CATALINA_TMPDIR: /usr/local/tomcat/temp
Using JRE_HOME:        /usr
Using CLASSPATH:       /usr/local/tomcat/bin/bootstrap.jar:/usr/local/tomcat/bin/tomcat-juli.jar
Tomcat started.
[root@Asset_Management_System webapps]#
[root@Asset_Management_System webapps]# ls
docs  dt  dt.war  examples  host-manager  manager  ROOT
[root@Asset_Management_System webapps]# cd dt/WEB-INF/classes/
[root@Asset_Management_System classes]# vim config.properties

四、访问资产管理系统

安装完成后,通过http://ip:port/dt/console访问资产管理系统。本次部署的访问地址是:http://192.168.0.6:8080/dt/console/。

初始登录信息:

登录方式:用户名 账户:admin 密码:oracle

资产管理系统效果图:

登录前

登录后

五、遇到的问题

5.1、发布应用后访问资产管理系统总是报404错误

这个问题的解决方法,将/usr/local/tomcat/webapps/dt/WEB-INF/web.xml,移动到上一级目录,也就是/usr/local/tomcat/webapps/dt/WEB-INF目录,然后再次访问资产管理系统,就可以了,这个问题可能和tomcat的版本有关,因为我不是开发,所以无法解释。

操作命令如下:

[root@Asset_Management_System WEB-INF]# ls
app_config_servlet.xml  classes  lib  processfiles  web.xml
[root@Asset_Management_System WEB-INF]# mv web.xml ../
[root@Asset_Management_System WEB-INF]#

你可能感兴趣的:(CentOS7安装部署DT固定资产管理系统)