]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
setupStorageDatabase template created.
authorjniedzie <jeremi.niedziela@cern.ch>
Mon, 8 Dec 2014 08:51:53 +0000 (09:51 +0100)
committerjniedzie <jeremi.niedziela@cern.ch>
Mon, 8 Dec 2014 08:52:16 +0000 (09:52 +0100)
MONITOR/alistoragemanager/AliStorageTypes.h
MONITOR/alistoragemanager/setupStorageDatabase_TEMPLATE.sh [new file with mode: 0644]

index 4371849a5af8efc53af692f9c723c2d3b79bdcf9..f388dd666ba03a956948f9276458e8a648c3394f 100644 (file)
@@ -5,7 +5,7 @@
 #include <TFile.h>
 
 inline const char* GetConfigFilePath(){
-       return Form("%s/MONITOR/alistoragemanager/setupStorageDatabase.sh",gSystem->Getenv("ALICE_ROOT"));
+    return Form("%s/setupStorageDatabase.sh",gSystem->Getenv("HOME"));
 }
 
 enum storageSockets{
diff --git a/MONITOR/alistoragemanager/setupStorageDatabase_TEMPLATE.sh b/MONITOR/alistoragemanager/setupStorageDatabase_TEMPLATE.sh
new file mode 100644 (file)
index 0000000..afb354c
--- /dev/null
@@ -0,0 +1,56 @@
+#!/bin/bash
+
+#-----------------------------------------------------------------------------------#
+#                                                                                   #
+#   This is a template for script creating database for Storage Manager             #
+#   and setting all necessary variables for Storage Manager, Event Display          #
+#   and Online Reconstruction.                                                      #
+#                                                                                   #
+#   Rename the file and copy it to your home directory:                             #
+#                                                                                   #
+#   cp setupStorageDatabase_TEMPLATE.sh ~/setupStorageDatabase.sh                   #
+#                                                                                   #
+#   Then put all correct hostnames, ports, databases details and passwords.         #
+#   REMEMBER: do not commit this file after putting any datails in it !!!           #
+#                                                                                   #
+#                                                                                   #
+#   First time after installation you also need to run this script in order         #
+#   to initialize the database (remember to grant necessary privilages to it).      #
+#                                                                                   #
+#-----------------------------------------------------------------------------------#
+
+
+HOST="localhost"   # IP of machine on which mysql database is located
+PORT="123"
+DATABASE="database"
+USER="user"
+PASS="pass123"
+TABLE="table"
+STORAGE_PATH="/some/path/"
+MAX_SIZE="300000000"
+MAX_OCCUPATION="100"
+REMOVE_PERCENT="50"
+EVENTS_IN_FILE="20"
+EVENT_SERVER="localhost"   # IP of machine running alieventserver
+EVENT_SERVER_USER="user"
+EVENT_SERVER_PORT="124"
+STORAGE_SERVER="localhost"      # IP of machine running alistorage
+STORAGE_SERVER_USER="user"
+STORAGE_SERVER_PORT="125"      # server thread communication port
+STORAGE_CLIENT_PORT="126"      # client thread communication port
+XML_SERVER_PORT="127"          # server of xml files
+mysql -u root -ppassword -e "create database if not exists $DATABASE;"
+mysql -u root -ppassword -e "grant ALL PRIVILEGES on $DATABASE.* to '$USER'@'$HOST' identified by '$PASS';"
+mysql -u root -ppassword -e "use $DATABASE;"
+mysql -u root -ppassword -e "CREATE TABLE IF NOT EXISTS $DATABASE.$TABLE(\
+run_number int(6) NOT NULL,\
+event_number int(6) NOT NULL,\
+system text(7) DEFAULT NULL,\
+multiplicity int(5) DEFAULT NULL,\
+permanent tinyint(1) DEFAULT NULL,\
+file_path text(100) DEFAULT NULL,\
+PRIMARY KEY(run_number,event_number));"
+
+echo "-----------------------------"
+echo "Databases successfuly created"
+echo "-----------------------------"