CentOS7.3部署WGCloud系統

CentOS7.3 安裝 WGCloud


Server端:

JDK1.8安裝

yum -y install java-1.8.0-openjdk*x86_64

Mysql5.7 安裝
安裝

yum -y install http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm && yum -y install mysql-community-server && systemctl start mysqld && grep 'temporary password' /var/log/mysqld.log

修改密碼

set global validate_password_policy=LOW;
set global validate_password_length=6;
ALTER USER 'root'@'localhost' IDENTIFIED BY '**';
flush privileges;
CREATE DATABASE wgcloud CHARACTER SET utf8 COLLATE utf8_general_ci;
GRANT ALL PRIVILEGES ON . TO 'wgcloud'@'%' IDENTIFIED BY '*****' WITH GRANT OPTION;
flush privileges;


防火牆

firewall-cmd --list-all
firewall-cmd --permanent --add-port=3306/tcp
service firewalld restart

mkdir -p /export/servers && cd /export/servers
wget https://wgstart.com/download/wgcloud-server-v2.0.tar.gz
tar xf wgcloud-server-v2.0.tar.gz

修改配置

vim conf/application.yml

server:
port: 9999
servlet:
session:
timeout: 30m
context-path: /wgcloud
logging:
path: ./log
#數據庫 相關設置
spring:
application:
name: wgcloud-server
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/wgcloud?characterEncoding=utf-8&characterSetResults=utf8&autoReconnect=true&useSSL=false
username: root
password: ***
#hikari連接池的參數 相關設置
hikari:
validationTimeout: 3000
connectionTimeout: 60000
idleTimeout: 60000
minimumIdle: 10
maximumPoolSize: 10
maxLifeTime: 60000
connectionTestQuery: select 1
mvc:
static-path-pattern: /static/

thymeleaf:
cache: false
mybatis:
config-location: classpath:mybatis/mybatis-config.xml
mapper-locations: classpath:mybatis/mapper/*.xml

#自定義配置參數
base:
#登陸賬號admin的密碼
admindPwd: 111111

啓動:

sh start.sh

登錄:
啓動後通過http://192.168.1.1:9999/wgcloud訪問
默認登陸賬號密碼:admin/111111

Client端:

JDK1.8安裝

yum -y install java-1.8.0-openjdk*x86_64

wgcloud-agent安裝

mkdir /export/servers
wget https://wgstart.com/download/wgcloud-agent-v2.0.tar.gz
tar xf wgcloud-agent-v2.0.tar.gz

修改配置

vim conf/application.yml
server:
port: 9998
servlet:
context-path: /wgcloud-agent
spring:
application:
name: wgcloud-agent
logging:
path: ./log

#自定義配置參數
base:
#wgcloud-server端訪問地址
serverUrl: http://127.0.0.1:9999
#本機ip,不要用localhost或127.0.0.1
bindIp: 192.168.1.2
#監控本機進程id,可以爲空
appId: 9870

啓動:

sh start.sh

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章