-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathyc.sh
executable file
·503 lines (392 loc) · 17.2 KB
/
yc.sh
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
#!/bin/sh
#
# YesCart development script
#
# @author Denys Pavlov
RUNDIR=`pwd`
YC_HOME="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
MVN="mvn"
show_env() {
echo "================================================";
echo " Environment variables ";
echo "================================================";
echo " user.name : $HOME";
echo " user.home : $HOME";
echo " YC_HOME : $YC_HOME";
echo " RUNNIG_HOME : $RUNDIR";
echo " ANT_HOME : $ANT_HOME";
echo " FLEX_HOME : $FLEX_HOME";
echo " JAVA_HOME : $JAVA_HOME";
echo " M2_HOME : $M2_HOME";
echo "================================================";
}
show_help() {
echo "================================================";
echo " YesCart environment script ";
echo "================================================";
echo " commands: ";
echo " env - show environment variables ";
echo " ";
echo " i3rd - setup necessary artifacts 3rd ";
echo " party artifacts for maven ";
echo " ";
echo " cpres - copy extra resources to webapps ";
echo " ";
echo " luke - start luke ";
echo " ";
echo " nullsmtp - start DevNullSmtp ";
echo " ";
echo " dbimysql - initialise db for mysql ";
echo " ";
echo " dbiderby - initialise db for derby ";
echo " derbygo - start derby server ";
echo " derbygob - start derby server (in back mode) ";
echo " derbyend - stop derby server ";
echo " derbycon - connect to derby with ij ";
echo " derbycon - connect to derby with ij ";
echo " ";
echo " builddemo - build demo ";
echo " buildidea - build idea ";
echo " builddev - build dev ";
echo " ";
echo " aws - initialise aws image ";
echo "================================================";
}
add_mvn_extra_dep() {
echo "================================================";
echo " Setup environment ";
echo "================================================";
echo " Adding extra dependencies...";
# cd "$YC_HOME/env/setup/lib3rdparty"
# cd "$YC_HOME"
echo " All dependencies are setup"
echo "================================================";
}
cp_resources_to_webapp() {
echo "================================================";
echo " Copy resources to webapps ";
echo "================================================";
echo " copying resources... manager/server";
cd "$YC_HOME/manager/server"
"$MVN" validate -Ptemplates
echo " copying resources... web/store";
cd "$YC_HOME/web/store"
"$MVN" validate -Ptemplates
echo " copying resources... web/api";
cd "$YC_HOME/web/api"
"$MVN" validate -Ptemplates
}
init_db_mysql() {
echo "================================================";
echo " Initialise MySQL database ";
echo "================================================";
DBINITSCRIPT="$YC_HOME/env/setup/dbi/mysql/dbinit.sql"
echo "Running init script as root user $DBINITSCRIPT"
mysql -uroot -p < "$DBINITSCRIPT"
echo "Initialisation complete."
}
db_derby_go() {
echo "================================================";
echo " Starting Derby database ";
echo "================================================";
export DERBY_INSTALL="$YC_HOME/env/derby"
export CLASSPATH="$DERBY_INSTALL/lib/derby.jar:$DERBY_INSTALL/lib/derbytools.jar:$DERBY_INSTALL/lib/derbyclient.jar:$DERBY_INSTALL/lib/derbynet.jar:."
cd "$DERBY_INSTALL/lib"
java -jar derbyrun.jar server start
}
db_derby_gob() {
echo "================================================";
echo " Starting Derby database (background mode) ";
echo "================================================";
export DERBY_INSTALL="$YC_HOME/env/derby"
export CLASSPATH="$DERBY_INSTALL/lib/derby.jar:$DERBY_INSTALL/lib/derbytools.jar:$DERBY_INSTALL/lib/derbyclient.jar:$DERBY_INSTALL/lib/derbynet.jar:."
cd "$DERBY_INSTALL/lib"
java -jar derbyrun.jar server start &
echo " Derby server started on port 1527... ";
echo " ";
echo " Tips: ";
echo " * if you see 'started and ready to accept connections on port 1527' but no prompt, just hit ENTER";
echo " * if you encounter problems check https://docs.inspire-software.com/docs/display/YD/Derby+quick+start";
echo " ";
}
db_derby_end() {
echo "================================================";
echo " Stopping Derby database ";
echo "================================================";
export DERBY_INSTALL="$YC_HOME/env/derby"
export CLASSPATH="$DERBY_INSTALL/lib/derby.jar:$DERBY_INSTALL/lib/derbytools.jar:$DERBY_INSTALL/lib/derbyclient.jar:$DERBY_INSTALL/lib/derbynet.jar:."
cd "$DERBY_INSTALL/lib"
java -jar derbyrun.jar server shutdown
echo " Derby server stopped... ";
}
init_db_derby() {
echo "================================================";
echo " Initialise Derby database ";
echo "================================================";
echo "Setting Derby environment variables";
export DERBY_INSTALL="$YC_HOME/env/derby"
export CLASSPATH="$DERBY_INSTALL/lib/derby.jar:$DERBY_INSTALL/lib/derbytools.jar:$DERBY_INSTALL/lib/derbyclient.jar:$DERBY_INSTALL/lib/derbynet.jar:."
cd "$DERBY_INSTALL/lib"
#java org.apache.derby.tools.sysinfo
DBINITSCRIPT="$YC_HOME/env/setup/dbi/derby/dbinit.sql"
echo "Running init script $DBINITSCRIPT"
java -Dderby.system.home="$YC_HOME" -Dij.outfile="$YC_HOME/derbyinit.log" -Dderby.ui.codeset=UTF8 org.apache.derby.tools.ij "$DBINITSCRIPT"
# java -Dderby.system.home=$YC_HOME org.apache.derby.tools.ij $DBINITSCRIPT
cd "$YC_HOME";
echo "Initialisation complete. See log: $YC_HOME/derbyinit.log"
}
db_derby_connect() {
echo "================================================";
echo " Starting Derby client ";
echo "================================================";
export DERBY_INSTALL="$YC_HOME/env/derby"
export CLASSPATH="$DERBY_INSTALL/lib/derby.jar:$DERBY_INSTALL/lib/derbytools.jar:$DERBY_INSTALL/lib/derbyclient.jar:$DERBY_INSTALL/lib/derbynet.jar:."
cd "$DERBY_INSTALL/lib"
echo "Working directory is"
pwd
echo "Use:"
echo " connect 'jdbc:derby://localhost:1527/yes'; - to connect to main db";
echo " connect 'jdbc:derby://localhost:1527/yespay'; - to connect to payment gateway db";
echo " disconnect; - to quit";
java -Dderby.ui.codeset=UTF8 org.apache.derby.tools.ij
}
start_luke() {
echo "================================================";
echo " Starting Luke (lucene index browser) ";
echo "================================================";
java -jar "$YC_HOME/env/luke/luke-with-deps-6.5.jar" &
}
start_nullsmtp() {
echo "================================================";
echo " Starting DevNullSmtp (dummy SMTP server) ";
echo "================================================";
java -jar "$YC_HOME/env/devnullsmtp/DevNullSmtp.jar" &
}
build_demo() {
echo "================================================";
echo " Build DEMO ";
echo "================================================";
echo " ";
"$MVN" clean install -PbuildDemo,mysql,ftEmbededLucene,connREST,paymentAll,pricerules,admincors -DskipTests=true
cp $YC_HOME/manager/jam/target/cp.war $YC_HOME/
cp $YC_HOME/web/store-wicket/target/ROOT.war $YC_HOME/
cp $YC_HOME/web/api/target/api.war $YC_HOME/
}
build_dev() {
echo "================================================";
echo " Build DEV ";
echo "================================================";
echo " ";
"$MVN" clean install -Pdev,derby,ftEmbededLucene,connREST,paymentAll,pricerules -DskipTests=true
}
build_idea() {
echo "================================================";
echo " Build DEV ";
echo "================================================";
echo " ";
"$MVN" clean install -PdevIntellijIDEA,derby,ftEmbededLucene,connREST,paymentAll,pricerules -DskipTests=true
}
start_aws() {
echo "================================================";
echo " Starting YC AWS. Required: ";
echo " * AWS Access Key ID ";
echo " * AWS Secret Access Key ";
echo " * Default region ";
echo " ";
echo " * Run under root ";
echo "================================================";
if [[ $EUID -ne 0 ]]; then
echo "You must be a root user" 2>&1
exit 1
fi
aws configure
aws ec2 create-security-group \
--group-name yescart \
--description "Yes cart security group. HTTP(s), ssh and mysql"
aws ec2 authorize-security-group-ingress \
--group-name yescart \
--protocol tcp --port 22 --cidr 0.0.0.0/0
aws ec2 authorize-security-group-ingress \
--group-name yescart \
--protocol tcp --port 80 --cidr 0.0.0.0/0
aws ec2 authorize-security-group-ingress \
--group-name yescart \
--protocol tcp --port 8080 --cidr 0.0.0.0/0
aws ec2 authorize-security-group-ingress \
--group-name yescart \
--protocol tcp --port 443 --cidr 0.0.0.0/0
aws ec2 authorize-security-group-ingress \
--group-name yescart \
--protocol tcp --port 8443 --cidr 0.0.0.0/0
aws ec2 authorize-security-group-ingress \
--group-name yescart \
--protocol tcp --port 3306 --cidr 0.0.0.0/0
aws ec2 modify-instance-attribute \
--groups $(aws ec2 describe-security-groups --group-names yescart | jq '.SecurityGroups[0] | .GroupId' | sed 's/\"//g') \
--instance-id $(aws ec2 describe-instances --filter Name=tag:Name,Values=YCDEMO | jq '.Reservations[0].Instances[0] | .InstanceId' | sed 's/\"//g')
aws rds create-db-instance \
--db-instance-identifier yescartmysql \
--db-instance-class db.t2.micro \
--engine MySQL \
--allocated-storage 20 \
--master-username yesmaster \
--master-user-password pwdMy34SqL \
--backup-retention-period 3 \
--vpc-security-group-ids $(aws ec2 describe-security-groups --group-names yescart | jq '.SecurityGroups[0] | .GroupId' | sed 's/\"//g')
echo "================================================";
echo " Please be patient, waiting for database .... ";
echo "================================================";
aws rds wait db-instance-available --db-instance-identifier yescartmysql
export ycmysqldb=$(host $(aws rds describe-db-instances --db-instance-identifier yescartmysql | jq '.DBInstances[0] | .Endpoint.Address' | sed 's/\"//g') | grep -Eo '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}')
echo "$ycmysqldb yesmysqlhost" | sudo tee --append /etc/hosts
echo "127.0.0.1 yummailhost" | sudo tee --append /etc/hosts
sed -i -- 's/y3$PaSs/pwdMy34SqL/g' env/setup/dbi/mysql/dbinit.sql
sed -i -- "s/localhost/'%'/g" env/setup/dbi/mysql/dbinit.sql
mysql -uyesmaster -hyesmysqlhost -ppwdMy34SqL < "env/setup/dbi/mysql/dbinit.sql"
export ycdemohost=$(aws ec2 describe-instances --filter Name=tag:Name,Values=YCDEMO | jq '.Reservations[0].Instances[0] | .PublicDnsName' | sed 's/\"//g')
mysql -uyes -hyesmysqlhost -ppwdMy34SqL -e "USE yes; DELETE FROM TSHOPURL WHERE STOREURL_ID <> 12; UPDATE TSHOPURL SET URL = '$ycdemohost';" yes
mysql -uyes -hyesmysqlhost -ppwdMy34SqL -e "USE yes; UPDATE TJOBDEFINITION SET DEFAULT_PAUSED=false, CONTEXT = 'file-import-root=/var/lib/tomcat7-ycdemo/import
config.0.group=YC DEMO: Initial Data
config.0.regex=import([\\.\\d{14}]*)\\.zip
config.0.reindex=true
config.0.pass=1234567
config.1.group=YC DEMO: IceCat Catalog
config.1.regex=import\\-EN,DE,UK,RU([\\.\\d{14}]*)\\.zip
config.1.reindex=true
config.1.pass=1234567
config.2.group=YC DEMO: Product images (IceCat)
config.2.regex=import\\-EN,DE,UK,RU\\-img([\\.\\d{14}]*)\\.zip
config.2.reindex=true
config.2.pass=1234567' WHERE GUID='autoImportJob'; " yes
mysql -uyes -hyesmysqlhost -ppwdMy34SqL -e "USE yes; UPDATE TJOB SET PAUSED=false WHERE JOB_DEFINITION_CODE='autoImportJob'; " yes
# mysql -uyes -hyesmysqlhost -ppwdMy34SqL -e "USE yes; DELETE FROM TSYSTEMATTRVALUE WHERE CODE='JOB_SEND_MAIL_PAUSE'; INSERT INTO TSYSTEMATTRVALUE SET val = 'false', code = 'JOB_SEND_MAIL_PAUSE', SYSTEM_ID=100, GUID='JSPM100'; " yes
mysql -uyes -hyesmysqlhost -ppwdMy34SqL -e "USE yes; UPDATE TSYSTEMATTRVALUE SET val = 'http://$ycdemohost:8080/' WHERE code = 'SYSTEM_DEFAULT_SHOP' AND SYSTEM_ID=100; " yes
cp env/maven/aws/tomcat/keystore.jks /etc/tomcat7/keystore.jks
cp env/maven/aws/tomcat/server.xml /etc/tomcat7/server.xml
chown tomcat:tomcat /var/lib/tomcat7/webapps/ROOT -R
chown tomcat:tomcat /etc/tomcat7/keystore.jks
chown tomcat:tomcat /etc/tomcat7/server.xml
cp /home/ec2-user/yes-cart/manager/jam/target/cp.war /usr/share/tomcat7/webapps/
cp /home/ec2-user/yes-cart/web/api/target/api.war /usr/share/tomcat7/webapps/
cp /home/ec2-user/yes-cart/web/store-wicket/target/ROOT.war /usr/share/tomcat7/webapps/
mkdir -p /var/lib/tomcat7-ycdemo/import/SHOP10/config
mkdir -p /var/lib/tomcat7-ycdemo/import/SHOP10/archived
mkdir -p /var/lib/tomcat7-ycdemo/import/SHOP10/incoming
mkdir -p /var/lib/tomcat7-ycdemo/import/SHOP10/processing
mkdir -p /var/lib/tomcat7-ycdemo/import/SHOP10/processed
cp /home/ec2-user/yes-cart/env/sampledata/demo-data/icecat/import/* /var/lib/tomcat7-ycdemo/import/SHOP10/processed
mv /var/lib/tomcat7-ycdemo/import/SHOP10/processed/import-EN,DE,UK,RU.zip /var/lib/tomcat7-ycdemo/import/SHOP10/processed/import-EN,DE,UK,RU.20170906010101.zip
mv /var/lib/tomcat7-ycdemo/import/SHOP10/processed/import-EN,DE,UK,RU-img.zip /var/lib/tomcat7-ycdemo/import/SHOP10/processed/import-EN,DE,UK,RU-img.20170906020202.zip
chown tomcat:tomcat /var/lib/tomcat7-ycdemo -R
sudo /sbin/iptables -t nat -I PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080
sudo /sbin/iptables -t nat -I PREROUTING -p tcp --dport 443 -j REDIRECT --to-port 8443
service tomcat7 start
echo " Yes-Cart is available on "
echo " http://$ycdemohost:8080/cp/ "
echo " http://$ycdemohost:8080/ "
exit
}
if [ $1 ];
then
if [ $1 = "help" ];
then
show_help;
exit 0;
elif [ $1 = "i3rd" ];
then
cd "$YC_HOME"
add_mvn_extra_dep;
cd "$RUNDIR"
exit 0;
elif [ $1 = "cpres" ];
then
cd "$YC_HOME"
cp_resources_to_webapp;
cd "$RUNDIR"
exit 0;
elif [ $1 = "dbimysql" ];
then
cd "$YC_HOME"
init_db_mysql;
cd "$RUNDIR"
exit 0;
elif [ $1 = "dbiderby" ];
then
cd "$YC_HOME"
init_db_derby;
cd "$RUNDIR"
exit 0;
elif [ $1 = "derbygo" ];
then
cd "$YC_HOME"
db_derby_go;
cd "$RUNDIR"
exit 0;
elif [ $1 = "derbygob" ];
then
cd "$YC_HOME"
db_derby_gob;
cd "$RUNDIR"
exit 0;
elif [ $1 = "derbyend" ];
then
cd "$YC_HOME"
db_derby_end;
cd "$RUNDIR"
exit 0;
elif [ $1 = "derbycon" ];
then
cd "$YC_HOME"
db_derby_connect;
cd "$RUNDIR"
exit 0;
elif [ $1 = "env" ];
then
cd "$YC_HOME"
show_env;
cd "$RUNDIR"
exit 0;
elif [ $1 = "luke" ];
then
cd "$YC_HOME"
start_luke;
cd "$RUNDIR"
exit 0;
elif [ $1 = "nullsmtp" ];
then
cd "$YC_HOME"
start_nullsmtp;
cd "$RUNDIR"
exit 0;
elif [ $1 = "builddemo" ];
then
cd "$YC_HOME"
build_demo;
cd "$RUNDIR"
exit 0;
elif [ $1 = "buildidea" ];
then
cd "$YC_HOME"
build_idea;
cd "$RUNDIR"
exit 0;
elif [ $1 = "builddev" ];
then
cd "$YC_HOME"
build_dev;
cd "$RUNDIR"
exit 0;
elif [ $1 = "aws" ];
then
cd "$YC_HOME"
start_aws;
cd "$RUNDIR"
exit 0;
else
echo "Provide a command..."; show_help; exit 100;
fi
else echo "Provide a command..."; show_help; exit 100;
fi