linux--commands commonly used in the work

Source: Internet
Author: User
Tags disk usage import database

Compress and specify the directory
Example: Zip-r/home/kms/kms.zip/home/kms/server/kms

Unzip and specify the directory

Example: unzip/home/kms/kms.zip-d/home/kms/server/kms

View system disk Usage

Df-h

MySQL export to the specified directory

mysqldump-uroot-p Password WAIDAN_TMGF >/home/wwwroot/waidan_tmgf.sql

WAIDAN_TMGF the database name/home/wwwroot/waidan_tmgf.sql to the location of the exported SQL

Import Database
1, first build empty database
Mysql>create database ABC;

2. Import the database
Method One:
(1) Select database
Mysql>use ABC;
(2) Setting the database encoding
Mysql>set names UTF8;
(3) Import data (note the path to the SQL file)
mysql>source/home/abc/abc.sql;
Method Two:
Mysql-u User name-p password database name < database name. sql
#mysql-UABC_F-P ABC < Abc.sql

We recommend that you use the second method of importing.

Note: There is a command-line mode with SQL command

Move Directory

mv/usr/lib/*/zone

Delete files and folders

    1. To delete a folder instance:
      Rm-rf/var/log/httpd/access
      The/var/log/httpd/access directory and all files and folders under it will be deleted

    2. To delete a file usage instance:

      Rm-f/var/log/httpd/access.log
      This file will be forcibly deleted/var/log/httpd/access.log

linux--commands commonly used in the work

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.