Difference between revisions of "Instalasi Ushahidi"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
Line 3: | Line 3: | ||
sudo su | sudo su | ||
apt-get install lamp-server^ mcrypt php5-mcrypt libpcre3 spl-core spl-webspl spl-xml | apt-get install lamp-server^ mcrypt php5-mcrypt libpcre3 spl-core spl-webspl spl-xml | ||
+ | |||
+ | Siapkan [[database]] untuk [[ushahidi]], disini akan digunakan | ||
+ | [[database]] dengan nama ushahidi, user [[database]] dengan nama ushahidi | ||
+ | dan [[password]] untuk akses [[database]] adalah ushahidi. | ||
+ | Sedang [[password]] [[root]] [[MySQL]] di set sebagai [[password]]. | ||
+ | Perintah yang digunakan untuk mengkonfigurasi adalah | ||
+ | |||
+ | mysql | ||
+ | mysql> SET PASSWORD FOR root@localhost=PASSWORD('password'); | ||
+ | |||
+ | Jika password Root [[MySQL]] [[database]] sudah di set maka | ||
+ | kita dapat langsung mengkonfigurasi [[MySQL]] menggunakan perintah | ||
+ | |||
+ | mysql -u root -p | ||
+ | Enter password: | ||
+ | create database ushahidi; | ||
+ | grant INSERT,SELECT on root.* to ushahidi@localhost; | ||
+ | grant CREATE, INSERT, SELECT, DELETE, UPDATE, DROP, INDEX on ushahidi.* to ushahidi@localhost identified by 'ushahidipass'; | ||
+ | grant CREATE, INSERT, SELECT, DELETE, UPDATE, DROP, INDEX on ushahidi.* to ushahidi identified by 'ushahidipass'; | ||
+ | exit | ||
+ | |||
+ | Bagi anda yang masih belajar. Asumsi root password 123456. Anda dapat juga menggunakan di bawah ini, tapi jangan digunakan di [[server]] yang operasional di [[Internet]] | ||
+ | |||
+ | |||
+ | # mysql -u root -p123456 | ||
+ | |||
+ | create database ushahidi; | ||
+ | grant ALL on root.* to ushahidi@localhost; | ||
+ | grant ALL on ushahidi.* to ushahidi@localhost identified by 'ushahidi'; | ||
+ | grant ALL on ushahidi.* to ushahidi identified by 'ushahidi'; | ||
+ | exit | ||
Ambil [[source code]] dari | Ambil [[source code]] dari |
Revision as of 09:00, 12 October 2011
Siapkan aplikasi pendukung
sudo su apt-get install lamp-server^ mcrypt php5-mcrypt libpcre3 spl-core spl-webspl spl-xml
Siapkan database untuk ushahidi, disini akan digunakan database dengan nama ushahidi, user database dengan nama ushahidi dan password untuk akses database adalah ushahidi. Sedang password root MySQL di set sebagai password. Perintah yang digunakan untuk mengkonfigurasi adalah
mysql mysql> SET PASSWORD FOR root@localhost=PASSWORD('password');
Jika password Root MySQL database sudah di set maka kita dapat langsung mengkonfigurasi MySQL menggunakan perintah
mysql -u root -p Enter password: create database ushahidi; grant INSERT,SELECT on root.* to ushahidi@localhost; grant CREATE, INSERT, SELECT, DELETE, UPDATE, DROP, INDEX on ushahidi.* to ushahidi@localhost identified by 'ushahidipass'; grant CREATE, INSERT, SELECT, DELETE, UPDATE, DROP, INDEX on ushahidi.* to ushahidi identified by 'ushahidipass'; exit
Bagi anda yang masih belajar. Asumsi root password 123456. Anda dapat juga menggunakan di bawah ini, tapi jangan digunakan di server yang operasional di Internet
# mysql -u root -p123456
create database ushahidi; grant ALL on root.* to ushahidi@localhost; grant ALL on ushahidi.* to ushahidi@localhost identified by 'ushahidi'; grant ALL on ushahidi.* to ushahidi identified by 'ushahidi'; exit
Ambil source code dari
Lakukan
sudo su cp Ushahidi_Web_2.1_Tunis_Offical.zip /var/www cd /var/www unzip Ushahidi_Web_2.1_Tunis_Offical.zip mv Ushahidi_Web ushahidi chown -Rf www-data.www-data /var/www/ushahidi
Referensi
- http://download.ushahidi.com/index.php
- http://wiki.ushahidi.com/doku.php?id=how_to_install_ushahidi
- http://wiki.ushahidi.com/doku.php?id=how_to_install_ushahidi_on_ubuntu
- http://antoniusitp2800.tumblr.com/post/248550101/how-i-installed-ushahidi-now-outdated