Difference between revisions of "Icecast: instalasi"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
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 | Edit konfigurasi IceCast | ||
Line 19: | Line 32: | ||
vi /etc/icecast2/icecast.xml | vi /etc/icecast2/icecast.xml | ||
− | ===Password=== | + | ====Password==== |
Ubah | Ubah | ||
Line 41: | Line 54: | ||
− | ===Host / IP address Server=== | + | ====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 | ||
Line 52: | Line 65: | ||
− | ===Jumlah Client / Source=== | + | ====Jumlah Client / Source==== |
Ubah angka Client & Source sesuai kebutuhan | Ubah angka Client & Source sesuai kebutuhan | ||
Line 78: | Line 91: | ||
misalnya | misalnya | ||
+ | http://192.168.0.61:8000 | ||
http://localhost:8000 | http://localhost:8000 | ||
http://10.150.5.249:8000 | http://10.150.5.249:8000 |
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