# LuckysheetServerStarter **Repository Path**: mengshukeji/LuckysheetServerStarter ## Basic Information - **Project Name**: LuckysheetServerStarter - **Description**: LuckysheetServer docker deployment startup template - **Primary Language**: HTML - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 27 - **Forks**: 12 - **Created**: 2020-12-02 - **Last Updated**: 2025-01-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # LuckysheetServerStarter English| [简体中文](./README-zh.md) ## Introduction 💻[LuckysheetServer](https://github.com/mengshukeji/LuckysheetServer/) docker deployment startup template. ## Demo - [Cooperative editing demo](http://luckysheet.lashuju.com/demo/)(Note: Please do not operate frequently to prevent the server from crashing) ## Tutorial ### Folder structure ```shell C:\Users\Administrator\Desktop\lsheet>tree /f │ │ docker-compose.yml #Deployment file │ ├─java-server │ application-dev.yml #Project configuration │ application.yml #Project configuration │ web-lockysheet-server.jar #Project │ ├─nginx │ │ nginx.conf #nginx configuration │ │ │ ├─html #nginx static folder | | index.html # Luckysheet demo | | │ └─logs #nginx log folder ├─postgres │ │ init.sql #postgre initialization file │ │ │ └─data #postgres data folder └─redis │ redis.conf #redis configuration file │ ├─data #redis data folder └─logs #redis log folder ``` ### Requirements - Install [docker](https://docs.docker.com/get-docker/) - Install [docker-compose](https://docs.docker.com/compose/) - Install curl ```shell yum install curl ``` #### 1. Enter folder ![cd dir](https://img2020.cnblogs.com/blog/120439/202011/120439-20201130215031237-1786358850.png) #### 2. Set redis/logs directory permissions ```shell chmod a+rwx ./redis/logs/ ``` ![redis/logs](https://img2020.cnblogs.com/blog/120439/202011/120439-20201130215234833-651444535.png) #### 3. Start to build the image ```shell docker-compose build ``` ![build](https://img2020.cnblogs.com/blog/120439/202011/120439-20201130215315502-317406069.png) #### 4. Start the container in the background ```shell docker-compose up -d ``` ![up](https://img2020.cnblogs.com/blog/120439/202011/120439-20201130215402429-317738862.png) #### 5. View image ```shell docker ps ``` ![ps](https://img2020.cnblogs.com/blog/120439/202011/120439-20201130215652620-1451330894.png) #### 6. verification - redis verification ```shell docker exec -it [container ID] redis-cli -a '123456' ``` ![redis](https://img2020.cnblogs.com/blog/120439/202011/120439-20201130215842628-1770102098.png) - postgres verification ```shell #Enter the container docker exec -ti postgres /bin/bash #Log in to postgres psql -U postgres #List all databases \l #Switch database \c luckysheetdb #List all table names \dt #View table data select * from luckysheet; ``` ![postgres](https://img2020.cnblogs.com/blog/120439/202011/120439-20201130220215958-665241524.png) ![select](https://img2020.cnblogs.com/blog/120439/202011/120439-20201130220237119-760074998.png) - Verify java application (use test url) ```shell curl http://172.19.0.4:9004/luckysheet/test/constant?param=123 ``` ![java](https://img2020.cnblogs.com/blog/120439/202011/120439-20201130220452697-2141439848.png) - Verify that nginx accesses the java application ```shell curl http://172.19.0.101/luckysheet/test/constant?param=123 ``` ![java nginx](https://img2020.cnblogs.com/blog/120439/202011/120439-20201130220550581-323083313.png) - This example is installed on the cloud server and tested by the browser ```shell http://xx.100.104.9/luckysheet/test/constant?param=123 ``` ![browser](https://img2020.cnblogs.com/blog/120439/202011/120439-20201130220737225-1998494518.png) Visit Luckysheet demo ```shell # static demo http://xx.100.104.9 # Collaborative editing mode http://xx.100.104.9?share ``` #### 7. Configuration file - nginx configuration ```shell #Running user #user nobody; #Number of open processes <= number of CPUs worker_processes 1; #Error log save location error_log /var/log/nginx/error.log; #Process number save file pid /var/log/nginx/nginx.pid; #Waiting for event events { #Open under Linux to improve performance #use epoll; #Maximum number of connections per process (maximum connection = number of connections x number of processes) worker_connections 1024; } http { #File extension and file type mapping table include mime.types; #Default file type default_type application/octet-stream; #Log file output format .This location corresponds to the global setting log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; #Request log save location access_log /var/log/nginx/access.log main; #Open send file sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #Turn on gzip compression #gzip on; gzip on; gzip_min_length 1k; gzip_buffers 16 64k; gzip_http_version 1.0; gzip_comp_level 7; #DO NOT zip pics gzip_types text/plain application/x-javascript text/javascript application/x-httpd-php text/css text/xml text/jsp application/eot application/ttf application/otf application/svg application/woff; gzip_vary on; gzip_disable "MSIE [1-6]."; #websocket map $http_upgrade $connection_upgrade { default upgrade; '' close; } #Set the server list for load balancing upstream luckysheetserver { server 172.19.0.4:9004 weight=1; } #The first virtual host server { #Listening IP port listen 80; #Host name server_name localhost; #Set character set #charset koi8-r; #The access log of this virtual server is equivalent to a local variable #access_log logs/host.access.log main; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; location /luckysheet/websocket/luckysheet { proxy_pass http://luckysheetserver/luckysheet/websocket/luckysheet; proxy_set_header Host $host; proxy_set_header X-real-ip $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_connect_timeout 1800s; proxy_read_timeout 600s; proxy_send_timeout 600s; #websocket proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } location /luckysheet/ { proxy_pass http://luckysheetserver; proxy_connect_timeout 1800; proxy_read_timeout 600; } location / { root /usr/share/nginx/html/; index index.html index.htm; proxy_connect_timeout 1800; proxy_read_timeout 600; #websocket proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } #Dynamic and static separation location ~ .*\.(html|js|css|jpg|txt)?$ { root /usr/share/nginx/html/; #expires 3d; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html/; } } } ``` - redis configuration ```shell bind * protected-mode no port 6379 tcp-backlog 511 timeout 0 tcp-keepalive 300 supervised no pidfile /usr/local/redis/redis.pid loglevel notice logfile /usr/local/redis/logs.log databases 16 save 900 1 save 300 10 save 60 10000 stop-writes-on-bgsave-error yes rdbcompression yes rdbchecksum yes dbfilename dump.rdb dir /usr/local/redis/data/ slave-serve-stale-data yes repl-diskless-sync no repl-diskless-sync-delay 5 repl-disable-tcp-nodelay no slave-priority 100 maxmemory 500mb maxmemory-policy noeviction appendonly no appendfilename "appendonly.aof" appendfsync everysec no-appendfsync-on-rewrite no auto-aof-rewrite-percentage 100 auto-aof-rewrite-min-size 64mb aof-load-truncated yes lua-time-limit 5000 slowlog-log-slower-than 10000 slowlog-max-len 128 latency-monitor-threshold 0 notify-keyspace-events "" hash-max-ziplist-entries 512 hash-max-ziplist-value 64 list-max-ziplist-size -2 list-compress-depth 0 set-max-intset-entries 512 zset-max-ziplist-entries 128 zset-max-ziplist-value 64 hll-sparse-max-bytes 3000 activerehashing yes client-output-buffer-limit normal 0 0 0 client-output-buffer-limit slave 256mb 64mb 60 client-output-buffer-limit pubsub 32mb 8mb 60 hz 10 aof-rewrite-incremental-fsync yes requirepass 123456 ``` - postgres initialization script ```shell CREATE DATABASE luckysheetdb; \c luckysheetdb; DROP SEQUENCE IF EXISTS "public"."luckysheet_id_seq"; CREATE SEQUENCE "public"."luckysheet_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 9999999999999 START 1 CACHE 10; DROP TABLE IF EXISTS "public"."luckysheet"; CREATE TABLE "luckysheet" ( "id" int8 NOT NULL, "block_id" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, "index" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, "list_id" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, "status" int2 NOT NULL, "json_data" jsonb, "order" int2, "is_delete" int2 ); CREATE INDEX "block_id" ON "public"."luckysheet" USING btree ( "block_id" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, "list_id" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST ); CREATE INDEX "index" ON "public"."luckysheet" USING btree ( "index" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, "list_id" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST ); CREATE INDEX "is_delete" ON "public"."luckysheet" USING btree ( "is_delete" "pg_catalog"."int2_ops" ASC NULLS LAST ); CREATE INDEX "list_id" ON "public"."luckysheet" USING btree ( "list_id" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST ); CREATE INDEX "order" ON "public"."luckysheet" USING btree ( "list_id" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, "order" "pg_catalog"."int2_ops" ASC NULLS LAST ); CREATE INDEX "status" ON "public"."luckysheet" USING btree ( "list_id" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, "status" "pg_catalog"."int2_ops" ASC NULLS LAST ); ALTER TABLE "public"."luckysheet" ADD CONSTRAINT "luckysheet_pkey" PRIMARY KEY ("id"); INSERT INTO "public"."luckysheet" VALUES (nextval('luckysheet_id_seq'), 'fblock', '1', '1079500#-8803#7c45f52b7d01486d88bc53cb17dcd2c3', 1, '{"row":84,"name":"Sheet1","chart":[],"color":"","index":"1","order":0,"column":60,"config":{},"status":0,"celldata":[],"ch_width":4748,"rowsplit":[],"rh_height":1790,"scrollTop":0,"scrollLeft":0,"visibledatarow":[],"visibledatacolumn":[],"jfgird_select_save":[],"jfgrid_selection_range":{}}', 0, 0); INSERT INTO "public"."luckysheet" VALUES (nextval('luckysheet_id_seq'), 'fblock', '2', '1079500#-8803#7c45f52b7d01486d88bc53cb17dcd2c3', 0, '{"row":84,"name":"Sheet2","chart":[],"color":"","index":"2","order":1,"column":60,"config":{},"status":0,"celldata":[],"ch_width":4748,"rowsplit":[],"rh_height":1790,"scrollTop":0,"scrollLeft":0,"visibledatarow":[],"visibledatacolumn":[],"jfgird_select_save":[],"jfgrid_selection_range":{}}', 1, 0); INSERT INTO "public"."luckysheet" VALUES (nextval('luckysheet_id_seq'), 'fblock', '3', '1079500#-8803#7c45f52b7d01486d88bc53cb17dcd2c3', 0, '{"row":84,"name":"Sheet3","chart":[],"color":"","index":"3","order":2,"column":60,"config":{},"status":0,"celldata":[],"ch_width":4748,"rowsplit":[],"rh_height":1790,"scrollTop":0,"scrollLeft":0,"visibledatarow":[],"visibledatacolumn":[],"jfgird_select_save":[],"jfgrid_selection_range":{}}', 2, 0); ``` - docker-compose file ```shell version: "2" services: nginx: image: nginx:latest #restart: always container_name: nginx environment: - TZ=Asia/Shanghai ports: - "80:80" - "443:443" volumes: - ./nginx/nginx.conf:/etc/nginx/nginx.conf - ./nginx/logs:/var/log/nginx/ - ./nginx/html:/usr/share/nginx/html/ - /etc/localtime:/etc/localtime networks: extnetwork: ipv4_address: 172.19.0.101 redis: image: redis:latest container_name: redis #restart: always environment: - TZ=Asia/Shanghai command: redis-server /usr/local/etc/redis/redis.conf --requirepass 123456 ports: - "6379:6379" volumes: - ./redis/data:/usr/local/redis/data/ - ./redis/logs:/usr/local/redis/ - ./redis/redis.conf:/usr/local/etc/redis/redis.conf - /etc/localtime:/etc/localtime networks: extnetwork: ipv4_address: 172.19.0.2 postgres: image: postgres:12 #restart: always privileged: true container_name: postgres ports: - 5432:5432 environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: 123456 PGDATA: /var/lib/postgresql/data/pgdata volumes: - ./postgres/data:/var/lib/postgresql/data/pgdata - ./postgres/init.sql:/docker-entrypoint-initdb.d/init.sql - /etc/localtime:/etc/localtime networks: extnetwork: ipv4_address: 172.19.0.3 web-server: image: java:8 #restart: always privileged: true ports: - 9004:9004 volumes: - ./java-server/web-lockysheet-server.jar:/usr/local/luckysheet-server/app.jar - ./java-server/application.yml:/usr/local/luckysheet-server/application.yml - ./java-server/application-dev.yml:/usr/local/luckysheet-server/application-dev.yml - /etc/localtime:/etc/localtime command: [ 'java', '-Xmx200m', '-jar', '/usr/local/luckysheet-server/app.jar', '--spring.config.location=/usr/local/luckysheet-server/application.yml,/usr/local/luckysheet-server/application-dev.yml' ] networks: extnetwork: ipv4_address: 172.19.0.4 networks: extnetwork: ipam: config: - subnet: 172.19.0.0/16 gateway: 172.19.0.1 ``` **Note:** ```shell # Enter the container docker exec -ti [Container ID] /bin/bash # Enter redis in the container docker exec -it [Container ID] redis-cli -a '123456' # Log in to docker to view logs docker logs --tail 300 -f [Container ID] # Set folder permissions chmod a+rwx [target folder] ``` ## Links - [Luckysheet Documentation](https://mengshukeji.github.io/LuckysheetDocs/) - [How Luckysheet saves the data in the table to the database](https://www.cnblogs.com/DuShuSir/p/13857874.html) - [docker-compose deploys Nginx, Postgres, redis, java applications](https://www.cnblogs.com/xuchen0117/p/14064109.html) ## Authors and acknowledgment ### Team - [@iamxuchen800117](https://github.com/iamxuchen800117) - [@wpxp123456](https://github.com/wpxp123456) ## License Please consult the attached [LICENSE](./LICENSE) file for details. All rights not explicitly granted by the Apache 2.0 License are reserved by the Original Author.