https://github.com/tdiprima/patch_level_features
Image processing scripts
https://github.com/tdiprima/patch_level_features
analysis image-processing mongodb openslide pbs
Last synced: 8 months ago
JSON representation
Image processing scripts
- Host: GitHub
- URL: https://github.com/tdiprima/patch_level_features
- Owner: tdiprima
- License: mit
- Created: 2023-04-19T18:23:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-02T19:40:13.000Z (8 months ago)
- Last Synced: 2025-02-02T20:26:49.182Z (8 months ago)
- Topics: analysis, image-processing, mongodb, openslide, pbs
- Language: Python
- Homepage:
- Size: 2.91 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Patch-level features
Fri Aug 24 15:47:56 2018
## MongoDB Server Check
There are several ways to check if a MongoDB instance is running on a server:
1. Check if the MongoDB process is running on the server:
```sh
ps -ef | grep mongod
```2. If MongoDB is installed *as a service* on the server, check if the service is running:
```sh
# Might not work!
systemctl status mongod
```This command will show you the status of the MongoDB service.
3. Check the MongoDB log files: You can check the MongoDB log files to see if there are any recent entries indicating that the server is running. The log files are typically located in the `/var/log/mongodb` directory.
4. You can use the MongoDB shell to connect to the instance and check if it is running. Start the MongoDB shell:
```sh
mongo
```If the shell connects successfully, the MongoDB instance is running.