Archive for the ‘system’ tag
Apa bedanya: UNIX Fundamental, System Administration, Network Administration, Network Management & Security Administration?
ada yang bertanya ke saya:
Q: apa bedanya UNIX Fundamental, System Administration, Network Administration, Network Management & Security Administration?
UNIX Fundamental: materi ini berguna untuk para pemula yang baru kenal dengan UNIX. konsepnya adalah ada sebuah mesin UNIX yang telah terinstall, kemudian anda pakai mesin UNIX tersebut. Jadi disini ngak diajarin advanced installation. hanya instalasi standard aja. tujuan utama dari UNIX fundamental adalah anda dapat memakai mesin UNIX. situasi ini mirip dengan dunia nyata misal di telco company dimana mesin2 UNIX sudah dalam keadaan terinstall, dan anda diberi tugas untuk menggunakan mesin tersebut. contoh training UNIX fundamental adalah ini
System Administration (sysadmin). training ini akan mempelajari maintenance server mulai dari instalasi dasar sampai advanced (mis: network based installation), kemudian mengkonfigurasi services local pada mesin tersebut sesuai dengan requirement tertentu dengan menggunakan tools standard yang tersedia di installer. contoh skill sysadmin: membuat RAID, NTP, printing, job scheduling, software management, dll. salah satu contoh trainingnya adalah ini.
Network Administration (netadmin). training ini akan mempelajari hal-hal yang berhubungan dengan networking secara lebih mendalam. jika system administrator berfokus pada service serta operasional yang bersifat internal dari sebuah server, maka pada training network administrator, kita akan belajar untuk memaintain service yang berhubungan dengan network. misal: firewall, routing, bridge, webserver, NTP, mail server, file server, dll. salah satu contoh trainingnya adalah ini.
Security, Performance & Network Management. nah kalo udah running servernya, sudah dikonfigurasi local services & network servicesnya, tahap selanjutnya adalah monitoring, optimasi server, & security hardening. Hal-hal yang akan dipelajari lebih lanjut adalah menyangkut dengan internal operating system. disini kita akan belajar bagaimana menkonfigurasi aplikasi untuk menagement server misal: mrtg, cacti, zabbix, membuat mengetahui parameter untuk tuning kernel, mengetahui debuging aplikasi (misal: dtrace) mengaplikasikan security lebih dalam lagi (misal: RBAC, selinux). salah satu contoh trainingnya adalah ini.
nah kalo system administrator, network administrator, security administrator adalah orang yang melakukan fungsi sesuai training diatas. di indonesia, yang namanya administrator biasanya ngerjain semuanya. ya dia yang install, maintain, upgrade, monitoring. Sampai pada level system adminstration, materi/pekerjaan adalah banyak berhubungan dengan OS tersebut. tapi ketika sudah masuk ke Network administration, sebaiknya peserta sudah punya basic Networking yang kuat untuk menjalankan fungsi tersebut. anda harus ngerti IP addressing, IP address apa saja yang boleh/tidak boleh digunakan, mengerti apa itu konsep port, mengerti 7 OSI layer, dll. sebaiknya, seorang network administrator juga mempunyai sertifikasi yang terkait dengan networking. misal: dari cisco atau juniper.
Update the Webmin Tool to Manage the Solaris 10 OS Securely Over HTTPS
César Augusto Sánchez Baquero, August 2007
The Webmin server is an open source tool that enables system administrators to manage systems that run the Solaris Operating System, UNIX, or Linux using a web browser. You can access the server using HTTP or HTTPS. Webmin is included in the Solaris 10 OS; however, the version included is an old version with a default certificate.
If you update Webmin to the latest version, the HTTPS support doesn’t work unless you use the following steps.
1. Set up the Webmin server that is included with the Solaris 10 OS by executing the following command as root:
/usr/sfw/bin/webminsetup
2. You can press ENTER to answer the two first questions, but for the third question, answer y
:
Login name (default root): Web server port (default 10000): Use SSL? [y,n,?,q] y
3. Access the Webmin server using a web browser by typing the address https://SERVER.IP.ADDRESS:10000
.
4. Log in using the root user name and root password.
5. Create your own certificate:
- Go the Webmin Configuration Option and then go to the SSL Encryption module.
- In the Create Certificate option, fill in the form. In the Server Name field, put the server’s IP address.
- Click Create Now.
6. Before updating Webmin to the latest version, copy the Perl files that support HTTPS and SSL encryption to the Perl library directory:
cd /usr/sfw/lib/webmin cp -r perlmod/* /usr/perl5/5.8.4/lib/
7. Configure the proxy settings, if necessary. If you access the Internet through a proxy, set your proxy information in the Proxy Servers module of the Webmin Configuration menu.
8. Update Webmin to the latest version:
- In the Webmin Configuration menu, select the Upgrade Webmin module.
- Select the option Latest version from http://www.webmin.com, and then click Update Webmin. You can also update the Webmin modules in the Update Modules option of this module.
Now you can manage your systems running the Solaris 10 OS with the latest version of Webmin in a secure fashion using HTTPS.
Configure webmin SMF after upgrade
to start webmin
# svcadm enable svc:/application/management/webmin
to stop webmin
# svcadm disable svc:/application/management/webmin
check webmin daemon log:
# tail -f /var/svc/log/application-management-webmin\:default.log
edit webmin configuration script:
# vi /var/svc/manifest/application/management/webmin.xml<exec_method type='method' name='start' exec='/etc/webmin/start' timeout_seconds='30' > </exec_method>source: this link
short version of URL: http://bit.ly/gKMUUc