Changes between Version 3 and Version 4 of Ushahidi


Ignore:
Timestamp:
05/28/16 22:02:14 (8 years ago)
Author:
jorrit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Ushahidi

    v3 v4  
    1616service apache2 restart
    1717}}}
     18
     19{{{
     20useradd --create-home --shell /bin/bash ushahidi
     21passwd ushahidi
     22}}}
     23
     24{{{
     25su - ushahidi
     26mkdir public_html
     27cd public_html
     28}}}
     29
     30{{{
     31mysql -u root -p
     32}}}
     33
     34{{{
     35CREATE DATABASE ushahidi_db;
     36GRANT ALL ON ushahidi_db.* to ushahidi_user@localhost IDENTIFIED BY 'ushahidi-db-password';
     37quit;
     38}}}
     39
     40{{{
     41cat > .env << EOL
     42DB_HOST=localhost
     43DB_NAME=ushahidi_db
     44DB_TYPE=MySQLi
     45DB_USER=ushahidi_user
     46DB_PASS=ushahidi-db-password
     47EOL
     48}}}
     49