SlideShare a Scribd company logo
Kelas Belajar Ubuntu Server
Fo r u m U b u n t u I n d o n e s i a




                Pertemuan VI
                Minggu, 12 Agustus 2012
                Pemateri: Digit Oktavianto
                digit.oktavianto@gmail.com
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a




         Membuat Web Blog Sendiri
         Menggunakan Wordpress




Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a

       Instalasi Wordpress

       Instalasi wordpress ada 2 cara :

       1. Install Wordpress via Repositori
       2. Install manual (download dari web Wordpress)




Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3
Kelas Belajar Ubuntu Server
          Fo r u m U b u n t u I n d o n e s i a

       1. Instalasi Wordpress Via Repositori

       sudo apt-get install wordpress

       - Buat symbolic link dari folder instalasi Wordpresske /var/www

       sudo ln -s /usr/share/wordpress /var/www/wordpress

       - Install Wordpress dengan script yang ada di
       /usr/share/doc/wordpress/examples/

       sudo bash /usr/share/doc/wordpress/examples/setup-mysql
       -n wordpress localhost

       Wordpress = akan menjadi username db anda, sekaligus akan
Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. db
        membuat 3 dengan nama wordpress
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a

       - Ubah ownership pada file wordpress

       sudo chown -R user.www-data /usr/share/wordpress

       - Buka Broser anda, dan ketikkan : localhost/wordpress

       Lalu Install Wordpress

       Selesai.




Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a

       2. Instalasi Wordpress Secara Manual (Download dari
       Situs Wordpress)

       - Login as root di Box anda :

       sudo su

       - Download Latest Wordpress Version

       #wget -O wordpress.tar.gz http://wordpress.org/latest.tar.gz

       - Extract Wordpress Tersebut

       #tar -zxvf wordpress.tar.gz


Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a


       - Copy Folder Wordpress ke dalam /var/www

       #cd wordpress

       #cp -R wordpress /var/www

       - Ubah Ownership nya menjadi www-data

       #chown -R user.www-data /var/www/wordpress

       - Login MySQL

       #mysql -u root -p


Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a

       - Buat DB Untuk Wordpress (dbwordpress)

       CREATE DATABASE dbwordpress;

       - Buat User dengan nama wordpressuser

       CREATE USER wordpressuser;

       - Create Password untukuser wordpressuser (wppassword)

       SET PASSWORD FOR wordpressuser = PASSWORD("wppassword");

       - Grant permission untuk user wordpressuser :

       GRANT ALL PRIVILEGES ON dbwordpress.* TO wordpressuser@localhost
       IDENTIFIED BY ‘wppassword’;

       FLUSH PRIVILEGES;

       - Log Out MySQL
Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a
       - Buat Virtual Host Untuk Wordpress kita
           #cd /etc/apache2/sites-avaiable/
           #vim myblog.com
           <VirtualHost *:80>
               ServerName myblog.com
               ServerAlias www.myblog.com
               ServerAdmin admin@myblog.com
               DocumentRoot /var/www/wordpress
           </VirtualHost>

       - Aktifkan virtualhost nya
            #a2ensite myblog.com


       - Restart apache nya
            #/etc/init.d/apache2 restart




Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a
       - Tambahkan Virtual Host tadi pada /etc/hosts

          #echo “127.0.0.1 myblog.com www.myblog.com” >>
       /etc/hosts

       - Install WP dari browser dengan mengetik www.myblog.com




Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a




Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a




Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a




Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a




Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a




Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a

       - Buat Virtual Host Untuk Wordpress kita
           #cd /etc/apache2/sites-avaiable/
           #vim myblog.com
           <VirtualHost *:80>
               ServerName myblog.com
               ServerAlias www.myblog.com
               ServerAdmin admin@myblog.com
               DocumentRoot /var/www/wordpress
           </VirtualHost>

       - Aktifkan virtualhost nya
            #a2ensite myblog.com


       - Restart apache nya
            #/etc/init.d/apache2 restart

       - Save file tersebut dan Install WP dari browser dengan mengetik
       www.myblog.com
Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3
Kelas Belajar Ubuntu Server
           Fo r u m U b u n t u I n d o n e s i a




                                Sekian dan Terima Kasih
                    Semoga sharing hari ini bermanfaat buat rekan-rekan sekalian
                                               Keep spirit to share your knowledge




Minggu, 12 Agustus 2012
Gedung Kominfo RI lt. 3

More Related Content

PDF
Konfigurasi server debian squeeze
PDF
Cara install mac os di vmware
PPTX
Tugas ke 2 sistem operasi ii
PDF
Cara instalasi aplikasi perpustakaan digital eprints
DOCX
Cara memasang pasword pada laptop
PPT
Ubuntu Package Management
PDF
Instalasi ubuntu 11 single os non dual boot
PDF
Instalasi Proxy & Samba Server (Debian)
Konfigurasi server debian squeeze
Cara install mac os di vmware
Tugas ke 2 sistem operasi ii
Cara instalasi aplikasi perpustakaan digital eprints
Cara memasang pasword pada laptop
Ubuntu Package Management
Instalasi ubuntu 11 single os non dual boot
Instalasi Proxy & Samba Server (Debian)

What's hot (7)

PDF
Install ubuntu di windows 7 menggunakan virtualBox
PPTX
Tugas tik
RTF
Blokir akses web_dgn_squid
DOC
Virtual host
ODP
Slaid Persembahan Ubuntu
PDF
Tutorial belajar membuat virtualhost di xampp linux
PDF
Install wordpress offline
Install ubuntu di windows 7 menggunakan virtualBox
Tugas tik
Blokir akses web_dgn_squid
Virtual host
Slaid Persembahan Ubuntu
Tutorial belajar membuat virtualhost di xampp linux
Install wordpress offline
Ad

Viewers also liked (6)

PPTX
Information Security Awareness
ODP
Seminar and Workshop Computer Security, BPPTIK Kominfo
PDF
Career Opportunities in Information Security Industry
PPT
Malware Analysis
PPT
Setup Your Personal Malware Lab
PDF
Cyber Security Attack and Trend
Information Security Awareness
Seminar and Workshop Computer Security, BPPTIK Kominfo
Career Opportunities in Information Security Industry
Malware Analysis
Setup Your Personal Malware Lab
Cyber Security Attack and Trend
Ad

Similar to Kelas Belajar Ubuntu Indonesia - Setup Your Blog Under Ubuntu Server (20)

PDF
Cara Install Openbravo 2.50 MP 43 di Ubuntu
PDF
Tut xampp wordpress
PDF
Tut xampp wordpress
PPTX
Cara membuat blog
PDF
Install own cloud server di ubuntu 12
PPTX
tugas 2
PDF
FreeBSD Web Server
PPTX
TugasII SO2 Install Apache, PHP Dan MySQL Pada CentOS 7 (LAMP)
PDF
3.1 lab-instalasi dan konfigurasi webserver-mysql-php-phpmyadmin
DOCX
Tutorial Instalasi TKJ CLoud Server
PDF
L6 web server_fadlysatriyagunawan
PPT
Tugas presentasi fix
DOCX
Buku panduan untuk menghadapi ujian praktek nasional
PDF
konfigurasi web server, dns server , dhcp server, ftp server , mail server da...
PPT
Konfigurasi server debian
PDF
Install wordpress di linux
DOCX
Langkah langkah konfigurasi dns, webserver, mail dan webmail server pada debi...
PDF
Konfigurasi virtual host pada debian lenny inu aji
PDF
Website cms publish
PPTX
Squid proxy-server
Cara Install Openbravo 2.50 MP 43 di Ubuntu
Tut xampp wordpress
Tut xampp wordpress
Cara membuat blog
Install own cloud server di ubuntu 12
tugas 2
FreeBSD Web Server
TugasII SO2 Install Apache, PHP Dan MySQL Pada CentOS 7 (LAMP)
3.1 lab-instalasi dan konfigurasi webserver-mysql-php-phpmyadmin
Tutorial Instalasi TKJ CLoud Server
L6 web server_fadlysatriyagunawan
Tugas presentasi fix
Buku panduan untuk menghadapi ujian praktek nasional
konfigurasi web server, dns server , dhcp server, ftp server , mail server da...
Konfigurasi server debian
Install wordpress di linux
Langkah langkah konfigurasi dns, webserver, mail dan webmail server pada debi...
Konfigurasi virtual host pada debian lenny inu aji
Website cms publish
Squid proxy-server

More from Digit Oktavianto (6)

PPTX
IDSECCONF 2020 : A Tale Story of Building and Maturing Threat Hunting Program
PPTX
What the Hackers Do to Steal the Data?
PPTX
Windows Forensic 101
PPTX
Adversary Emulation and Its Importance for Improving Security Posture in Orga...
PPTX
Cyber Threat Hunting Workshop
PPTX
Leverage Endpooint Visibilit with MITRE ATT&CK Framework
IDSECCONF 2020 : A Tale Story of Building and Maturing Threat Hunting Program
What the Hackers Do to Steal the Data?
Windows Forensic 101
Adversary Emulation and Its Importance for Improving Security Posture in Orga...
Cyber Threat Hunting Workshop
Leverage Endpooint Visibilit with MITRE ATT&CK Framework

Recently uploaded (11)

PPTX
BERPIKIR KOMPUTASIONAL UNTUK KELAS 7 SMP
DOCX
Antivirus Versi.FULL.JALiN.KB.PRO Keutuhan Aplikasi Konsep dan Praktik dalam ...
PPTX
Implementasi Microservices pada Manufaktur
PPTX
PERANCANGAN DAN PENGEMBANGAN VIDEO GAME SEBAGAI MEDIA TERAPI DEPRESI
PPTX
Peranan AI dalam Dunia Pendidikan dan Industri Aplikasinya
PPTX
Materi_Array_Karakter_String untuk kelas XI sma.pptx
PPTX
PEMAHAMAN MAPEL KODING DAN KECERDASAN ARTIFICIAL
PPTX
BERPIKIR KOMPUTASI UNTUK SMP KELAS 8 INFORMATIKA
PPTX
Slide_Diskusi_Modul_5_Pembelajaran_Mendalam.pptx
PPT
pengantar-sistem-informasi manajemen.ppt
DOCX
Keutuhan Aplikasi Konsep dan Praktik dalam Upaya menciptakan aplikasi Anti Vi...
BERPIKIR KOMPUTASIONAL UNTUK KELAS 7 SMP
Antivirus Versi.FULL.JALiN.KB.PRO Keutuhan Aplikasi Konsep dan Praktik dalam ...
Implementasi Microservices pada Manufaktur
PERANCANGAN DAN PENGEMBANGAN VIDEO GAME SEBAGAI MEDIA TERAPI DEPRESI
Peranan AI dalam Dunia Pendidikan dan Industri Aplikasinya
Materi_Array_Karakter_String untuk kelas XI sma.pptx
PEMAHAMAN MAPEL KODING DAN KECERDASAN ARTIFICIAL
BERPIKIR KOMPUTASI UNTUK SMP KELAS 8 INFORMATIKA
Slide_Diskusi_Modul_5_Pembelajaran_Mendalam.pptx
pengantar-sistem-informasi manajemen.ppt
Keutuhan Aplikasi Konsep dan Praktik dalam Upaya menciptakan aplikasi Anti Vi...

Kelas Belajar Ubuntu Indonesia - Setup Your Blog Under Ubuntu Server

  • 1. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a Pertemuan VI Minggu, 12 Agustus 2012 Pemateri: Digit Oktavianto digit.oktavianto@gmail.com
  • 2. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a Membuat Web Blog Sendiri Menggunakan Wordpress Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3
  • 3. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a Instalasi Wordpress Instalasi wordpress ada 2 cara : 1. Install Wordpress via Repositori 2. Install manual (download dari web Wordpress) Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3
  • 4. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a 1. Instalasi Wordpress Via Repositori sudo apt-get install wordpress - Buat symbolic link dari folder instalasi Wordpresske /var/www sudo ln -s /usr/share/wordpress /var/www/wordpress - Install Wordpress dengan script yang ada di /usr/share/doc/wordpress/examples/ sudo bash /usr/share/doc/wordpress/examples/setup-mysql -n wordpress localhost Wordpress = akan menjadi username db anda, sekaligus akan Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. db membuat 3 dengan nama wordpress
  • 5. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a - Ubah ownership pada file wordpress sudo chown -R user.www-data /usr/share/wordpress - Buka Broser anda, dan ketikkan : localhost/wordpress Lalu Install Wordpress Selesai. Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3
  • 6. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a 2. Instalasi Wordpress Secara Manual (Download dari Situs Wordpress) - Login as root di Box anda : sudo su - Download Latest Wordpress Version #wget -O wordpress.tar.gz http://wordpress.org/latest.tar.gz - Extract Wordpress Tersebut #tar -zxvf wordpress.tar.gz Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3
  • 7. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a - Copy Folder Wordpress ke dalam /var/www #cd wordpress #cp -R wordpress /var/www - Ubah Ownership nya menjadi www-data #chown -R user.www-data /var/www/wordpress - Login MySQL #mysql -u root -p Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3
  • 8. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a - Buat DB Untuk Wordpress (dbwordpress) CREATE DATABASE dbwordpress; - Buat User dengan nama wordpressuser CREATE USER wordpressuser; - Create Password untukuser wordpressuser (wppassword) SET PASSWORD FOR wordpressuser = PASSWORD("wppassword"); - Grant permission untuk user wordpressuser : GRANT ALL PRIVILEGES ON dbwordpress.* TO wordpressuser@localhost IDENTIFIED BY ‘wppassword’; FLUSH PRIVILEGES; - Log Out MySQL Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3
  • 9. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a - Buat Virtual Host Untuk Wordpress kita #cd /etc/apache2/sites-avaiable/ #vim myblog.com <VirtualHost *:80> ServerName myblog.com ServerAlias www.myblog.com ServerAdmin admin@myblog.com DocumentRoot /var/www/wordpress </VirtualHost> - Aktifkan virtualhost nya #a2ensite myblog.com - Restart apache nya #/etc/init.d/apache2 restart Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3
  • 10. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a - Tambahkan Virtual Host tadi pada /etc/hosts #echo “127.0.0.1 myblog.com www.myblog.com” >> /etc/hosts - Install WP dari browser dengan mengetik www.myblog.com Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3
  • 11. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3
  • 12. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3
  • 13. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3
  • 14. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3
  • 15. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3
  • 16. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a - Buat Virtual Host Untuk Wordpress kita #cd /etc/apache2/sites-avaiable/ #vim myblog.com <VirtualHost *:80> ServerName myblog.com ServerAlias www.myblog.com ServerAdmin admin@myblog.com DocumentRoot /var/www/wordpress </VirtualHost> - Aktifkan virtualhost nya #a2ensite myblog.com - Restart apache nya #/etc/init.d/apache2 restart - Save file tersebut dan Install WP dari browser dengan mengetik www.myblog.com Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3
  • 17. Kelas Belajar Ubuntu Server Fo r u m U b u n t u I n d o n e s i a Sekian dan Terima Kasih Semoga sharing hari ini bermanfaat buat rekan-rekan sekalian Keep spirit to share your knowledge Minggu, 12 Agustus 2012 Gedung Kominfo RI lt. 3