Problemnya ada pada windows 7 saya yang belum meng-enable telnet client. Cara enablenya via control panel , programs, turn windows features on or off, ceklist untuk telnet client agar menjadi enable. :)C:\Users\meisel>telnet'telnet' is not recognized as an internal or external command,operable program or batch file.
Tampilkan postingan dengan label Tutorial. Tampilkan semua postingan
Tampilkan postingan dengan label Tutorial. Tampilkan semua postingan
21 Des 2011
Enable telnet di Windows 7
Baru saja coba untuk telnet di windows 7, tapi muncul :
Out Of Memory di wordpress
Sering kali saya sendiri mengalami error seperti ini :
Fatal error: Out of memory (allocated 35389440) (tried to allocate 71 bytes) in /home/webiacor/public_html/domain-anda/wp-includes/pomo/mo.php on line 212
Solusinya very simple :) :
bisa tambahakan file php.ini di public_html : memory_limit = 16M tambahakan memory sesuai kebutuhan.
19 Des 2011
Merubah password mikrotik via GUI winbox atau CLI
Saya dapet dari wiki mikrotik ,untuk merubah password mikrotik bisa dengan dua cara yaitu via Command Line Interface (CLI) atau Grafical User Interface (GUI).
1. CLI
[admin@mikrotik]/ password
ketikkan /password untuk merubah password, kemudian saat tampil old password tekan enter saja, lalu masukkan password dan verifikasi passwordnya.
2.GUI
sedangkan untuk GUI, bisa download dulu winboxnya.
untuk mengganti password winbox ada di tab system, password. Inputkan hanya pada bagian new password dan confirm password
1. CLI
[admin@mikrotik]/ password
ketikkan /password untuk merubah password, kemudian saat tampil old password tekan enter saja, lalu masukkan password dan verifikasi passwordnya.
2.GUI
sedangkan untuk GUI, bisa download dulu winboxnya.
untuk mengganti password winbox ada di tab system, password. Inputkan hanya pada bagian new password dan confirm password
23 Jun 2010
Konfigurasi Openssl di fedora
1. Cek paket untuk konfigurasi https :
- rpm -qa | grep apache2
- rpm -qa | grep openssl
- rpm -qa | grep mod_ssl
2. edit file httpd.conf
#vim /etc/httpd/conf/httpd.conf //ganti tanda # dan ganti sesuai servername temen2
3. membuat certificate
- cd /etc/pki/tls/certs
- make andihakim.key //nama certificate
- openssl rsa -in andihakim.key -out andihakim.key
- make andihakim.csr //isikan informasi yang dibuthkan, yang paling penting isi hostname dan nameserver
- openssl x509 -in andihakim.csr -out andihakim.crt -req -signkey andihakim.key -days 3650
- chmod 400 andihakim.*
4. konfigurasi file ssl
#vim /etc/httpd/conf.d/ssl.conf
- edit Documentroot "var/www/html" //hilangkan #
- ServerName www.andihakim.com //ganti sesuai servername temen2
- SSLCertificate file /etc/pki/tls/certs/andihakim.crt
- SSLCertificate file /etc/pki/tls/certs/andihakim.key
5. restart httpd
#service httpd restart
output seperti ini :
- rpm -qa | grep apache2
- rpm -qa | grep openssl
- rpm -qa | grep mod_ssl
2. edit file httpd.conf
#vim /etc/httpd/conf/httpd.conf //ganti tanda # dan ganti sesuai servername temen2
3. membuat certificate
- cd /etc/pki/tls/certs
- make andihakim.key //nama certificate
- openssl rsa -in andihakim.key -out andihakim.key
- make andihakim.csr //isikan informasi yang dibuthkan, yang paling penting isi hostname dan nameserver
- openssl x509 -in andihakim.csr -out andihakim.crt -req -signkey andihakim.key -days 3650
- chmod 400 andihakim.*
4. konfigurasi file ssl
#vim /etc/httpd/conf.d/ssl.conf
- edit Documentroot "var/www/html" //hilangkan #
- ServerName www.andihakim.com //ganti sesuai servername temen2
- SSLCertificate file /etc/pki/tls/certs/andihakim.crt
- SSLCertificate file /etc/pki/tls/certs/andihakim.key
5. restart httpd
#service httpd restart
output seperti ini :
9 Jun 2010
Konfigurasi Proxy Squid Fedora core 8
Ringkasan ini tidak tersedia. Harap
klik di sini untuk melihat postingan.
Konfigurasi Bind fedora core 8
1. Jalankan Terminal dan masuk sebagai root
2. cek paket Bind apa sudah terinstall :
3. konfigurasi interface dengan ip private :
isikan ip, netmask dan hwaddr(hwaddr bisa diketahui dengan comand ifconfig di Terminal)
4. konfigurasi hosts :
beri tanda pagar(#) di depan ip localhost, lalu tambahkan ip private dan nameserver temen-temen
6. lanjut ke konfigurasi name server. Settingan named.conf ane kaya gini ni.
// named.caching-nameserver.conf
//
// Provided by Red Hat caching-nameserver package to configure the
// ISC BIND named(8) DNS server as a caching only nameserver
// (as a localhost DNS resolver only).
//
// See /usr/share/doc/bind*/sample/ for example named configuration files.
//
// DO NOT EDIT THIS FILE - use system-config-bind or an editor
// to create named.conf - edits to this file will be lost on
// caching-nameserver package upgrade.
//
options {
#listen-on port 53 { 127.0.0.1; };
#listen-on-v6 port 53 { ::1; };
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
allow-query { localhost; 192.168.7.0/24; };
recursion yes;
allow-transfer { localhost; 192.168.7.0/24; };
allow-recursion { localhost; 192.168.7.0/24; };
};
controls { inet 127.0.0.1 allow { localhost; } keys {rndckey;};
};
logging {
channel default_debug {
file "data/named.run";
severity dynamic;
};
};
view "internal" {
match-clients {
localhost;
192.168.7.0/24;
};
zone "." IN {
type hint;
file "named.ca";
};
//name server
zone "andihakim.com" IN {
type master;
file "andihakim.com.db";
allow-update { none; };
};
//reverse
zone "7.168.192.in-addr.arpa" IN {
type master;
file "192.db";
allow-update { none; };
};
//copian /etc/named.rfc
zone "localhost.localdomain" IN {
type master;
file "named.localhost";
allow-update { none; };
};
zone "localhost" IN {
type master;
file "named.localhost";
allow-update { none; };
};
zone "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" IN {
type master;
file "named.loopback";
allow-update { none; };
};
zone "1.0.0.127.in-addr.arpa" IN {
type master;
file "named.loopback";
allow-update { none; };
};
zone "0.in-addr.arpa" IN {
type master;
file "named.empty";
allow-update { none; };
};
};
#include "/etc/named.rfc1912.zones";
include "/etc/rndc.key";
NB: yang warna biru konfigurasi tambahan dari ane.
7. konfigurasi dari name server :
$TTL 86400
@ IN SOA meisel.andihakim.com. root.meisel.andihakim.com. (
02041991 ;Serial
3600 ;Refresh
1800 ;Retry
604800 ;Expire
86400 ;Minimum TTl
)
IN NS meisel.andihakim.com.
IN A 192.168.7.2
IN MX 20 meisel.andihakim.com.
oscar IN A 191.168.7.2
8. konfigurasi reverse domain :
$TTL 86400
@ IN SOA meisel.andihakim.com. root.meisel.andihakim.com. (
02041991 ;Serial
3600 ;Refresh
1800 ;Retry
604800 ;Expire
86400 ;Minimum TTL
)
@ IN NS meisel.andihakim.com.
1 IN PTR meisel.andihakim.com.
terakir tinggal restart named, pastiin stop ama start named [OK] :
ampe sini konfigurasi name server dah kelar, tinggal di cek dengan command nslookup [nama server] :
$ su -
2. cek paket Bind apa sudah terinstall :
# rpm -qa | grep bind
3. konfigurasi interface dengan ip private :
isikan ip, netmask dan hwaddr(hwaddr bisa diketahui dengan comand ifconfig di Terminal)
# nano /etc/sysconfig/network-script/ifcfg-eth0
4. konfigurasi hosts :
beri tanda pagar(#) di depan ip localhost, lalu tambahkan ip private dan nameserver temen-temen
# nano /etc/hosts
5. konfigurasi resolv.conf agar name server bisa di cari :
# nano /etc/resolv.conf
6. lanjut ke konfigurasi name server. Settingan named.conf ane kaya gini ni.
# gedit /etc/named.conf
// named.caching-nameserver.conf
//
// Provided by Red Hat caching-nameserver package to configure the
// ISC BIND named(8) DNS server as a caching only nameserver
// (as a localhost DNS resolver only).
//
// See /usr/share/doc/bind*/sample/ for example named configuration files.
//
// DO NOT EDIT THIS FILE - use system-config-bind or an editor
// to create named.conf - edits to this file will be lost on
// caching-nameserver package upgrade.
//
options {
#listen-on port 53 { 127.0.0.1; };
#listen-on-v6 port 53 { ::1; };
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
allow-query { localhost; 192.168.7.0/24; };
recursion yes;
allow-transfer { localhost; 192.168.7.0/24; };
allow-recursion { localhost; 192.168.7.0/24; };
};
controls { inet 127.0.0.1 allow { localhost; } keys {rndckey;};
};
logging {
channel default_debug {
file "data/named.run";
severity dynamic;
};
};
view "internal" {
match-clients {
localhost;
192.168.7.0/24;
};
zone "." IN {
type hint;
file "named.ca";
};
//name server
zone "andihakim.com" IN {
type master;
file "andihakim.com.db";
allow-update { none; };
};
//reverse
zone "7.168.192.in-addr.arpa" IN {
type master;
file "192.db";
allow-update { none; };
};
//copian /etc/named.rfc
zone "localhost.localdomain" IN {
type master;
file "named.localhost";
allow-update { none; };
};
zone "localhost" IN {
type master;
file "named.localhost";
allow-update { none; };
};
zone "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" IN {
type master;
file "named.loopback";
allow-update { none; };
};
zone "1.0.0.127.in-addr.arpa" IN {
type master;
file "named.loopback";
allow-update { none; };
};
zone "0.in-addr.arpa" IN {
type master;
file "named.empty";
allow-update { none; };
};
};
#include "/etc/named.rfc1912.zones";
include "/etc/rndc.key";
NB: yang warna biru konfigurasi tambahan dari ane.
7. konfigurasi dari name server :
# nano /var/named/chroot/var/named/andihakim.com.db
$TTL 86400
@ IN SOA meisel.andihakim.com. root.meisel.andihakim.com. (
02041991 ;Serial
3600 ;Refresh
1800 ;Retry
604800 ;Expire
86400 ;Minimum TTl
)
IN NS meisel.andihakim.com.
IN A 192.168.7.2
IN MX 20 meisel.andihakim.com.
oscar IN A 191.168.7.2
8. konfigurasi reverse domain :
# nano /var/named/chroot/var/named/192.db
$TTL 86400
@ IN SOA meisel.andihakim.com. root.meisel.andihakim.com. (
02041991 ;Serial
3600 ;Refresh
1800 ;Retry
604800 ;Expire
86400 ;Minimum TTL
)
@ IN NS meisel.andihakim.com.
1 IN PTR meisel.andihakim.com.
terakir tinggal restart named, pastiin stop ama start named [OK] :
# service named restart
ampe sini konfigurasi name server dah kelar, tinggal di cek dengan command nslookup [nama server] :
# nslookup andihakim.com
1 Jun 2010
Konfigurasi IIS 6 Windows 7 Professional
1. Buka Control Panel, pilih Programs
2. pilih Turn Windows features on or off
3. Cek list Internet Information Services dan ASP, setelah instalasi selesai pilih restart later
4. Jalankan Browser, dan isikan url localhost. Jika muncul seperti digambar bearti instalasi berhasil.
5. Merubah interface localhos running :
- Control Panel
- Administrative Tools
- Internet Information Services
DI bagian default dokument pilih add, isikan nama file htm. ex : Google.htm
nb : file paling atas adalah file default yang akan ditampilkan browser.
6. File htm tadi harus di simpan di drive c:\inetpub\wwwroot
Konfigurasi IIS 6 Windows 7 Professional
1. Buka Control Panel, pilih Programs
3. Ceklist Internet Infomortaion Services dan bagian
ASP. kemudian OK dan setelah complete, pilih
restart later
4. Di Browser isikan url dengan localhost, jika
sudah muncul seperti di gambar berarti IIS
berhasil di install.
5. Sekarang buka administrative tools di control
29 Mei 2010
tutorial rubik cube 3x3 *Indonesia
silahkan downod tiga video ini.
dijamin abis liat ni video langsung jago nyelesaiin kubus rubik 3x3. TRUST ME..! ^-^
layer or rumah atau lapisan pertama
layer or rumah atau lapisan kedua
layer or rumah atau lapisan ketiga
dijamin abis liat ni video langsung jago nyelesaiin kubus rubik 3x3. TRUST ME..! ^-^
layer or rumah atau lapisan pertama
layer or rumah atau lapisan kedua
layer or rumah atau lapisan ketiga
21 Mei 2010
8 Langkah Konfigurasi lokal DNS di Ubuntu 9.10
lebih baik masuk dulu sebagai root untuk lebih mudah konfigurasi, dengan command sudo -i
nb: apt-get update (buat update repository)
1. Instalasi
apt-get install bind9
2. konfigurasi ip forward
nano /etc/bind/named.conf.options
hilangkan tanda double slash (//), di forwarders n jadinya kaya gini
forwarders {
3. konfigurasi ip static
nano /etc/network/interfaces, isikan seperti ini :
iface eth0 inet static
4. Mapping DNS temen-temen dulu, kaya gini
nano /etc/bind/named.conf.local, isikan seperti ini :
zone "andihakim.com" {
5. sekarang kasih nama DNS, misalnya pake nama TS : andihakim.com
cp /etc/bind/db.local /etc/bind/db.andihakim.com
nano /etc/bind/db.andihakim.com, isikan seperti ini :
$TIL 604800
@ IN SOA andihakim.com. root.andihakim.com. (
3 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS andihakim.com.
@ IN AAAA ;;1
IN A 192.168.1.17
www IN A 192.168.1.17
ftp IN CNAME andihakim.com.
mail IN A 192.168.1.17
6. Sekarang setting ip buat DNS :
cp /etc/bind/db.127 /etc/bind/db.192
nano /etc/bind/db.192, isikan seperti ini :
$TIL 604800
@ IN SOA andihakim.com. root.andihakim.com. (
3 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS andihakim.com.
2 IN PTR www.andihakim.com.
2 IN PTR mail.andihakim.com.
7. sekarang setting nameserver biar bisa ke search di lokal DNS
nano /etc/resolv.conf, isikan seperti ini :
search andihakim.com.
8. terakhir setting host, sama ip lokal host
nano /etc/hosts, isikan seperti ini :
127.0.0.1 localhost
restart interface dan bind9 dulu ya..
- /etc/init.d/networking restart
- /etc/init.d/bind9 restart
tinggal test pake command nslookup andihakim.com
kalo dah berhasil, jadinya kaya gini :
nb: apt-get update (buat update repository)
1. Instalasi
apt-get install bind9
apt-get install dnsutils
2. konfigurasi ip forward
nano /etc/bind/named.conf.options
hilangkan tanda double slash (//), di forwarders n jadinya kaya gini
forwarders {
192.168.1.17
};
3. konfigurasi ip static
nano /etc/network/interfaces, isikan seperti ini :
iface eth0 inet static
address 192.168.1.17
netmask 255.255.255.0
gateway 192.168.1.14. Mapping DNS temen-temen dulu, kaya gini
nano /etc/bind/named.conf.local, isikan seperti ini :
zone "andihakim.com" {
type master;
file "/etc/bind/db.andihakim.com";
};
zone "1.168.192.in-addr.arpa" {
type master;
file "/etc/bind/db.192";
};5. sekarang kasih nama DNS, misalnya pake nama TS : andihakim.com
cp /etc/bind/db.local /etc/bind/db.andihakim.com
nano /etc/bind/db.andihakim.com, isikan seperti ini :
$TIL 604800
@ IN SOA andihakim.com. root.andihakim.com. (
3 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS andihakim.com.
@ IN AAAA ;;1
IN A 192.168.1.17
www IN A 192.168.1.17
ftp IN CNAME andihakim.com.
mail IN A 192.168.1.17
6. Sekarang setting ip buat DNS :
cp /etc/bind/db.127 /etc/bind/db.192
nano /etc/bind/db.192, isikan seperti ini :
$TIL 604800
@ IN SOA andihakim.com. root.andihakim.com. (
3 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS andihakim.com.
2 IN PTR www.andihakim.com.
2 IN PTR mail.andihakim.com.
7. sekarang setting nameserver biar bisa ke search di lokal DNS
nano /etc/resolv.conf, isikan seperti ini :
search andihakim.com.
nameserver 192.168.1.17
8. terakhir setting host, sama ip lokal host
nano /etc/hosts, isikan seperti ini :
127.0.0.1 localhost
192.168.1.17 andihakim.com.
127.0.1.1 meisel-PCrestart interface dan bind9 dulu ya..
- /etc/init.d/networking restart
- /etc/init.d/bind9 restart
tinggal test pake command nslookup andihakim.com
kalo dah berhasil, jadinya kaya gini :
17 Mei 2010
Tutorial Konfigurasi SmarterMail
Mail Server adalah Perangkat lunak program yang mendistribusikan file atau informasi sebagai respons atas permintaan yang dikirim via email, juga digunakan pada bitnet untuk menyediakan layanan serupa FTP[total.or.id]. Kali ini saya coba praktekkan Instal dan Konfigurasi SmarterMail di Windows Server 2003. NB : diharapkan sebelumnya temen-temen tahu apa itu IIS dan DNS.
Program Requirement :
- SmarterMail latest version
- IE7 untuk Windows Server
Tahap Instalasi :
Instal lebih dulu Internet Exporer dan .Net framework baru kemudian instal SmarterMail karena kedua program itu dibutuhkan saat instalasi dan konfigurasi SmarterMail.
Langganan:
Postingan (Atom)















