Shell Script Connection Create database

Source: Internet
Author: User
Tags create database

1. Connect to create a database

#!/bin/bashmysql="mysql -uroot -p111111"#sql="show tables from mysql"sql="create table test.user(        id int unsigned auto_increment primary key,        username varchar(20),        password varchar(30))"$mysql -e "$sql"    

2. Using script with Parameters

#!/bin/bashmysql="mysql -uroot -p111111"case $1 in        select|*)                sql="select * from test1.user order by id"                ;;        delete)                sql="delete from test1.user where id=$2"                ;;        insert)                sql="insert into test1.user(id,name,password) values(‘$2‘,‘$3‘,‘$4‘)"                ;;        update)                sql="select * from test1.user order by id"                ;;esac$mysql -e "$sql"

3. The Nginx access data is counted and written to the database according to the IP traffic

#!/bin/bash#accessdabasedatetime=`date +%Y-%m-%d`tempfile=temp.txtlogfile="/var/log/nginx/access.log-`date +%Y%m%d`.gz"zcat $logfile | awk ‘{print $1}‘| sort | uniq -c | awk ‘{print $2":"$1}‘ > $tempfilemysql="mysql -uroot -p111111"for i in `cat $tempfile`do        ip=`echo $i|awk -F: ‘{print $1}‘`        count=`echo $i | awk -F: ‘{print $2}‘`        sql="insert into test1.accesstable(access_time,access_ip,access_count) values(‘$datetime‘,‘$ip‘,‘$count‘)"        $mysql -e "$sql"done#sql="create table test1.accesstable(#id int unsigned  not null  auto_increment  primary key,#access_time char(50),#access_ip char(50),#access_count int(20))"sql="select * from test1.accesstable"$mysql -e "$sql"

Shell Script Connection Create database

Related Article

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.