Daily Archives: May 9, 2019

ubuntu command line for apache

Update your system: sudo apt-get update && sudo apt-get upgrade =-=-=-=-=-=-=-=-=-=-=- remove LAMP sudo apt-get purge mysql-server apache2 php5 ==-=-=-=-=-=-=-=-=-=-=- fully manage your lamp Server database, install phpmyadmin sudo apt-get install phpmyadmin =-=-=-=-=-=-=-=-=-=-=-= Install Apache sudo apt-get install apache2 apache2-doc … Continue reading

Posted in command line of linux, ubuntu | Comments Off on ubuntu command line for apache

stop cron job in centOS

sudo /sbin/service crond stop

Posted in centOS | Comments Off on stop cron job in centOS

scp included TimeStamp/Permission

scp -rvp scp -rvp root@SourceServer:/var/www/html/* root@destinationServer:/var/www/html/

Posted in command line of linux | Comments Off on scp included TimeStamp/Permission

config ip and netsh firewall via command windows

netsh interface ipv4 set address “Local Area connection” static 192.168.3.9 255.255.0.0 192.168.3.1 1 — netsh interface ipv4 add dnsserver “Local Area connection” 192.168.3.10 1 — — netsh advfirewall set currentprofile settings remotemanagement enable netsh advfirewall set currentprofile settings remotemanagement disable … Continue reading

Posted in command line of windows | Comments Off on config ip and netsh firewall via command windows

How to change date, time and timezone

By default, your CentOS or Redhat Server maybe don’t have correct time or timezone. So we have to do the configuration for that. Step 1: Check your current time [root@ithelpblog ~]# date Wed Apr 6 10:07:12 UTC 2016 # Step … Continue reading

Posted in My Linux | Comments Off on How to change date, time and timezone