Skip to main content

Posts

Showing posts from July, 2019

rsync

rsync incremental copy  rsync -avhP cirros-0.3.1-x86_64-disk.img    10.184.48.141:/home/sakthis/dbrd/ rsync -avhP 59ad91ec-9c23-41fe-9c62-1d2e09c2b15e/    sakthis@10.184.39.159:/home/sakthis/dbrd/

Vagrant Hands on

Vagrant Hands on Vagrant installation and Configuration Installation of Vagrant apt-get install vagrant Default hypervisor is virtualbox, wants to change libvirt/kvm hypervisor needs to do the following steps         Install vagrant mutate and vagrant libvirt plugin vagrant plugin install vagrant-mutate  vagrant plugin install vagrant-libvirt Add the virtualbox image into vagrant  vagrant box add ubuntu/trusty64 Convert virtualbox image into vagrant libvirt box  vagrant mutate ubuntu/trusty64 libvirt  Vagrant box list       ubuntu/trusty64 (libvirt, 20170613.0.0) ubuntu/trusty64 (virtualbox, 20170613.0.0) Working on Vagrant vagrant init vim Vagrantfile         Libvirt+ovs configuration # -*- mode: ruby -*- ENV['VAGRANT_DEFAULT_PROVIDER'] = 'libvirt' vagrant.configure("2") do |config|   config....

Mysql Access Denied for ROOT user

Mysql Access denied for root user: ========================= This is works with mariadb  show grants for 'root' @ 'localhost' ; UPDATE mysql.user SET authentication_string=PASSWORD('yourpass') WHERE User='root; UPDATE mysql.user SET plugin = 'mysql_native_password' WHERE User='root'; flush privileges;   exit