> For the complete documentation index, see [llms.txt](https://nayakrounak.gitbook.io/mosip-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://nayakrounak.gitbook.io/mosip-docs/1.2.0/deploymentnew/v3-installation/mosip-modules-deployment.md).

# MOSIP Modules Deployment

Below is the sequence of installation of MOSIP modules and the sequence must be followed to resolve all interdependencies.

1. [Config Server Secrets](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/conf-secrets/README.md)
2. [Config Server](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/config-server/README.md)
3. [Artifactory](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/artifactory/README.md)
4. [Key Manager](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/keymanager/README.md)
5. [WebSub](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/websub/README.md)
6. [Kernel](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/kernel/README.md)
7. [Masterdata-loader](/mosip-docs/1.2.0/deploymentnew/v3-installation/mosip-modules-deployment.md)
8. [Biosdk server](https://github.com/mosip/mosip-infra/tree/1.2.0.1/deployment/v3/mosip/biosdk)
9. [Packet Manager](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/packetmanager/README.md)
10. [Datashare](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/datashare/README.md)
11. [Pre-registration](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/prereg/README.md)
12. [ID Repository](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/idrepo/README.md)
13. [Partner Management](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/pms/README.md)
14. [Mock ABIS](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/mock-abis/README.md)
15. [Mock MV](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/mock-mv/README.md)
16. [Registration Processor](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/regproc/README.md)
17. [Admin](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/admin/README.md)
18. [ID Authentication](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/ida/README.md)
19. [Print](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/print/README.md)
20. [Partner Onboarder](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/partner-onboarder/README.md)
21. [MOSIP File Server](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/mosip-file-server/README.md)
22. [Registration Client](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/regclient/README.md)
23. [Resident Services](https://github.com/mosip/mosip-infra/blob/1.2.0.1/deployment/v3/mosip/resident/README.md)

## Installation

* Conf secrets

```
cd $INFRA_ROOT/deployment/v3/mosip/conf-secrets
./install.sh
```

* Config Server

```
cd $INFRA_ROOT/deployment/v3/mosip/config-server
./install.sh
```

* Artifactory

```
cd $INFRA_ROOT/deployment/v3/mosip/artifactory
./install.sh
```

* Keymanager

```
cd $INFRA_ROOT/deployment/v3/mosip/keymanager
./install.sh
```

* WebSub

```
cd $INFRA_ROOT/deployment/v3/mosip/websub
./install.sh
```

* Kernel

```
cd $INFRA_ROOT/deployment/v3/mosip/kernel
./install.sh
```

* Masterdata-loader

```
cd $INFRA_ROOT/deployment/v3/mosip/masterdata-loader
./install.sh
```

* Mock-biosdk

```
cd $INFRA_ROOT/deployment/v3/mosip/biosdk
./install.sh
```

* Packetmanager

```
cd $INFRA_ROOT/deployment/v3/mosip/packetmanager
./install.sh
```

* Datashare

```
cd $INFRA_ROOT/deployment/v3/mosip/datashare
./install.sh
```

* Pre-reg

```
cd $INFRA_ROOT/deployment/v3/mosip/prereg
./install.sh
```

* Idrepo

```
cd $INFRA_ROOT/deployment/v3/mosip/idrepo
./install.sh
```

* Partner Management Services

```
cd $INFRA_ROOT/deployment/v3/mosip/pms
./install.sh
```

* Mock ABIS

```
cd $INFRA_ROOT/deployment/v3/mosip/mock-abis
./install.sh
```

* Mock-mv

```
cd $INFRA_ROOT/deployment/v3/mosip/mock-mv
./install.sh
```

* Registration Processor

```
cd $INFRA_ROOT/deployment/v3/mosip/regproc
./install.sh
```

* Admin

```
cd $INFRA_ROOT/deployment/v3/mosip/admin
./install.sh
```

* ID Authentication

```
cd $INFRA_ROOT/deployment/v3/mosip/ida
./install.sh
```

* Print

```
cd $INFRA_ROOT/deployment/v3/mosip/print
./install.sh
```

* Partner Onboarder

```
cd $INFRA_ROOT/deployment/v3/mosip/partner-onboarder
./install.sh
```

* MOSIP File Server

```
cd $INFRA_ROOT/deployment/v3/mosip/mosip-file-server
./install.sh
```

* Resident services

```
cd $INFRA_ROOT/deployment/v3/mosip/resident
./install.sh
```

* Registration Client

```
cd $INFRA_ROOT/deployment/v3/mosip/regclient
./install.sh
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://nayakrounak.gitbook.io/mosip-docs/1.2.0/deploymentnew/v3-installation/mosip-modules-deployment.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
