Centos7 悟空crm安装部署

准备一台Centos7的虚拟机

在这里插入图片描述

关掉防火墙

[root@localhost ~]# systemctl stop firewalld
[root@localhost ~]# setenforce 0

1.准备jdk环境

[root@localhost ~]# rpm -ivh jdk-8u131-linux-x64_.rpm 
准备中...                          ################################# [100%]
正在升级/安装...
   1:jdk1.8.0_131-2000:1.8.0_131-fcs  ################################# [100%]
Unpacking JAR files...
	tools.jar...
	plugin.jar...
	javaws.jar...
	deploy.jar...
	rt.jar...
	jsse.jar...
	charsets.jar...
	localedata.jar...
[root@localhost ~]# java -version
java version "1.8.0_131"
Java(TM) SE Runtime Environment (build 1.8.0_131-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.131-b11, mixed mode)

2.安装启动tomcat

[root@localhost ~]# mkdir /home/tomcat
[root@localhost ~]# cd /home/tomcat/
[root@localhost ~]# wget http://archive.apache.org/dist/tomcat/tomcat-9/v9.0.8/bin/apache-tomcat-9.0.8.tar.gz  
[root@localhost tomcat]# tar xzf apache-tomcat-9.0.8.tar.gz 
[root@localhost tomcat]# apache-tomcat-9.0.8/bin/startup.sh 
Using CATALINA_BASE:   /home/tomcat/apache-tomcat-9.0.8
Using CATALINA_HOME:   /home/tomcat/apache-tomcat-9.0.8
Using CATALINA_TMPDIR: /home/tomcat/apache-tomcat-9.0.8/temp
Using JRE_HOME:        /usr
Using CLASSPATH:       /home/tomcat/apache-tomcat-9.0.8/bin/bootstrap.jar:/home/tomcat/apache-tomcat-9.0.8/bin/tomcat-juli.jar
Tomcat started.

[root@localhost tomcat]# netstat -nlput |grep 8080
tcp6       0      0 :::8080                 :::*                    LISTEN      11737/java          

3.安装启动mysql数据库

[root@localhost tomcat]# mkdir /home/mysql
[root@localhost tomcat]# cd /home/mysql/
[root@localhost mysql]# wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm
[root@localhost mysql]# yum -y install mysql57-community-release-el7-10.noarch.rpm 
[root@localhost mysql]# yum -y install mysql-community-server
[root@localhost mysql]# systemctl start  mysqld.service

5.7mysql首次登录需要修改密码,先获取密码 grep password /var/log/mysqld.log

[root@localhost mysql]# grep password /var/log/mysqld.log
2020-11-09T11:09:15.473967Z 1 [Note] A temporary password is generated for root@localhost: qFRkhJBVY7_a

获取到mysql初始密码,登录mysql并修改密码 mysql -uroot -p
输入获取到的密码
进入数据库后,执行修改密码语句:

[root@localhost mysql]# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.32

Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.

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>alter user 'root'@'localhost' identified by '新密码'; 
新密码需要符合5.7的密码复杂度要求,弱密码用不了。
修改完密码后,必须执行刷新策略。
mysql>flush privileges;
mysql>exit

退出数据库后,重启服务,service mysqld restart

4.安装启动redis

[root@localhost mysql]# mkdir /home/redis
[root@localhost mysql]# cd /home/redis/
[root@localhost redis]# tar xzf redis-5.0.5.tar.gz 
[root@localhost redis]# ls
redis-5.0.5  redis-5.0.5.tar.gz
[root@localhost redis]# cd redis-5.0.5
[root@localhost redis-5.0.5]# yum -y install gcc gcc-c++
[root@localhost redis-5.0.5]# make
启动redis
[root@localhost redis-5.0.5]# /home/redis/redis-5.0.5/src/redis-server /home/redis/redis-5.0.5/redis.conf

5.安装maven

[root@localhost ~]# mkdir /home/maven
[root@localhost ~]# cd /home/maven/
[root@localhost maven]# ls
apache-maven-3.5.4-bin.tar.gz
[root@localhost maven]# tar xzf apache-maven-3.5.4-bin.tar.gz 
[root@localhost maven]# 
[root@localhost maven]# vim /etc/profile
export MAVEN_HOME=/home/maven/apache-maven-3.5.4(此条为新增)
export PATH=$PATH:${JAVA_HOME}/bin:${CATALINA_HOME}/bin:${MAVEN_HOME}/bin(:${MAVEN_HOME}/bin为新增)

[root@localhost maven]# source /etc/profile

6.安装启动wukongcrm 导入数据

[root@localhost maven]# mkdir /home/wukongcrm
[root@localhost maven]# cd /home/wukongcrm/
[root@localhost wukongcrm]# ls
wukongcrm-72crm-java-master.zip
[root@localhost wukongcrm]# unzip wukongcrm-72crm-java-master.zip 

[root@localhost wukongcrm]# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.7.32 MySQL Community Server (GPL)

Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.

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 crm9;
mysql> use crm9;
mysql> source /home/wukongcrm/wukongcrm-72crm-java-master/docs/crm9.sql;
mysql> exit
Bye
修改配置文件

修改前 先cp备份

[root@localhost wukongcrm]# vim /home/wukongcrm/wukongcrm-72crm-java-master/src/main/resources/config/crm9-config.txt 
mysql.jdbcUrl = jdbc:mysql://127.0.0.1:3306/crm9?characterEncoding=utf8&useSSL=false&zeroDateTimeBehavior=convertToNull&tinyInt1isBit=false
mysql.user = root
mysql.password = 新设置的mysql密码
jfinal.devMode = true
[root@localhost wukongcrm]# vim /home/wukongcrm/wukongcrm-72crm-java-master/src/main/resources/config/redis.json
{
  "type":1,
  "remarks":"1为单机版,2为cluster集群,3为sentinel集群",
  "cacheName":"master",
  "host":[
    "127.0.0.1:6379"
  ],
  "password":"",         密码这一行删掉,不要注释
  "database":7
[root@localhost wukongcrm]# vim /home/wukongcrm/wukongcrm-72crm-java-master/src/main/resources/config/undertow.txt 
undertow.devMode=true
# 端口
undertow.port=8090
# host
undertow.host=127.0.0.1
[root@localhost wukongcrm]# vim /home/wukongcrm/wukongcrm-72crm-java-master/pom.xml
   <modelVersion>4.0.0</modelVersion>
    <groupId>com.kakarote</groupId>
    <artifactId>crm9</artifactId>
    <packaging>war</packaging>  #改成war
    <version>1.4.0</version>
    <name>crm9-master</name>
    
  开启tomcat:  去掉注释
 <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>4.0.1</version>
            <scope>provided</scope>
        </dependency>
[root@localhost wukongcrm]# vim /home/wukongcrm/wukongcrm-72crm-java-master/src/main/java/com/kakarote/crm9/Application.java 
全部注释
//package com.kakarote.crm9;
//import com.jfinal.server.undertow.UndertowConfig;
//import com.jfinal.server.undertow.UndertowServer;
//import com.kakarote.crm9.common.config.JfinalConfig;
//import com.kakarote.crm9.common.constant.BaseConstant;

//public class Application {
//    public static void main(String[] args) {
//        UndertowConfig config=new UndertowConfig(JfinalConfig.class,"config/undertow.txt");
//        config.setResourcePath("src/main/webapp,"+ BaseConstant.UPLOAD_PATH);
//        config.setServerName(BaseConstant.NAME);
//       UndertowServer.create(config).start();
//    }
//}

使用maven打包 过程很慢(耐心等待)

[root@localhost wukongcrm-72crm-java-master]# mvn clean package

生产war包并放置前端

将生成的cp到web根目录
[root@localhost target]# cp /home/wukongcrm/wukongcrm-72crm-java-master/target/ROOT.war  /home/tomcat/apache-tomcat-9.0.8/webapps/
会自动生成 webapps/ROOT目录并有首页index.html

直接访问http://ip:8080即可打开
在这里插入图片描述

悟空CRM采用全新的前后端分离模式,本仓库代码中已集成前端vue打包后文件,可免去打包操作 如需调整前端代码,请单独下载前端代码,前端代码在根目录的ux文件夹中 主要技术栈 后端框架:ThinkPHP 5.0.2 前端MVVM框架:Vue.JS 2.5.x 路由:Vue-Router 3.x 数据交互:Axios UI框架:Element-UI 2.6.3 悟空crm9.0的运行环境要求PHP5.6以上 一键安装 代码中已集成前端vue打包后文件,可免去打包操作: 以本地(phpstudy集成环境)搭建举例: 下载悟空CRM9.0开源版,在服务器根目录(www目录)下创建72crm文件夹,并放置代码; 浏览器访问 http://localhost/72crm/index.php/admin/install/index.html 根据安装提示步骤,完成悟空CRM9.0 的部署安装 开发依赖(需个性化安装或调整前端代码请按照以下教程,一键安装用户可忽略) 数据交互 数据交互通过axios以及RESTful架构来实现 用户校验通过登录返回的auth_key放在header 值得注意的一点是:跨域的情况下,会有预请求OPTION的情况 Server搭建 服务端使用的框架为thinkphp5.0.2,搭建前请确保拥有lamp/lnmp/wamp环境。 这里所说的搭建其实就是把server框架放入WEB运行环境,并使用80端口。 导入服务端根文件夹数据库文件public/sql/5kcrm.sql,并修改config/database.php配置文件。 配置要求 PHP >= 5.6.0 (暂不支持PHP7及以上版本) 当访问 http://localhost/, 出现“悟空软件”即代表后端接口搭建成功。 前端部署 安装node.js 前端部分是基于node.js上运行的,所以必须先安装node.js,版本要求为6.0以上 使用npm安装依赖 下载悟空CRM9.0前端代码; 可将代码放置在后端同级目录frontend,执行命令安装依赖: npm install 修改内部配置 修改请求地址或域名:config/dev.env.js里修改BASE_API(开发环境服务端地址,默认localhost) 修改自定义端口:config/index.js里面的dev对象的port参数(默认8080,不建议修改) 运行前端 npm run dev 注意:前端服务启动,默认会占用8080端口,所以在启动前端服务之前,请确认8080端口没有被占用。 程序运行之前需搭建好Server端
悟空CRM是一款开源的客户关系管理系统,它基于PHP语言开发,并且是在Apache、MySQL、PHP(简称AMP)的环境下运行的。因此,在CentOS 7上安装悟空CRM PHP版需要按照以下步骤进行操作: 1. 首先,确保系统已经安装了AMP环境。可以使用以下命令确认安装情况: ``` yum list installed httpd yum list installed mariadb-server yum list installed php ``` 2. 如果AMP环境未安装,可以通过以下命令来进行安装: ``` yum install httpd yum install mariadb-server yum install php ``` 3. 安装完成后,启动Apache和MySQL服务: ``` systemctl start httpd.service systemctl start mariadb ``` 4. 设置开机自启动: ``` systemctl enable httpd.service systemctl enable mariadb ``` 5. 下载悟空CRM安装文件,可以从官方网站获取到最新的版本。 6. 将下载的安装文件解压到Apache的默认网站目录(默认为/var/www/html): ``` tar -zxvf wukong-crm-php-x.x.x.tar.gz -C /var/www/html/ ``` 7. 创建MySQL数据库和用户: ``` mysql -u root -p CREATE DATABASE wukongcrm; CREATE USER 'wukonguser'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON wukongcrm.* TO 'wukonguser'@'localhost'; FLUSH PRIVILEGES; exit ``` 8. 修改悟空CRM的配置文件,将数据库信息和管理员账户等信息修改为正确的值: ``` cd /var/www/html/wukong-crm-php-x.x.x/ cp config.php.example config.php vi config.php ``` 9. 在浏览器中输入服务器的IP地址或域名,即可访问悟空CRM安装界面。按照页面上的提示进行安装配置即可。 以上就是在CentOS 7上安装悟空CRM PHP版的主要步骤。安装过程中需要根据具体环境进行一些微调,但是以上是大致的操作流程。
评论 17
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值