Advanced Search
Search Results
48 total results found
System Requirements
RAM: Minimum 2 GB (recommended: 4+ GB) Storage: SSD recommended for fast access CPU: 2+ cores Software: Docker, docker-compose Optional: NGINX, Redis, PostgreSQL, TensorFlow backend
Docker Compose Setup
## đŚ Docker Compose Installation for Immich This section explains how to install Immich using Docker and Docker Compose on Ubuntu 22.04. --- ### đ ď¸ Prerequisites - Ubuntu Server 22.04- Docker & Docker Compose installed    ### đł Install Docker & Docker...
Create the mailu Directory
Create a project directory where you will store the config files: mkdir -p /opt/mailu cd /opt/mailu
Create docker-compose.yml
 Create docker-compose.yml and post bellow text (make sure you removed quote from begging) # This file is auto-generated by the Mailu configuration wizard. # Please read the documentation before attempting any change. # Generated for compose flavor servi...
Create .env
 Create mailu.env and post bellow text (make sure you removed quote from begging) Tag that need to updatedSITENAME=HRD TechnologyWEBSITE=https://hrdtechnology.comDOMAIN=mail.hrdtechnology.comHOSTNAMES=mail.hrdtechnology.com,hrdtechnology.com Update able tag ...
Start the Stack
Once your docker-compose.yml is ready, run the following: apt-get autoremove --purge exim4 exim4-base docker-compose up -d To confirm everything is running: docker ps You should see containers for: mailu-admin-1 mailu-smtp-1 mailu-imap-...
Access the Web UI
http://<your-server-ip>:9080/or you can setup reverse proxy for your ip
Accessing the Admin Interface
Access your admin page via url https://your-domain.com:9080/admin Or open via proxy url that setup https://mail.your-domain.com/admin My case I setup proxy url https://mail.hrdtechnology.com/admin you can see the screen like Â
Setup mail domain
1. Log in to the Mailu Admin UI Open your browser to your admin URL, e.g. https://mail.hrdtechnology.com/admin Sign in with your admin credentials. 2. Navigate to the âDomainsâ Section On the leftâhand menu, click âDomainsâ. This page shows all domains ...
Setup mail user
1. Log in to the Mailu Admin UI Open your browser to your admin URL, e.g. https://mail.hrdtechnology.com/admin Sign in with your admin credentials. 2. Navigate to the âDomainsâ Section On the leftâhand menu, click âDomainsâ. This page shows all domains ...
File Management & Navigation
đ§ 1. Navigation Commands Command Description pwd Print current directory path cd Change directory cd /path/to/dir Go to specific directory cd .. Go up one directory cd ~ Go to home directory ls List files and...
Process Management & Cron Job Monitoring
âď¸ Monitor Running Jobs & Processes Command Description ps aux List all running processes with user, CPU, memory ps -ef Full-format listing of all processes top Interactive real-time process viewer htop Enhanced top view...
PHP Related Commands
đ§ž PHP Related Commands Command Description php -v Check installed PHP version php -m List loaded PHP modules/extensions php -i Show full PHP configuration (like phpinfo()) php -r 'echo phpinfo();' Run inline PHP script t...
Reset password
docker exec -it paperless-webserver-1 bash python manage.py shell -c "from django.contrib.auth import get_user_model; User = get_user_model(); u = User.objects.get(email='hns.sharma@outlook.com'); u.set_password('YourNewSecurePassword123'); u.save()"