Difference between revisions of "Icecast: instalasi"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
Line 14: | Line 14: | ||
==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 39: | ||
<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.5.249</hostname> | <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== |
Revision as of 09:23, 18 April 2012
Instalasi
sudo apt-get install icecast2
Jangan sampai salah menginstalsi icecast-server, tampaknya ini icecast-server yang lama. Yang baru adalah icecast2.
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://localhost:8000 http://10.150.5.249:8000