Difference between revisions of "Icecast: instalasi"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
Jangan sampai salah menginstalsi icecast-server, tampaknya ini icecast-server yang lama. Yang baru adalah icecast2. | Jangan sampai salah menginstalsi icecast-server, tampaknya ini icecast-server yang lama. Yang baru adalah icecast2. | ||
− | ==Edit icecast2 default== | + | |
+ | Saat instalasi, jawab | ||
+ | |||
+ | * Configure Icecast - Yes | ||
+ | * Host Icecast - masukan IP address server | ||
+ | * Password - semua "hackme" | ||
+ | |||
+ | |||
+ | ==Edit Konfigurasi Jika di Perlukan== | ||
+ | |||
+ | Jika di perlukan kita dapat mengedit kembali konfigurasi seperti, | ||
+ | |||
+ | |||
+ | ===Edit icecast2 default=== | ||
vi /etc/default/icecast2 | vi /etc/default/icecast2 | ||
Line 13: | Line 26: | ||
ENABLE=true | ENABLE=true | ||
− | ==Edit Konfigurasi IceCast== | + | ===Edit Konfigurasi IceCast=== |
+ | |||
+ | Edit konfigurasi IceCast | ||
vi /etc/icecast2/icecast.xml | vi /etc/icecast2/icecast.xml | ||
+ | |||
+ | ====Password==== | ||
Ubah | Ubah | ||
Line 35: | Line 52: | ||
<admin-password>hackme</admin-password> | <admin-password>hackme</admin-password> | ||
</authentication> | </authentication> | ||
+ | |||
+ | |||
+ | ====Host / IP address Server==== | ||
Agar bisa di akses dari jaringan kita perlu mengupdate / mengubah hostname. Default-nya adalah localhost | Agar bisa di akses dari jaringan kita perlu mengupdate / mengubah hostname. Default-nya adalah localhost | ||
− | <hostname> | + | <hostname>localhost</hostname> |
Kita perlu mengubah ke IP yang bisa di akses oleh banyak user menjadi (misalnya) | Kita perlu mengubah ke IP yang bisa di akses oleh banyak user menjadi (misalnya) | ||
− | <hostname>10.150. | + | <hostname>10.150.5.249</hostname> |
+ | |||
+ | |||
+ | ====Jumlah Client / Source==== | ||
+ | |||
+ | Ubah angka Client & Source sesuai kebutuhan | ||
+ | |||
+ | <clients>100</clients> | ||
+ | <sources>2</sources> | ||
+ | |||
+ | Misalnya menjadi | ||
+ | |||
+ | <clients>1000</clients> | ||
+ | <sources>100</sources> | ||
==Restart== | ==Restart== | ||
Line 56: | Line 89: | ||
==Akses Web== | ==Akses Web== | ||
+ | misalnya | ||
+ | |||
+ | http://192.168.0.61:8000 | ||
http://localhost:8000 | http://localhost:8000 | ||
+ | http://10.150.5.249:8000 | ||
==Referensi== | ==Referensi== | ||
* http://www.icecast.org/docs/icecast-2.3.2/ | * http://www.icecast.org/docs/icecast-2.3.2/ | ||
+ | * http://idjc.sourceforge.net/tutorials_icecast.html | ||
==Pranala Menarik== | ==Pranala Menarik== |
Latest revision as of 08:27, 12 July 2012
Instalasi
sudo apt-get install icecast2
Jangan sampai salah menginstalsi icecast-server, tampaknya ini icecast-server yang lama. Yang baru adalah icecast2.
Saat instalasi, jawab
- Configure Icecast - Yes
- Host Icecast - masukan IP address server
- Password - semua "hackme"
Edit Konfigurasi Jika di Perlukan
Jika di perlukan kita dapat mengedit kembali konfigurasi seperti,
Edit icecast2 default
vi /etc/default/icecast2
Ubah
ENABLE=true
Edit Konfigurasi IceCast
Edit konfigurasi IceCast
vi /etc/icecast2/icecast.xml
Password
Ubah
- source password
- relay password
- admin user
- admin password
Default-nya adalah
<authentication> <source-password>hackme</source-password> <relay-password>hackme</relay-password> <admin-user>admin</admin-user> <admin-password>hackme</admin-password> </authentication>
Host / IP address Server
Agar bisa di akses dari jaringan kita perlu mengupdate / mengubah hostname. Default-nya adalah localhost
<hostname>localhost</hostname>
Kita perlu mengubah ke IP yang bisa di akses oleh banyak user menjadi (misalnya)
<hostname>10.150.5.249</hostname>
Jumlah Client / Source
Ubah angka Client & Source sesuai kebutuhan
<clients>100</clients> <sources>2</sources>
Misalnya menjadi
<clients>1000</clients> <sources>100</sources>
Restart
/etc/init.d/icecast2 restart
Akan keluar
Restarting icecast2: Starting icecast2 Detaching from the console icecast2.
Akses Web
misalnya
http://192.168.0.61:8000 http://localhost:8000 http://10.150.5.249:8000