Difference between revisions of "Gallery: instalasi"

From OnnoWiki
Jump to navigation Jump to search
 
(12 intermediate revisions by the same user not shown)
Line 18: Line 18:
 
  a2enmod rewrite
 
  a2enmod rewrite
  
==Konfigurasi Database==
+
Restart Web Server
  
  mysqladmin -p create gallery
+
  /etc/init.d/apache2 restart
  
mysql -u root -p
+
==Konfigurasi PHP==
CREATE USER gallery@localhost IDENTIFIED BY 'gallery';
+
Edit
GRANT ALL PRIVILEGES ON gallery.* TO gallery;
 
FLUSH PRIVILEGES;
 
exit
 
  
Jika sedang belajar dengan password mysql 123456 dapat menggunakan perintah
+
vi /etc/php5/apache2/php.ini
  
mysqladmin -p123456 create gallery
+
pastikan
  
  mysql -u root -p123456
+
  upload_max_filesize: 1024M
  CREATE USER gallery@localhost IDENTIFIED BY 'gallery';
+
  post_max_size: 1024M
  GRANT ALL PRIVILEGES ON gallery.* TO gallery;
+
  memory_limit: 512M
FLUSH PRIVILEGES;
 
exit
 
  
==Install==
+
Edit
  
 +
vi /etc/php5/cli/php.ini
  
$ cd $HOME
+
pastikan
$ mkdir g2data
 
$ chgrp apache g2data
 
$ chmod 770 g2data
 
  
 +
upload_max_filesize: 1024M
 +
post_max_size: 1024M
 +
memory_limit: 512M
  
$ mysqladmin -uroot create gallery2
+
Restart
$ mysql gallery2 -uroot -e"GRANT ALL ON gallery2.* TO username@localhost IDENTIFIED BY 'password'"
 
  
1. Upload - Copy the Gallery 2 files to a directory on your webserver. There are several alternatives for this step:
+
/etc/init.d/apache2 restart
  
    Fastest way: Upload the gallery package to your web server archive via FTP or another method, then unpack it using an interactive shell session (eg. ssh or telnet). Example unpacking commands (choose the appropriate one):
 
  
For .tar.gz archives
+
==Konfigurasi Database==
  
$ tar xzf gallery2.tar.gz
+
mysqladmin -p create gallery3
  
For zip archives
+
mysql -u root -p
 +
CREATE USER gallery3@localhost IDENTIFIED BY 'gallery3';
 +
GRANT ALL PRIVILEGES ON gallery3.* TO gallery3;
 +
FLUSH PRIVILEGES;
 +
exit
  
$ unzip gallery2.zip
+
Jika sedang belajar dengan password mysql 123456 dapat menggunakan perintah
 +
 
 +
mysqladmin -p123456 create gallery3
 +
mysql -u root -p123456
 +
CREATE USER gallery3@localhost IDENTIFIED BY 'gallery3';
 +
GRANT ALL PRIVILEGES ON gallery3.* TO gallery3;
 +
FLUSH PRIVILEGES;
 +
exit
 +
 
 +
==Install==
 +
Download Gallery dari
  
 +
http://sourceforge.net/projects/gallery/files/gallery3/3.0.2/
  
 +
Copy dan extract
  
 +
mkdir /var/www/
 +
cp gallery-3.0.2.zip /var/www/
 +
cd /var/www/
 +
unzip gallery-3.0.2.zip
 +
chown -Rf www-data.www-data /var/www/
 +
chown -Rf www-data.www-data /var/www/gallery3
 +
 +
===Instalasi Melalui Command Line===
  
 
Perintah yang digunakan
 
Perintah yang digunakan
Line 78: Line 96:
 
Untuk pemula / latihan dapat menggunakan perintah
 
Untuk pemula / latihan dapat menggunakan perintah
  
  cd /var/www/gallery
+
  cd /var/www/gallery3
  php installer/index.php -h localhost -u gallery -p gallery -d gallery
+
  php installer/index.php -h localhost -u gallery3 -p gallery3 -d gallery3
 +
 
 +
Jika berhasil akan keluar seperti
 +
 
 +
Your Gallery has been successfully installed!
 +
We've created an account for you to use:
 +
  username: admin
 +
  password: a17b61
  
===Instalasi Melalui Web==
+
Catat baik-baik password admin
 +
 
 +
===Instalasi Melalui Web===
  
 
Kita dapat menginstalasi melalui Web
 
Kita dapat menginstalasi melalui Web
  
  http://localhost/gallery/installer
+
  http://localhost/gallery3/installer
  
 
ikuti petunjuk
 
ikuti petunjuk
  
 +
==Akses Web==
 +
 +
http://localhost/gallery3
  
 
==Referensi==
 
==Referensi==
Line 100: Line 130:
 
* [[gallery]]
 
* [[gallery]]
 
* [[Multimedia di Linux]]
 
* [[Multimedia di Linux]]
 +
* [[Instalasi Adobe Flash Player]]

Latest revision as of 14:59, 28 August 2011

Download

Download source code dari

http://sourceforge.net/projects/gallery/files/
http://sourceforge.net/projects/gallery/files/gallery3/
http://sourceforge.net/projects/gallery/files/gallery3/3.0.2/

Instalasi Software Pendukung

apt-get install apache2 libapache2-mod-php5 php5-cli php5-mysql php5-gd \
php5-xsl php5-curl mysql-server mplayer mencoder ffmpeg flvtool2  lamp-server^ \
gstreamer0.10-ffmpeg gstreamer0.10-fluendo-mp3 gstreamer0.10-plugins-bad gstreamer0.10-plugins-ugly \
dcraw jhead unzip zip

Enable beberapa fitur

a2enmod rewrite

Restart Web Server

/etc/init.d/apache2 restart

Konfigurasi PHP

Edit

vi /etc/php5/apache2/php.ini

pastikan

upload_max_filesize: 1024M
post_max_size: 1024M
memory_limit: 512M

Edit

vi /etc/php5/cli/php.ini

pastikan

upload_max_filesize: 1024M
post_max_size: 1024M
memory_limit: 512M

Restart

/etc/init.d/apache2 restart


Konfigurasi Database

mysqladmin -p create gallery3
mysql -u root -p
CREATE USER gallery3@localhost IDENTIFIED BY 'gallery3';
GRANT ALL PRIVILEGES ON gallery3.* TO gallery3;
FLUSH PRIVILEGES;
exit

Jika sedang belajar dengan password mysql 123456 dapat menggunakan perintah

mysqladmin -p123456 create gallery3
mysql -u root -p123456
CREATE USER gallery3@localhost IDENTIFIED BY 'gallery3';
GRANT ALL PRIVILEGES ON gallery3.* TO gallery3;
FLUSH PRIVILEGES;
exit

Install

Download Gallery dari

http://sourceforge.net/projects/gallery/files/gallery3/3.0.2/

Copy dan extract

mkdir /var/www/
cp gallery-3.0.2.zip /var/www/
cd /var/www/
unzip gallery-3.0.2.zip
chown -Rf www-data.www-data /var/www/
chown -Rf www-data.www-data /var/www/gallery3

Instalasi Melalui Command Line

Perintah yang digunakan

php installer/index.php [-h host] [-u user] [-p pass] [-d dbname]
Command line parameters:
-h     Database host          (default: localhost)
-u     Database user          (default: root)
-p     Database user password (default: )
-d     Database name          (default: gallery3)
-x     Table prefix           (default: )

Untuk pemula / latihan dapat menggunakan perintah

cd /var/www/gallery3
php installer/index.php -h localhost -u gallery3 -p gallery3 -d gallery3

Jika berhasil akan keluar seperti

Your Gallery has been successfully installed!
We've created an account for you to use:
  username: admin
  password: a17b61

Catat baik-baik password admin

Instalasi Melalui Web

Kita dapat menginstalasi melalui Web

http://localhost/gallery3/installer

ikuti petunjuk

Akses Web

http://localhost/gallery3

Referensi

Pranala Menarik