基於CentOS的Mysql學習補充二--使用Shell建立資料庫,centosmysql

來源:互聯網
上載者:User

基於CentOS的Mysql學習補充二--使用Shell建立資料庫,centosmysql

    文章出處:基於CentOS的Mysql學習補充二--使用Shell建立資料庫

    關於使用基於命令使用mysql資料庫的方法可見文章《基於CentOS的Mysql的使用說明》,本文只要介紹如何使用Shell指令碼來建立我們想要的資料庫,下面給出我建立資料庫的Shell指令碼,基本也就是將mysql的一些命令放在shell指令碼裡面而已。

#!/bin/bash#Author: chisj#Time: 2015.7.22#Describe: Create Database#The username of mysql databaseUSER="root"#The password of mysql databasePASS="dragonwake"#The datebase name will be createdDATABASE="SmartCare"mysql -u $USER -p$PASS << EOF >/dev/nullCREATE DATABASE $DATABASEEOF

這裡說明幾點需要注意的問題

1、如果是在windows下面編輯上面這個指令碼,然後在linux下面去執行,可能會出現這個問題


從也可以看到我這裡的解決方案,使用命令dos2unix將windows檔案格式轉化為linux(unix)檔案格式

#dos2unix filename

當然前提是需要你的系統安裝了該命令,預設系統時不安裝的,可以使用yum進行安裝

#yum install dos2unix


這裡給出一份linux檔案格式的指令碼

shell建立mysql資料庫

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

相關文章

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.