-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathhisotia.txt
12413 lines (12413 loc) · 489 KB
/
hisotia.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
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
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1 find tmp/cache/ -name 'especies_grupo*' | wc -l
2 find tmp/cache/ -name 'conteo_grupo*' | wc -l
3 find tmp/cache/ -name 'conteo_grupo_municipio_1_*' | wc -l
4 find tmp/cache/ -name 'especies_grupo*' | wc -l
5 find tmp/cache/ -name 'conteo_grupo*' | wc -l
6 find tmp/cache/ -name 'especies_grupo*' | wc -l
7 htop
8 find tmp/cache/ -name 'especies_grupo*' | wc -l
9 find tmp/cache/ -name 'conteo_grupo*' | wc -l
10 find tmp/cache/ -name 'especies_grupo*' | wc -l
11 find tmp/cache/ -name 'conteo_grupo*' | wc -l
12 find tmp/cache/ -name 'especies_grupo*' | wc -l
13 find tmp/cache/ -name 'conteo_grupo*' | wc -l
14 find tmp/cache/ -name 'especies_grupo*' | wc -l
15 find tmp/cache/ -name 'conteo_grupo*' | wc -l
16 tail -f log/production.log
17 ls -ltr log/
18 tail -f log/production.log
19 find tmp/cache/ -name 'especies_grupo*' | wc -l
20 find tmp/cache/ -name 'conteo_grupo*' | wc -l
21 tail -f log/production.log
22 find tmp/cache/ -name 'ejemplares_snib*' | wc -l
23 tail -f log/production.log
24 find tmp/cache/ -name 'ejemplares_snib*' | rm -f
25 find tmp/cache/ -name 'ejemplares_snib*' | wc -l
26 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
27 tail -f log/production.log
28 cd buscador/
29 export RAILS_ENV=production
30 vi config/routes.rb
31 sudo /etc/init.d/apache2 restart
32 git fetch origin master
33 git merge origin/master
34 git fetch origin master
35 git merge origin/master
36 pm2 list
37 pm2 delete RESTenciclovida3
38 git status
39 rm -rf vendor/SNIBappRest_old/
40 git fetch origin master
41 git merge origin/master
42 vi config/config.yml
43 sudo su acuevas
44 pwd
45 vi /home/acuevas/nodes/appREST/app.js
46 vi vendor/SNIBappRest_old/app.js
47 cd vendor/SNIBappRest_old/
48 pm2 start app.js -i 3 --name RESTenciclovida3
49 pm2 list
50 vi app.js
51 vi /home/acuevas/nodes/appREST_calonso/app.js
52 vi /home/acuevas/nodes/appREST/app.js
53 pm2 log
54 ls -ltr
55 npm install
56 pm2 list
57 pm2 delete RESTenciclovida3
58 pm2 start app.js -i 3 --name RESTenciclovida3
59 pm2 log
60 ls -ltr
61 cd controller/
62 ls -ltr
63 cp config.js.example config.js
64 vi config.js
65 pm2 list
66 pm2 delete RESTenciclovida3
67 pm2 start app.js -i 3 --name RESTenciclovida3
68 cd ..
69 pm2 start app.js -i 3 --name RESTenciclovida3
70 pm2 log
71 cd ../../
72 bundle install
73 vi config/routes.rb
74 ps -fea | grep delay
75 clear
76 export RAILS_ENV=production
77 rails r tools/regiones_mapas/crea_cache_regiones.rb -d
78 git fetch origin master
79 git merge origin/master
80 git fetch origin master
81 git merge origin/master
82 rails r tools/regiones_mapas/crea_cache_regiones.rb -d
83 bg
84 fg
85 clear
86 git status
87 git fetch origin master
88 git merge origin/master
89 rails r tools/regiones_mapas/crea_cache_regiones.rb -d
90 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
91 nohup rails r tools/regiones_mapas/crea_cache_regiones.rb -d &
92 rails c
93 cd public/topojson/
94 ls -ltr
95 rm -f *.json
96 ls -ltr
97 pwd
98 htop
99 ls -ltr
100 vi estado_19_division_municipal.json
101 cd ../..
102 rails c
103 ls
104 ls -ltr public/geodatos/34460
105 ps -fea | grep ruby
106 ps -fea | grep rails
107 ps -fea | grep runner
108 ps -fea | grep rails
109 ps -fea | grep ruby
110 htop
111 ps -fea | grep tools
112 kill -9 2458
113 vi tools/regiones_mapas/crea_cache_regiones.rb
114 nohup rails r tools/regiones_mapas/crea_cache_regiones.rb -d &
115 ps -fea | grep tools
116 vi tools/regiones_mapas/crea_cache_regiones.rb
117 rails c
118 ps -fea | grep tools
119 ps -fea | grep crea
120 vi tools/regiones_mapas/crea_cache_regiones.rb
121 ls -ltr
122 vi nohup.out
123 vi tools/regiones_mapas/crea_cache_regiones.rb
124 nohup rails r tools/regiones_mapas/crea_cache_regiones.rb -d &
125 tail -f nohup.out
126 rails c
127 Rails.cache.exist?('ejemplares_snib_34460')
128 rails c
129 vi app/models/proveedor.rb
130 ls -ltr
131 vi app/models/proveedor.rb
132 rm -f app/models/.proveedor.rb.swp
133 vi app/models/proveedor.rb
134 ps -fea | grep delay
135 kill -9 29696 29697 29702 29705 29707 29709 29753
136 ps -fea | grep delay
137 sudo /etc/init.d/apache2 restart
138 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
139 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
140 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
141 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
142 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
143 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
144 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
145 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
146 vi tools/regiones_mapas/crea_cache_regiones.rb
147 nohup rails r tools/regiones_mapas/crea_cache_regiones.rb -d &
148 cd buscador/
149 export RAILS_ENV=production
150 find tmp/cache/ -name 'ejemplares_snib_*'
151 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
152 vi tmp/cache/7C3/CF0/ejemplares_snib_162412
153 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
154 htop
155 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
156 ls -ltr public/geodatos/34460
157 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
158 ls -ltr public/geodatos/34460
159 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
160 ls -ltr public/geodatos/34460
161 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
162 df- h .
163 df -h .
164 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
165 ls -ltr public/geodatos/34460
166 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
167 ls -ltr public/geodatos/34460
168 vi app/models/proveedor.rb
169 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
170 vi config/config.yml
171 find tmp/cache/ -name 'ejemplares_snib_*' -exec rm -r {} +
172 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
173 ls -ltr public/geodatos/34460
174 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
175 ls -ltr public/geodatos/163494
176 vi public/geodatos/163494/ejemplares_Elaeodendron_xylocarpum.json
177 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
178 cd buscador/
179 export RAILS_ENV=production
180 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
181 tail -f log/production.log
182 ps -fea | grep delay
183 ps -fea | grep tools
184 vi rails r tools/regiones_mapas/crea_cache_regiones.rb
185 vi tools/regiones_mapas/crea_cache_regiones.rb
186 ps -fea | grep tools
187 nohup rails r tools/regiones_mapas/crea_cache_regiones.rb -d &
188 tail -f log/production.log
189 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
190 tail -f log/production.log
191 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
192 ls -ltr public/geodatos/199441
193 tail -f log/production.log
194 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
195 tail -f log/production.log
196 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
197 htop
198 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
199 vi /home/acuevas/nodes/appREST_calonso/app.js
200 find tmp/cache/ -name 'ejemplares_snib_*' | wc -l
201 vi vendor/SNIBappRest_old/app.js
202 pm2 list
203 pm2
204 pm2 list
205 pm2 restart RESTenciclovida3
206 pm2 log
207 pm2 list
208 tail -f log/production.log
209 ls -ltr public/geodatos/36397
210 vi public/geodatos/36397/ejemplares_Poecilotriccus_sylvia.json
211 find tmp/cache/ -name 'especies_grupo_estado_Aves_19'
212 find tmp/cache/ -name 'especies_grupo_estado_aves_19'
213 rm -f tmp/cache/B94/CB0/especies_grupo_estado_aves_19
214 find tmp/cache/ -name 'especies_grupo_estado_aves_19'
215 htop
216 git status
217 ps -fea | grep delay
218 kill -9 104683 104684
219 git status
220 vi vendor/SNIBappRest_old/app.js
221 git status
222 vi tools/regiones_mapas/crea_cache_regiones.rb
223 git status
224 git checkout app/models/proveedor.rb tools/regiones_mapas/crea_cache_regiones.rb vendor/SNIBappRest_old/app.js
225 git fetch origin master
226 git merge origin/master
227 vi tools/regiones_mapas/crea_cache_regiones.rb
228 pm2 list
229 pm2 restart RESTenciclovida3
230 pm2 list
231 pm2 log
232 sudo /etc/init.d/apache2 restart
233 export RAILS_ENV=production
234 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
235 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
236 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
237 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
238 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
239 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
240 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
241 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
242 ps -fea | grep delay
243 htop
244 ps -fea | grep delay
245 env | RAILS
246 env | grep RAILS
247 nohup rails r tools/regiones_mapas/crea_cache_regiones.rb -d &
248 tail -f log/production.log
249 ps -fea | grep tools
250 htop
251 tail -f log/production.log
252 df -h .
253 vi tools/regiones_mapas/crea_cache_regiones.rb
254 rails r tools/regiones_mapas/crea_cache_regiones.rb -d
255 vi tools/regiones_mapas/crea_cache_regiones.rb
256 nohup rails r tools/regiones_mapas/crea_cache_regiones.rb -d &
257 tail -f log/production.log
258 ps -fea | grep tools
259 kill -9 37832
260 vi tools/regiones_mapas/crea_cache_regiones.rb
261 nohup rails r tools/regiones_mapas/crea_cache_regiones.rb -d &
262 tail -f log/production.log
263 ps -fea | grep tools
264 kill -9 41840
265 tail -f log/production.log
266 vi tools/regiones_mapas/crea_cache_regiones.rb
267 rails c
268 vi tools/regiones_mapas/crea_cache_regiones.rb
269 cd buscador/
270 export RAILS_ENV=production
271 rails c
272 vi config/config.yml
273 cd buscador/
274 git fetch origin master
275 git merge origin/master
276 sudo /etc/init.d/apache2 stop
277 rake assets:clean
278 rake assets:clobber
279 rake assets:precompile
280 sudo /etc/init.d/apache2 start
281 cd buscador/
282 emacs -nw config/config.yml
283 sudo emacs -nw /etc/apache2/ports.conf
284 curl https://api.enciclovida.mx:8843/ml-catalog-api/ws3.0/partner/test-ip-access
285 curl https://api.enciclovida.mx/ml-catalog-api/ws3.0/partner/test-ip-access
286 emacs -nw config/config.yml
287 curl https://api.macaulaylibrary.org/ml-catalog-api/ws3.0/partner/test-ip-access
288 curl https://api.enciclovida.mx/ml-catalog-api/ws3.0/partner/test-ip-access
289 curl https://api.macaulaylibrary.org/ml-catalog-api/ws3.0/partner/test-ip-access
290 emacs -nw config/config.yml
291 fg
292 sudo /etc/init.d/apache2 restart
293 curl https://api.macaulaylibrary.org/ml-catalog-api/ws3.0/partner/test-ip-access
294 cd buscador/
295 export RAILS_ENV=production
296 ls
297 history
298 find tmp/cache/ -name 'especies/'
299 find tmp/cache/ -name 'especies'
300 find tmp/cache/ -name 'especies*'
301 find tmp/cache/ -name 'views*'
302 vi tmp/cache/D51/3C0/views%2Fespecies%2F35587%2Fwikipedia_es
303 vi tmp/cache/D51/3C0/views%2Fespecies%2F35672%2F
304 vi tmp/cache/D51/3C0/views%2Fespecies%2F35672
305 rails c
306 vi config/config.yml
307 vi app/models/fichas/ficha.rb
308 vi config/config.yml
309 vi app/models/fichas/ficha.rb
310 sudo /etc/init.d/apache2 restart
311 vi app/models/fichas/ficha.rb
312 sudo /etc/init.d/apache2 restart
313 vi app/models/fichas/fic
314 vi config/database.yml
315 git fetch origin master
316 ps -fea | grep delay
317 kill -9 21583 21584 21585 21586 21587 21588 21590
318 git merge origin/master
319 git checkout app/models/fichas/ficha.rb
320 git merge origin/master
321 rake assets:clean
322 rake assets:clobber
323 rake assets:precompile
324 sudo /etc/init.d/apache2 restart
325 git fetch origin master
326 git merge origin/master
327 sudo /etc/init.d/apache2 restart
328 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
329 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
330 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
331 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
332 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
333 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
334 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
335 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
336 ps -fea | grep delay
337 cd buscador/
338 emacs -nw config/config.yml
339 sudo apache2ctl restart
340 curl https://api.macaulaylibrary.org/ml-catalog-api/ws3.0/partner/test-ip-access
341 cd buscador/
342 tail -f log/production.log
343 git fetch origin master
344 git merge origin/master
345 rake assets:clean
346 rake assets:clobber
347 sudo /etc/init.d/apache2 stop
348 rake assets:precompile
349 sudo apache2ctl restart
350 df -h
351 du -hs *
352 cd ..
353 du -hs *
354 du -hs /usr/local/*
355 sudo du -hs /usr/local/*
356 cd buscador/
357 rake assets:clean
358 rake assets:clobber
359 rake assets:precompile
360 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
361 export RAILS_ENV=production
362 redis-server &
363 rails runner "eval(File.read '/home/enciclovida/buscador/tools/levantaServicios/levantaBlurrily.rb')" &
364 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
365 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
366 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
367 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
368 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
369 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
370 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
371 sudo /etc/init.d/apache2 start
372 sudo /etc/init.d/apache2 status
373 sudo /etc/init.d/apache2 stop
374 sudo /etc/init.d/apache2 start
375 cd buscador/
376 sudo /etc/init.d/apache2 stop
377 htop
378 ps -fea | grep delay
379 kill 89009 89010 89011 89012 89013 89014 89027
380 ps -fea | grep rails
381 kill 29694
382 ps -fea | grep redis
383 kill 28809
384 htop
385 free && sync && echo 3 > /proc/sys/vm/drop_caches && free
386 sudo su
387 htop
388 du -hs /usr/local/*
389 sudo du -hs /usr/local/*
390 htop
391 sudo /etc/init.d/apache2 stop
392 git fetch origin master
393 git merge origin/master
394 rake assets:clean
395 rake assets:clobber
396 rake assets:precompile
397 sudo /etc/init.d/apache2 start
398 htop
399 df -h .
400 pm2 log
401 pm2 list
402 sudo su acuevas
403 export RAILS_ENV=production
404 pwd
405 cd buscador/
406 df -h .
407 cd buscador/
408 rake assets:precompile
409 export RAILS_ENV=production
410 rails c
411 vi config/database.yml
412 emacs config/database.yml
413 mysql -h puma -u enciclovida -p
414 mysql -h puma.conabio.gob.mx -u enciclovida -p
415 emacs config/database.yml
416 mysql -h 172.16.1.139 -u enciclovida -p
417 sudo emacs -nw /etc/apache2/sites-available/buscador.conf
418 cd buscador/
419 export RAILS_ENV=production
420 ps -fea | grep delay
421 kill -9 62196 62197
422 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
423 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
424 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
425 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
426 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
427 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
428 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
429 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
430 sudo emacs -nw /etc/apache2/sites-enabled/reverse_proxies.conf
431 sudo /etc/init.d/apache2 force-reload
432 ping fespecies.conabio.gob.mx
433 ping http://fespecies.conabio.gob.mx
434 cat buscador/config/database.yml
435 sudo a2ensite tunel9999.conf
436 sudo /etc/init.d/apache2 force-reload
437 cd buscador/
438 emacs config/database.yml
439 export RAILS_ENV=production
440 cd buscador/
441 vi config/database.yml
442 mysql -u enciclovida -h 172.16.1.139 -p
443 cd buscador/
444 export RAILS_ENV=production
445 rails c
446 cd bsu
447 cd buscador/
448 export RAILS_ENV=production
449 rails c
450 cd bsu
451 cd buscador/
452 export RAILS_ENV=production
453 rails c
454 env | grep RAILS
455 git fetch origin master
456 git merge origin/master
457 git status
458 git diff tools/regiones_mapas/crea_cache_regiones.rb
459 git checkout tools/regiones_mapas/crea_cache_regiones.rb
460 git status
461 git checkout vendor/SNIBappRest_old/package-lock.json
462 git merge origin/master
463 rake assets:clean
464 rake assets:clobber
465 rake assets:precompile
466 rails c
467 ps -fea | grep delay
468 kill -9 115902 115903 115904 115905 115906 115907 115908
469 ps -fea | grep delay
470 sudo apache2ctl restart
471 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
472 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
473 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
474 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
475 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
476 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
477 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
478 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
479 cd buscador/
480 export RAILS_ENV=production
481 git fetch origin master
482 git merge origin/master
483 sudo apache2ctl restart
484 cd buscador/
485 export RAILS_ENV=production
486 vi app/views/especies/show.erb
487 sudo apache2ctl restart
488 sudo /etc/init.d/apache2 stop
489 cd buscador/
490 git fetch origin master
491 git merge origin/master
492 rake assets:clean
493 rake assets:clobber
494 rake assets:precompile
495 sudo apache2ctl restart
496 cd buscador/
497 git fetch origin master
498 git fetch origin master
499 git merge origin/master
500 sudo apache2ctl restart
501 cd buscador/
502 git status
503 ls -l app/views/especies/show.erb
504 cd buscador/
505 export RAILS_ENV=production
506 ps -fea | grep delay
507 kill -9 20921 20922
508 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
509 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
510 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
511 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
512 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
513 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
514 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
515 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
516 cd buscador/public/
517 ls- ltr
518 ls -ltr
519 ls -ltr pdfs/
520 mysql -u enciclovida -h 172.16.1.139 -p
521 cd
522 cd buscador/
523 vi config/database.yml
524 mysql -u enciclovida -h 172.16.1.139 -p
525 uptime
526 cd buscador/
527 export RAILS_ENV=production
528 ps -fea | grep delay
529 uptime
530 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
531 redis-server &
532 sleep 10
533 export RAILS_ENV=production
534 rails runner "eval(File.read '/home/enciclovida/buscador/tools/levantaServicios/levantaBlurrily.rb')" &
535 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
536 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
537 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
538 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
539 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
540 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
541 cd buscador/
542 export RAILS_ENV=production
543 ps -fea | grep delay
544 ps -fea | grep redis
545 ps -fea | grep delay
546 kill -9 101771 101772 101773 101774 101775 101776
547 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
548 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
549 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
550 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
551 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
552 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
553 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
554 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
555 ps -fea | grep redis
556 sudo apache2ctl restart
557 ps -fea | grep rails
558 ps -fea | grep ruby
559 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
560 ls -ltr /home/enciclovida/buscador/tools/levantaServicios/levantaBlurrily.rb
561 rails runner "eval(File.read '/home/enciclovida/buscador/tools/levantaServicios/levantaBlurrily.rb')" &
562 ps -fea | grep delay
563 cd buscador/
564 export RAILS_ENV=production
565 pm2 list
566 sudo su acuevas
567 export RAILS_ENV=production
568 ls
569 pwd
570 ls -ltr vendor/
571 ls -ltr vendor/SNIBappRest_old/
572 pm2 start app.js -i 3 --name RESTenciclovida3
573 ls -ltr
574 ls -ltr controller/
575 vi app.js
576 pm2 start app.js -i 3 --name RESTenciclovida3
577 top
578 cd buscador/
579 export RAILS_ENV=production
580 pm2 list
581 vi vendor/SNIBappRest_old/app.js
582 ps -fea | grep delay
583 ps -fea | grep redis
584 ps -fea | grep ruby
585 export RAILS_ENV=production
586 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
587 rails runner "eval(File.read '/home/enciclovida/buscador/tools/levantaServicios/levantaBlurrily.rb')" &
588 ps -fea | grep ruby
589 kill -9 70733 70734 70735 70736 70737 70738 70751
590 ps -fea | grep delay
591 ps -fea | grep ruby
592 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
593 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
594 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
595 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
596 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
597 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
598 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
599 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
600 export RAILS_ENV=production
601 cd buscador/
602 ps -fea | grep ruby
603 cd buscador/
604 export RAILS_ENV=production
605 git status
606 git diff app/views/especies/show.erb
607 git status
608 git diff app/views/especies/show.erb
609 git status
610 git checkout app/views/especies/show.erb
611 ps -fea | grep delay
612 kill -9 19591 19592 19593 19594 19595 19596 19609
613 git fetch origin master
614 git merge origin/master
615 rake assets:clean
616 rake assets:clobber
617 rake assets:precompile
618 rails c
619 sudo apache2ctl restart
620 mysql -u enciclovida -h 172.16.1.139 -p
621 env | grep RAILS
622 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
623 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
624 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
625 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
626 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
627 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
628 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
629 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
630 cd bsu
631 cd buscador/
632 export RAILS_ENV=production
633 cd public/
634 cd pdfs/
635 ls -ltr
636 mkdir admin_catalogo
637 cd admin_catalogo/
638 pwd
639 ls -ltr
640 df -h
641 htop
642 cd buscador/
643 tail -f log/production.log
644 tail -500 log/production.log
645 sudo /etc/init.d/apache2 stop
646 ps -fea | grep delay
647 kill 71564 71567 71568 71569 71583
648 ps -fea | grep redis
649 kill 10175
650 ps -fea | grep rail
651 kill 16228
652 sudo su
653 htop
654 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
655 export RAILS_ENV=production
656 redis-server &
657 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
658 rails runner "eval(File.read '/home/enciclovida/buscador/tools/levantaServicios/levantaBlurrily.rb')" &
659 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
660 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
661 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
662 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
663 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
664 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
665 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
666 sudo apache2ctl start
667 cd buscador/
668 export RAILS_ENV=production
669 ps -fea | grep delay
670 ps -fea | grep redis
671 htop
672 df -h .
673 ps -fea | grep delay
674 cd cbus
675 cd bus
676 cd buscador/
677 cat config/database.yml
678 mysql -h 172.16.1.139 -p
679 cat config/database.yml
680 sudo su
681 du -h
682 df -h
683 tail -500 log/production.log
684 cat config/database.yml
685 mysql -h200.12.166.76 -u test
686 mysql -h200.12.166.76 -u test -p
687 emacs -nw config/database.yml
688 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
689 export RAILS_ENV=production
690 rails runner "eval(File.read '/home/enciclovida/buscador/tools/levantaServicios/levantaBlurrily.rb')" &
691 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
692 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
693 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
694 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
695 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
696 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
697 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
698 sudo apache2ctl start
699 cd buscador/
700 export RAILS_ENV=production
701 ps -fea | grep delay
702 kill -9 51143 51144
703 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
704 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
705 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
706 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
707 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
708 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
709 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
710 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
711 mysql -h200.12.166.76 -u test -p
712 mysql -h 172.16.1.139 -p
713 rails c
714 git status
715 git fetch origin master
716 git merge origin/master
717 sudo apache2ctl restart
718 cd buscador/
719 export RAILS_ENV=production
720 ps -fea | grep delay
721 sudo vi /etc/sysctl.conf
722 sudo sysctl -p /etc/sysctl.conf
723 cd buscador/
724 export RAILS_ENV=production
725 ps -fea | grep delay
726 cd buscador/
727 export RAILS_ENV=production
728 rails c
729 cd buscador/
730 export RAILS_ENV=production
731 rails c
732 cd buscador/
733 export RAILS_ENV=production
734 rails c
735 vi config/database.yml
736 cd buscador/
737 export RAILS_ENV=production
738 rails c
739 cd buscador/
740 export RAILS_ENV=production
741 ps -fea | grep delay
742 kill -9 34677
743 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
744 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
745 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
746 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
747 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
748 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
749 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
750 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
751 cd buscador/
752 export RAILS_ENV=production
753 pwd
754 export RAILS_ENV=production
755 rails c
756 cd buscador/
757 export RAILS_ENV=production
758 rais c
759 rails c
760 cd buscador/
761 export RAILS_ENV=production
762 rails c
763 cd vendor/
764 ls -ltr
765 cd SNIB
766 cd SNIBappRest_old/
767 ls -ltr
768 vi app.js
769 cd
770 sudo su acuevas
771 cd buscador/
772 export RAILS_ENV=production
773 ps -fea | grep delay
774 pm2 list
775 vi vendor/SNIBappRest_old/app.js
776 Blurrily::Server.new(:host => IP, :directory=> './db/blurrily').start
777 ps -fea | grep delay
778 kill -9 111581
779 export RAILS_ENV=production
780 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
781 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
782 pwd
783 cd buscador/
784 export RAILS_ENV=production
785 ps -fea | grep delay
786 kill -9 51908
787 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
788 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
789 cd buscador/
790 export RAILS_ENV=production
791 ps -fea | grep delay
792 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
793 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
794 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
795 cd buscador/
796 export RAILS_ENV=production
797 ps -fea | grep delay
798 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
799 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
800 ls -ltr
801 export RAILS_ENV=production
802 ps -fea | grep delay
803 kill -9 14976
804 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
805 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
806 cd buscador/
807 export RAILS_ENV=production
808 ps -fea | grep delay
809 kill -9 82148
810 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
811 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
812 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
813 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
814 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
815 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
816 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
817 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
818 sudo emacs -nw /etc/apache2/sites-enabled/reverse_proxies.conf
819 sudo su
820 curl "http://enciclovida.mx:9999/explora-por-clasificacion/hojas?especie_id=23268&ancestros%5B%5D=1&ancestros%5B%5D=213407&ancestros%5B%5D=22653&ancestros%5B%5D=22752&ancestros%5B%5D=23268&ancestros%5B%5D=25783&ancestros%5B%5D=34460"
821 sudo su
822 cd buscador/
823 export RAILS_ENV=production
824 ps -fea | grep delay
825 kill -9 58189
826 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
827 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
828 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
829 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
830 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
831 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
832 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
833 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
834 cd buscador/
835 export RAILS_ENV=production
836 ps -fea | grep delay
837 kill -9 2761
838 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
839 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
840 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
841 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
842 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
843 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
844 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
845 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
846 clear
847 vi app/models/fichas/ficha.rb
848 ps -fea | grep delay
849 cd buscador/
850 export RAILS_ENV=production
851 vi config/config.yml
852 ps -fea | grep delay
853 kill -9 58817 58818 58819 58820 58821 58822 58823
854 ps -fea | grep delay
855 sudo apache2ctl restart
856 export RAILS_ENV=production
857 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
858 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
859 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
860 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
861 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
862 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
863 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
864 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
865 ps -fea | grep delay
866 kill -9 91028 91029 91056
867 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
868 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
869 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
870 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
871 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
872 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
873 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
874 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
875 cd buscador/
876 export RAILS_ENV=production
877 ps -fea | grep delay
878 kill -9 130134
879 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
880 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
881 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
882 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
883 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
884 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
885 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
886 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
887 rails c
888 cd buscador/
889 ps -fea | grep delay
890 kill 17477
891 ps -fea | grep redis
892 kill 36824
893 ps -fea | grep rail
894 kill 51142
895 ps -fea | grep rail
896 ps -fea | grep redis
897 export RAILS_ENV=production
898 sudo /etc/init.d/apache2 stop
899 git fetch origin master
900 git merge origin master
901 git merge origin/master
902 rake assets:clean
903 rake assets:clobber
904 rake assets:precompile
905 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
906 redis-server &
907 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
908 export RAILS_ENV=production
909 rails runner "eval(File.read '/home/enciclovida/buscador/tools/levantaServicios/levantaBlurrily.rb')" &
910 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
911 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
912 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
913 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
914 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
915 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
916 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
917 sudo apache2ctl restart
918 sudo a2dissite tunel9999.conf
919 sudo apache2ctl restart
920 cat /etc/apache2/sites-available/tunel9999.conf
921 sudo a2ensite tunel9999.conf
922 sudo apache2ctl restart
923 cd buscador/
924 pwqd
925 pwd
926 git status
927 ps -fea | grep dela
928 sudo /etc/init.d/apache2 stop
929 sudo /etc/init.d/apache2 start
930 git status
931 sudo /etc/init.d/apache2 status
932 sudo /etc/init.d/apache2 stop
933 sudo /etc/init.d/apache2 start
934 sudo /etc/init.d/apache2 status
935 cat config/database.yml
936 cd buscador/
937 export RAILS_ENV=production
938 ps -fea | grep delay
939 vi config/config.yml
940 kill -9 88668 88669 88670 88671 88672 88673 88674
941 ps -fea | grep delay
942 vi config/database.yml
943 vi config/routes.rb
944 ps -fea | grep delay
945 env | grep RAILS
946 ps -fea | grep delay
947 head -25 tools/levantaServicios/levantaServiciosProduccion.sh
948 vi config/config.yml
949 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i validaciones --queue=validaciones run &
950 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i descargar_taxa --queue=descargar_taxa run &
951 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i ejemplares_snib--queue=ejemplares_snib run &
952 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i estadisticas --queue=estadisticas run &
953 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i observaciones_naturalista --queue=observaciones_naturalista run &
954 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i redis --queue=redis run &
955 nohup ruby /home/enciclovida/buscador/bin/delayed_job -i peces --queue=peces run &
956 rails c
957 tail -f log/production.log
958 vi app/views/shared_b4/_dropdown_menu.html.erb
959 sudo apache2ctl restart
960 cd buscador/
961 export RAILS_ENV=production
962 rails c
963 cd buscador/
964 export RAILS_ENV=production
965 rails c
966 cd buscador/
967 export RAILS_ENV=production
968 rails c
969 export RAILS_ENV=production
970 git fetch origin master
971 git merge origin/master
972 sudo apache2ctl restart
973 rals c
974 rails c
975 cat buscador/config/config.
976 cat buscador/config/config.yml
977 cd buscador/
978 git status
979 git diff app/helpers/application_helper.rb
980 git diff app/helpers/busquedas_helper.rb
981 git status
982 git diff app/helpers/application_helper.rb
983 cd /home/acuevas/nodes/appREST_calonso
984 ls -l
985 wc -l app.js
986 tail app.js
987 less app.js
988 tail -100 app.js
989 pwd
990 cd buscador/
991 export RAILS_ENV=production
992 rails c
993 git fetch origin master
994 git merge origin/master
995 git status
996 git diff app/helpers/application_helper.rb
997 git diff app/helpers/busquedas_helper.rb
998 git diff app/views/shared_b4/_dropdown_menu.html.erb
999 git diff config/routes.rb
1000 git status