最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

centos 部署整套應(yīng)用

2023-03-26 01:42 作者:小劉Java之路  | 我要投稿

分享:服務(wù)器部署java的環(huán)境和應(yīng)用

初始化 ECS

購買 ECS

  • 阿里云 ECS 官網(wǎng)?https://www.aliyun.com/minisite/goods?userCode=ueyxv2qf

  • 數(shù)據(jù)庫/redis 等也安裝在云上?鏡像選擇centos7

img

初始化 CentOS7

curl -O http://pigx.vip/os7init.sh

sh os7init.sh pig4cloud

安裝 JDK

yum install -y java

java -version

安裝 Mysql 8

https://dev.mysql.com/downloads/

rpm -ivh ?xx.rpm

yum install -y mysql mysql-server

vi /etc/my.cnf

lower_case_table_names=1

systemctl restart mysqld

grep password /var/log/mysqld.log

set global validate_password.check_user_name=0;
set global validate_password.policy=0;
set global validate_password.length=1;

alter user 'root'@'localhost' identified by 'root';

use mysql;

update user set host = '%' where user = 'root';

FLUSH PRIVILEGES;

安裝 Redis

yum install redis

systemctl restart redis

安裝 NGINX

  • https://nginx.org/en/linux_packages.html

vim /etc/yum.repos.d/nginx.repo

[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true

[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
gpgcheck=1
enabled=0
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true

yum install -y yum-utils
yum-config-manager --enable nginx-mainline
yum install -y nginx

配置 hosts

vim /etc/hosts

127.0.0.1 ? pig-mysql
127.0.0.1 ? pig-redis
127.0.0.1 ? pig-gateway
127.0.0.1 ? pig-register
127.0.0.1 ? pig-sentinel
127.0.0.1 ? pig-job

source /etc/hosts

部署 pig

準(zhǔn)備源碼包

  • pig 服務(wù)端 編譯 jar

mvn clean install

  • pig-ui 前端 編譯 dist

npm run build

初始化數(shù)據(jù)庫

  • pig db目錄

source pig.sql
source pig_codegen.sql
source pig_config.sql
source pig_job.sql

啟動服務(wù)端

nohup java -Dfile.encoding=utf-8 -jar pig-register.jar > /dev/null 2>&1 &

nohup java -Dfile.encoding=utf-8 -jar pig-monitor.jar > /dev/null 2>&1 &
nohup java -Dfile.encoding=utf-8 -jar pig-sentinel-dashboard.jar > /dev/null 2>&1 &
nohup java -Dfile.encoding=utf-8 -jar pig-xxl-job-admin.jar > /dev/null 2>&1 &

nohup java -Dfile.encoding=utf-8 -jar pig-gateway.jar > /dev/null 2>&1 &
nohup java -Dfile.encoding=utf-8 -jar pig-auth.jar > /dev/null 2>&1 &
nohup java -Dfile.encoding=utf-8 -jar pig-upms-biz.jar > /dev/null 2>&1 &

部署前端

mkdir -p /data/pig-ui && cp -r dist/* /data/pig-ui

cd /etc/nginx/conf.d && rm -f default.conf

vim pigx.conf

server {
? ?listen 80;
? ?server_name localhost;
? ?
? ?# 打包好的dist目錄文件,放置到這個目錄下
? ?root /data/pig-ui;
? ?
? ?# 注意維護新增微服務(wù),gateway 路由前綴
? ?location ~* ^/(code|auth|admin|gen) {
? ? ? proxy_pass http://127.0.0.1:9999;
? ? ? #proxy_set_header Host $http_host;
? ? ? proxy_connect_timeout 15s;
? ? ? proxy_send_timeout 15s;
? ? ? proxy_read_timeout 15s;
? ? ? proxy_set_header X-Real-IP $remote_addr;
? ? ? proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
? ? ? proxy_set_header X-Forwarded-Proto http;
? ?}
}

nginx

ECS 安全組

  • 注意配置安全組,服務(wù)相關(guān)的端口對外暴露

img
  • 80/443

  • 9999 網(wǎng)關(guān) (如需訪問swagger 需要)

  • 5001 監(jiān)控 (如需訪問monitor 需要)

  • 5020 監(jiān)控 (如需訪問monitor 需要)


centos 部署整套應(yīng)用的評論 (共 條)

分享到微博請遵守國家法律
田阳县| 巴南区| 东至县| 淮安市| 齐河县| 桦川县| 阳曲县| 乌兰察布市| 汶上县| 绥中县| 镇巴县| 鹰潭市| 垣曲县| 毕节市| 宜丰县| 佛教| 泗水县| 和平区| 岑巩县| 平潭县| 迁西县| 章丘市| 庆城县| 惠水县| 若羌县| 大丰市| 盐亭县| 杭锦后旗| 调兵山市| 临海市| 锡林浩特市| 大理市| 库伦旗| 临沂市| 渝中区| 新河县| 海安县| 社会| 洱源县| 兴安县| 合山市|