mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
update readme: With the release of the new system, the readme is also updated accordingly.
This commit is contained in:
parent
159c81a053
commit
f80e2e3036
72
README.md
72
README.md
@ -44,46 +44,48 @@ Open-IM-Server is not a standalone product and does not include account registra
|
|||||||
## Community
|
## Community
|
||||||
- Visit the official Chinese website: [OpenIM Chinese Developer Documentation](https://doc.rentsoft.cn/)
|
- Visit the official Chinese website: [OpenIM Chinese Developer Documentation](https://doc.rentsoft.cn/)
|
||||||
|
|
||||||
## Quick start
|
## Quick Start
|
||||||
|
|
||||||
### Deploying with docker-compose
|
### Deploying with docker-compose
|
||||||
|
|
||||||
|
1. Clone the project
|
||||||
|
|
||||||
|
```
|
||||||
|
clone https://github.com/OpenIMSDK/Open-IM-Server
|
||||||
|
cd Open-IM-Server
|
||||||
|
git checkout release-v3.0 #or other release branch
|
||||||
|
```
|
||||||
|
|
||||||
|
1. Modify .env
|
||||||
|
|
||||||
|
```
|
||||||
|
makefileCopy codeHere you mainly modify the passwords for related components
|
||||||
|
USER=root #no need to modify
|
||||||
|
PASSWORD=openIM123 #A combination of 8 or more numbers and letters, this password applies to redis, mysql, mongo, as well as accessSecret in config/config.yaml
|
||||||
|
ENDPOINT=http://127.0.0.1:10005 #minio's external service IP and port, or use the domain name storage.xx.xx, the app must be able to access this IP and port or domain,
|
||||||
|
API_URL=http://127.0.0.1:10002/object/ #the app must be able to access this IP and port or domain,
|
||||||
|
DATA_DIR=./ #designate large disk directory
|
||||||
|
```
|
||||||
|
|
||||||
|
1. Deploy and start
|
||||||
|
|
||||||
|
Note: This command can only be executed once. It will modify the component passwords in docker-compose based on the PASSWORD variable in .env, and modify the component passwords in config/config.yaml. If the password in .env changes, you need to first execute docker-compose down; rm components -rf and then execute this command.
|
||||||
|
|
||||||
|
```
|
||||||
|
bashCopy codechmod +x install_im_server.sh;
|
||||||
|
./install_im_server.sh;
|
||||||
|
```
|
||||||
|
|
||||||
|
1. Check the service
|
||||||
|
|
||||||
|
```
|
||||||
|
bashCopy codecd scripts;
|
||||||
|
./docker_check_service.sh
|
||||||
|
```
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
> 1. Clone the project
|
|
||||||
>
|
|
||||||
> ```
|
|
||||||
>
|
|
||||||
> ```
|
|
||||||
>
|
|
||||||
> 1. Modify .env
|
|
||||||
>
|
|
||||||
> ```
|
|
||||||
> makefileCopy codeHere you mainly modify the passwords for related components
|
|
||||||
> USER=root #no need to modify
|
|
||||||
> PASSWORD=openIM123 #A combination of 8 or more numbers and letters, this password applies to redis, mysql, mongo, as well as accessSecret in config/config.yaml
|
|
||||||
> ENDPOINT=http://127.0.0.1:10005 #minio's external service IP and port, or use the domain name storage.xx.xx, the app must be able to access this IP and port or domain,
|
|
||||||
> API_URL=http://127.0.0.1:10002/object/ #the app must be able to access this IP and port or domain,
|
|
||||||
> DATA_DIR=./ #designate large disk directory
|
|
||||||
> ```
|
|
||||||
>
|
|
||||||
> 1. Deploy and start
|
|
||||||
>
|
|
||||||
> Note: This command can only be executed once. It will modify the component passwords in docker-compose based on the PASSWORD variable in .env, and modify the component passwords in config/config.yaml. If the password in .env changes, you need to first execute docker-compose down; rm components -rf and then execute this command.
|
|
||||||
>
|
|
||||||
> ```
|
|
||||||
> bashCopy codechmod +x install_im_server.sh;
|
|
||||||
> ./install_im_server.sh;
|
|
||||||
> ```
|
|
||||||
>
|
|
||||||
> 1. Check the service
|
|
||||||
>
|
|
||||||
> ```
|
|
||||||
> bashCopy codecd scripts;
|
|
||||||
> ./docker_check_service.sh
|
|
||||||
> ```
|
|
||||||
>
|
|
||||||
> 
|
|
||||||
|
|
||||||
### Compile from source
|
### Compile from source
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user