Wednesday, 21 September 2016

Fix a "Secure Connection Failed" - Firefox/Mozila


  1. In the Location bar, type about:config and press Enter. The about:config "This might void your warranty!" warning page may appear.
  2. Click I'll be careful, I promise! to continue to the about:config page.
  3. copy the next security.ssl.enable_ocsp_stapling and paste it in the search field
  4. double-click on it to make it false
  5. close the page, exit firefox and restart it.
probably the problem is the web site, when the problem resolved by the site, go back and switch the setting to true again.

Monday, 2 May 2016

MYSQL

https://www.linode.com/docs/databases/mysql/how-to-install-mysql-on-centos-7

https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-phpmyadmin-with-apache-on-a-centos-7-server

https://www.liberiangeek.net/2014/09/install-phpmyadmin-centos-7-lamp-support/

https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-centos-7


http://www.cyberciti.biz/faq/rhel-centos-fedora-linux-yum-command-howto/



Wednesday, 27 April 2016

Change Timezone and Time

Generic procedure to change timezone under Linux

Cd to /etc, run:

# cd /etc

Create a symlink to file localtime:

# ln -sf /usr/share/zoneinfo/EST localtime

OR some distro use /usr/share/zoneinfo/dirname/zonefile format:

# ln -sf /usr/share/zoneinfo/EST localtime

OR if you want to set up it to IST (Asia/Calcutta):

# ln -sf /usr/share/zoneinfo/Asia/Calcutta localtime

date --set="2016-04-27 13:30 PM"