Difference between revisions of "Knowledge:Cloud"

From OpenKM Documentation
Jump to: navigation, search
(Created page with '== User and service == $ sudo adduser --disabled-password okm16 $ sudo vim /etc/init.d/tomcat == MySQL support == Now create databases and user: $ mysql -h localhost -u r…')
(No difference)

Revision as of 17:58, 25 January 2013

User and service

 $ sudo adduser --disabled-password okm16
 $ sudo vim /etc/init.d/tomcat

MySQL support

Now create databases and user:

 $ mysql -h localhost -u root -p
 mysql> CREATE USER okm16@localhost IDENTIFIED BY '*secret*';
 mysql> CREATE DATABASE okm16_app DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_bin;
 mysql> GRANT ALL ON okm16_app.* TO okm16@localhost WITH GRANT OPTION;