-
-
Notifications
You must be signed in to change notification settings - Fork 112
/
ss-import-database.txt
154 lines (113 loc) · 7.76 KB
/
ss-import-database.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#!/bin/bash
####################################################################################################
#### author: SlickStack ############################################################################
#### link: https://slickstack.io ###################################################################
#### mirror: littlebizzy/slickstack/blob/master/bash/ss-import-database.txt ########################
#### path: /var/www/ss-import-database #############################################################
#### destination: n/a (not a boilerplate) ##########################################################
#### purpose: Force imports /tmp/import.sql|.sql.zip|.sql.gz and overwrites database ###############
#### module version: MySQL 8.0.x ###################################################################
#### sourced by: n/a ###############################################################################
#### bash aliases: ss import database|db ###########################################################
####################################################################################################
####################################################################################################
#### TABLE OF CONTENTS (SS-Import-Database) ########################################################
####################################################################################################
## this is a brief summary of the different code snippets you will find in this script ##
## each section should be commented so you understand what is being accomplished ##
## A. Source SS-Config + SS-Functions
## B. Touch Timestamp File
## C. Message (Begin Script)
## D. Run SS-Dump-Database
## E. Import Database (Overwrites Data)
####################################################################################################
#### A. SS-Import-Database: Source SS-Config + SS-Functions ########################################
####################################################################################################
## before anything else we must source the critical variables that power this script ##
## ss-config is setup during ss-install wizard but ss-functions is hardcoded ##
## source ss-config ##
source /var/www/ss-config
## source ss-functions ##
source /var/www/ss-functions
## BELOW THIS RELIES ON SS-CONFIG AND SS-FUNCTIONS
####################################################################################################
#### B. SS-Import-Database: Touch Timestamp File ###################################################
####################################################################################################
## this is a dummy timestamp file that will remember the last time this script was run ##
## it can be useful for developer reference and is sometimes used by SlickStack ##
ss_touch "${TIMESTAMP_SS_IMPORT_DATABASE}"
####################################################################################################
#### C. SS-Import-Database: Message (Begin Script) #################################################
####################################################################################################
## this is a simple message that announces to the shell the purpose of this bash script ##
## it will only be seen by sudo users who manually run this script in the shell ##
ss_echo "${COLOR_INFO}Running ss-import-database... ${COLOR_RESET}"
####################################################################################################
#### D. SS-Import-Database: Run SS-Dump-Database ###################################################
####################################################################################################
source "${PATH_SS_DUMP_DATABASE}"
####################################################################################################
#### E. SS-Import-Database: Import Database (Overwrites Data) ######################################
####################################################################################################
## here the sudo user must manually confirm importing database before it can proceed ##
## import.sql is the preferred file format followed by .sql.zip and .sql.gz ##
read -r -p "DATABASE will be completely overwritten, are you sure? [y/N]" response
if [[ "${response}" =~ ^([yY][eE][sS]|[yY])$ ]]; then
if [[ -f "/tmp/import.sql" ]]; then
echo "found import.sql and proceeding to import and overwrite database"
chown -R "${SFTP_USER}":www-data /tmp/import.sql
chmod 6775 /tmp/import.sql
if [[ "${DB_REMOTE}" == "true" ]]; then
ss_mysql_user "${DB_NAME}" < /tmp/import.sql
else
ss_mysql_root "${DB_NAME}" < /tmp/import.sql
fi
elif [[ ! -f "/tmp/import.sql" ]] && [[ -f "/tmp/import.sql.zip" ]]; then
echo "found import.sql.zip and proceeding to import and overwrite database"
chown -R "${SFTP_USER}":www-data /tmp/import.sql.zip
chmod 6775 /tmp/import.sql.zip
if [[ "${DB_REMOTE}" == "true" ]]; then
ss_mysql_user "${DB_NAME}" < /tmp/import.sql.zip
else
ss_mysql_root "${DB_NAME}" < /tmp/import.sql.zip
fi
elif [[ ! -f "/tmp/import.sql" ]] && [[ ! -f "/tmp/import.sql.zip" ]] && [[ -f "/tmp/import.sql.gz" ]]; then
echo "found import.sql.gz and proceeding to import and overwrite database"
chown -R "${SFTP_USER}":www-data /tmp/import.sql.gz
## should we gunzip it first, run below commands, and then import.sql to database? ##
chmod g-s /tmp/import.sql.gz ## avoids gunzip errors
chmod 0777 /tmp/import.sql.gz ## avoids gunzip errors
if [[ "${DB_REMOTE}" == "true" ]]; then
ss_mysql_user "${DB_NAME}" < /tmp/import.sql.gz
else
ss_mysql_root "${DB_NAME}" < /tmp/import.sql.gz
fi
elif [[ ! -f "/tmp/import.sql" ]] && [[ ! -f "/tmp/import.sql.zip" ]] && [[ ! -f "/tmp/import.sql.gz" ]]; then
echo "No import.sql|.sql.zip|.sql.gz file found, cannot import database"
fi
else
echo "cancelled import"
exit 1
fi
####################################################################################################
#### SlickStack: Reset Permissions (SlickStack Scripts) ############################################
####################################################################################################
## we include this permissions reset in all cron jobs and bash scripts for redundancy ##
## chmod 0700 means only the root/sudo users can execute any SlickStack scripts ##
## THIS SNIPPET DOES NOT RELY ON SS-CONFIG OR SS-FUNCTIONS
## SNIPPET: ss bash scripts, ss cron jobs
## UPDATED: 02JUL2022
chown root:root /var/www/ss* ## must be root:root
chown root:root /var/www/crons/*cron* ## must be root:root
chown root:root /var/www/crons/custom/*cron* ## must be root:root
chmod 0700 /var/www/ss* ## 0700 means only root/sudo can execute
chmod 0700 /var/www/crons/*cron* ## 0700 means only root/sudo can execute
chmod 0700 /var/www/crons/custom/*cron* ## 0700 means only root/sudo can execute
####################################################################################################
#### SlickStack: External References Used To Improve This Script (Thanks, Interwebz) ###############
####################################################################################################
## Ref: https://github.com/littlebizzy/slickstack/blob/master/ss-dump.txt
## Ref: https://collegetimes.co/lemp-server/
## Ref: https://unix.stackexchange.com/questions/630495/what-is-set-group-id-on-execution-ignored-and-why-am-i-unable-to-unzip-a-file
## Ref: https://www.reddit.com/r/Ubuntu/comments/s39uyj/gzip_error_mydbsql_is_setgroupid_on_execution/
## SS_EOF