Files
weiyu/deploy/server/readme.md

46 lines
1.4 KiB
Markdown
Raw Normal View History

2024-08-09 11:06:35 +08:00
<!--
* @Author: jackning 270580156@qq.com
* @Date: 2024-08-09 10:08:02
* @LastEditors: jackning 270580156@qq.com
2024-10-24 09:41:39 +08:00
* @LastEditTime: 2024-10-23 15:07:58
2024-08-09 11:06:35 +08:00
* @Description: bytedesk.com https://github.com/Bytedesk/bytedesk
* Please be aware of the BSL license restrictions before installing Bytedesk IM
* selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license.
* 仅支持企业内部员工自用严禁私自用于销售、二次销售或者部署SaaS方式销售
* Business Source License 1.1: https://github.com/Bytedesk/bytedesk/blob/main/LICENSE
* contact: 270580156@qq.com
* 联系270580156@qq.com
* Copyright (c) 2024 by bytedesk.com, All Rights Reserved.
-->
2024-08-10 05:51:08 +08:00
# bytedesk jar deploy
2024-08-09 11:06:35 +08:00
2024-09-11 19:24:23 +08:00
## download [server](https://cdn.weiyuai.cn/server.zip)
2024-08-09 12:33:03 +08:00
2024-08-09 11:06:35 +08:00
```bash
2024-09-11 19:24:23 +08:00
# if jar not found, download from: https://cdn.weiyuai.cn/server.zip
2024-08-09 11:06:35 +08:00
# edit config/application.properties
# change mysql credentials
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/bytedesk_im
spring.datasource.username=root
spring.datasource.password=password
# change redis credentials
spring.data.redis.database=0
spring.data.redis.host=127.0.0.1
spring.data.redis.port=6379
spring.data.redis.password=password
2024-10-24 09:41:39 +08:00
# change permission
2024-08-09 11:06:35 +08:00
chmod +x start.sh
chmod +x stop.sh
# start
2024-08-10 05:51:08 +08:00
# mac or linux
2024-08-09 11:06:35 +08:00
./start.sh
2024-08-10 05:51:08 +08:00
# windows
start.bat
2024-08-09 11:06:35 +08:00
# stop
2024-08-10 05:51:08 +08:00
# mac or linux
2024-08-09 11:06:35 +08:00
./stop.sh
2024-08-10 05:51:08 +08:00
# windows
stop.bat
2024-08-09 11:06:35 +08:00
```