Skip to content
View govind0229's full-sized avatar

Block or report govind0229

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. How to Install Varnish + Hitch Cache... How to Install Varnish + Hitch Cache for Apache on CentOS/RHEL8
    1
    # How to Install Varnish + Hitch Cache for Apache on CentOS/RHEL8
    2
    
                  
    3
    - Varnish Cache is a free open source, modern and `high-performance` web application accelerator. It is a fast reverse HTTP proxy that caches content to speed up your web server performance, by storing web content in server memory – in a cache. It is configured to run in front of an origin server such as Apache `(HTTPD)` webserver.
    4
    
                  
    5
    
                  
  2. The check file differs from the remo... The check file differs from the remote server using ssh commands.
    1
    # Compare remote server file using ssh commands
    2
    
                  
    3
    	# ssh user@remote-host "cat /home/root/file_remote" | diff  - file_local 
    4
    	
    5
    	# ssh -P<port> -l root <remote server ip> "cat  /home/root/file_remote" | diff - /home/root/local_server_file
  3. Postgresql connection exceeded issue... Postgresql connection exceeded issue solve
    1
    # Postgresql
    2
    `Bash
    3
    psql -U postgres -c 'SHOW config_file'
    4
    psql -U postgres -c 'SHOW config_file'
    5
    psql -U postgres -c 'SHOW max_connections'
  4. Free-switch outbound calling through... Free-switch outbound calling through Asterisk setup
    1
    # Freeswitch outbound calling through Asterisk 
    2
    ````bash
    3
    [cloud]
    4
    type=peer
    5
    host=X.X.X.X
  5. Auto-dial script not running getting... Auto-dial script not running getting pycurl package import issue.
    1
    # -- autodial scriprt not running getting pycurl package import issue -- 
    2
    
                  
    3
      yum install openssl-devel
    4
      pip install --compile --install-option="--with-openssl" pycurl
    5
    
                  
  6. Resize root partition (or how to del... Resize root partition (or how to delete the default /home partition) on CentOS 8 through SSH
    1
    # Resize root partition (or how to delete the default /home partition) on CentOS 8 through SSH
    2
    This requires you to be able to ssh into the instance using the root user account and that no services be running as users out of /home on the target machine.
    3
    
                  
    4
    The examples are from a default installation with no customation-you NEED to know what you're working with for volumes/partitions to not horribly break things.
    5