# nacos-2.0.3-postgresql-mysql **Repository Path**: ssoss/nacos-2.0.3-postgresql-mysql ## Basic Information - **Project Name**: nacos-2.0.3-postgresql-mysql - **Description**: nacos-2.0.3兼容postgresql和mysql - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 4 - **Forks**: 0 - **Created**: 2022-01-07 - **Last Updated**: 2024-03-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # nacos-2.0.3-postgresql-mysql #### 介绍 nacos-2.0.3兼容postgresql和mysql ### 初始化sql 项目路径下:schema.sql ### 编译 导入idea后,成功加载完依赖后,执行打包命令 mvn -Prelease-nacos -Dmaven.test.skip=true -Dpmd.skip=true -Dcheckstyle.skip=true -Drat.skip=true clean install -U ### 执行 拷贝console\target下的nacos-server.jar 到 distribution\target下 在distribution\bin下启动nacos: windows: startup.cmd -m standalone linux: startup.sh -m standalone ####简易的命令行入门教程: Git 全局设置: git config --global user.name "林一" git config --global user.email "lingengkeng007@163.com" 创建 git 仓库: mkdir nacos-2.0.3-postgresql-mysql cd nacos-2.0.3-postgresql-mysql git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/ssoss/nacos-2.0.3-postgresql-mysql.git git push -u origin "master" 已有仓库? cd existing_git_repo git remote add origin https://gitee.com/ssoss/nacos-2.0.3-postgresql-mysql.git git push -u origin "master"