Find who added a file to git repo
To find which user and when a file gets committed to a git repository, you can use the command git log –diff-filter=A…
To find which user and when a file gets committed to a git repository, you can use the command git log –diff-filter=A…
Oracle Cloud Ubuntu virtual machines are not compatible with UFW firewall. This is because oracle cloud needs some iptables rules to communicate…
When using Cloudflare, website visitors visit the Cloudflare CDN server configured as a reverse proxy server. Cloudflare CDN server fetches pages from…
Pterodactyl is an open-source game control panel. When you view game server files, the file manager only lists 250 files per directory.…
When you delete a Google Cloud Project (GCP), Google will shut down the project, and keep it for 30 days. If you…
After migrating AtoM to a new server, PDF thumbnails stopped generating when uploading PDF files. You can regenerate thumbnail for a resource…
PHP cURL module allows you to connect to remote websites and API endpoints to exchange data. To see if you have php-curl…
If you have lost the admin password for your CyberPanel, you can reset the password using SSH. Login to the CyberPanel server…
CentOS Linux was discontinued at the end of 2021 in favor of CentOS Stream. CentoS 7 will continue to be supported through…
Gearman is an Open Source job server. http://gearman.org/getting-started/ To install it using docker, first install docker, then run docker run –name sok-gearmand…
Create systemd service file vi /usr/lib/systemd/system/backend.service Add [Unit] Description=Gunicorn instance to serve Django Application After=network.target [Service] User=www-data Group=www-data Environment=”APP=app” WorkingDirectory=/path/to/app/backend Environment=”PATH=/path/to/app/backend/venv/bin” ExecStart=/path/to/app/backend/venv/bin/gunicorn…
I wanted to Migrate MySQL from one server to another. Usually, I could just copy over the MySQL data directory (/var/lib/mysql) to…