Changes between Version 21 and Version 22 of SORTA


Ignore:
Timestamp:
2016-08-09T10:44:15+02:00 (8 years ago)
Author:
cp229
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SORTA

    v21 v22  
    3434[[BR]]
    3535
    36 '''Step 4 - configure tomcat 7'''[[BR]]
     36'''Step 4 - configure MySQL'''
     37* Open terminal and start mysql client (command differs in Windows, Linux, Mac):
     38{{{
     39/usr/local/mysql/bin/mysql -u root
     40}}}
     41* In MySQL client create database and permissions via command:
     42{{{
     43create database sorta;
     44grant all privileges on sorta.* to molgenis@localhost identified by 'molgenis';
     45flush privileges;
     46}}}
     47
     48
     49
     50[[BR]]
     51'''Step 6 - configure tomcat 7'''[[BR]]
    3752* Create a file called setenv.sh in apache-tomcat-7.[version.number]/bin/
    3853* Add the configuration to the file, such as this example:
     
    4459
    4560[[BR]]
    46 '''Step 5 - deploy SORTA in tomcat 7'''[[BR]]
     61'''Step 7 - deploy SORTA in tomcat 7'''[[BR]]
    4762* Unzip apache-tomcat-7.[version.number].tar.gz
    4863* Move SORTA.war to apache-tomcat-7.[version.number]/webapps/