Welcome to Jarvisme.com!
A homepage section
This is an example of a homepage section. Homepage sections can be any page other than the homepage itself, including the page that shows your latest blog posts.
About
You might be an artist who would like to introduce yourself and your work here or maybe you’re a business with a mission to describe.
Blog
Create, import and export mysql database using terminal
1) To Export a database, open up terminal, making sure that you are not logged into MySQL and type mysqldump -u [username] -p [database name] > [database name].sql mysqldump -u root -p admin_ghc > admin_ghc.sql 2) To import a database, first create a new blank database in the MySQL shell to serve as a destination …
Continue reading “Create, import and export mysql database using terminal”
Login with PEM file from Terminal
1) Download PEM file and then give permission 0400 sudo chmod -R 0400 name.pem 2) Then login with PEM file ssh -i name.pem [email protected]_address
Set up AWS Server in ubuntu 16.04 LTS
1) sudo apt-get update 2) sudo apt-get upgrade 3) sudo vi /etc/environment LANG=en_US.utf-8 LC_ALL=en_US.utf-8 4) sudo reboot 5) sudo apt-get install apache2 6) sudo apt-get install mysql-server 7) sudo apt-get install php libapache2-mod-php 8) sudo apt-get install php-zip 9) sudo /etc/init.d/apache2 restart 10) sudo apt-get install sendmail-bin 11) sudo apt-get install phpmyadmin 12) sudo vim …