Allow postgress remotely ubuntu 22.04 Penguin Technology - 14:48 0 Edit Check Postgress config file sudo -u postgres psql -c "SHOW config_file;" Change localhost to * for all network sudo vim /etc/pos...
Check module enabled status in Ubuntu Penguin Technology - 08:40 0 Edit Check module enabled status in Ubuntu $ sudo apachectl -M | grep security
Ansible yml based inventory file Penguin Technology - 10:19 0 Edit Create yml inventory file for AWS Ec2 all: hosts: web: ansible_host: web1.amazon.com ansible_port: 22 ansible_user...
How to take MySQL backup and restore remotely Md. Shahzad Alam - 07:52 0 Edit Create a shell script for MySQL backup remotely use -h for remote host address #!/bin/bash username="username" dbname="dbname...
Create html default index syntax Penguin Technology - 08:23 0 Edit <!DOCTYPE html> <html> <body> <h1>Coming Soon....</h1> </body> </html>