Browse Source

添加litemall_schema脚本,并且在上传脚本中自动打包数据库相关文件。

Junling Bu 7 years ago
parent
commit
535f54a8b8
4 changed files with 35 additions and 4 deletions
  1. 2 0
      deploy/.gitignore
  2. 22 4
      deploy/README.md
  3. 4 0
      deploy/util/upload.sh
  4. 7 0
      litemall-db/sql/litemall_schema.sql

+ 2 - 0
deploy/.gitignore

@@ -2,3 +2,5 @@
 /litemall-os-api/litemall-os-api.jar
 /litemall-wx-api/litemall-wx-api.jar
 /litemall-admin/dist.tar
+/litemall-db/litemall.sql
+/litemall-db/litemall_schema.sql

+ 22 - 4
deploy/README.md

@@ -9,13 +9,25 @@
 
 3. 使用PuTTY登录云主机
 
-4. 运行脚本部署运行
+4. 如果用户没有部署litemall数据库,可以运行以下命令:
+
+    ```bash
+    cd deploy
+    mysql -h localhost -u root -p123456 
+    source ./litemall-db/litemall_schema.sql 
+    source ./litemall-db/litemall.sql 
+    ```
+    注意,123456是用户所设置的MySQL管理员密码
+    警告:
+    > litemall_schema.sql会尝试删除litemall数据库然后重建一个新的数据。
+
+5. 运行脚本部署运行
 
     ```bash
     sudo ./deploy/bin/deploy.sh
     ```
 
-5. 测试部署是否成功
+6. 测试部署是否成功
   
     请确保云主机的安全组已经允许相应的端口(见1.5.3.1);
     然后测试是否部署成功(xxx.xxx.xxx.xxx是云主机IP):
@@ -27,6 +39,12 @@
     http://xxx.xxx.xxx.xxx:8080/#/login
     ```
 
-6. 自动上传脚本
+7. 自动上传脚本
 
-    为了简化步骤1和步骤2,完成了util/upload.sh脚本,用户需要设置相应的云主机IP和密钥文件路径
+    为了简化步骤1和步骤2,完成了util/upload.sh脚本,用户需要设置相应的云主机IP和密钥文件路径。
+    该脚本会自动把当前项目不同模块下的最终部署文件复制到deploy文件夹中,然后上传到云主机。
+    注意:
+    > 上传脚本没有自动做Spring Boot项目打包和Vue项目打包工作
+    > 因此运行该脚本前请确认最终部署文件已经生成。
+    > 如果用户觉得需要,可以自行在upload.sh脚本中添加相应的编译打包命令。
+   

+ 4 - 0
deploy/util/upload.sh

@@ -19,5 +19,9 @@ cp  -f ./litemall-admin-api/target/litemall-admin-api-*.jar ./deploy/litemall-ad
 # 压缩litemall-admin应用
 tar -zcvf ./deploy/litemall-admin/dist.tar -C ./litemall-admin/dist .
 
+# 复制数据库
+cp  -f ./litemall-db/sql/litemall_schema.sql ./deploy/litemall_db/litemall_schema.sql
+cp  -f ./litemall-db/sql/litemall.sql ./deploy/litemall_db/litemall.sql
+
 # 上传云主机
 scp -i $ID_RSA -r  ./deploy ubuntu@$CVM:/home/ubuntu/

+ 7 - 0
litemall-db/sql/litemall_schema.sql

@@ -0,0 +1,7 @@
+drop database if exists litemall;
+drop user if exists 'litemall'@'localhost';
+create database litemall;
+use litemall;
+create user 'litemall'@'localhost' identified by 'litemall123456';
+grant all privileges on litemall.* to 'litemall'@'localhost';
+flush privileges;