Kamis, 10 Desember 2015

Changing Administrator Passwords & unlock zimbra accounts from command line

Perubahan password pada admin zimbra, login menggunkan user zimbra lalu ikutin dengan perintah zmprov:
~ zmprov sp adminname@domain.com password

Jika anda login web zimbra tidak bisa padahal anda sudah mengganti password adminya kemungkinan account ada telah terlock. Solusinya adalah anda harus secara manual untuk mengaktifkannya di Command Line seperti cara dibawah ini

~ zmprov ma accountname@domain.com  zimbraAccountStatus active

 

Jumat, 06 Desember 2013

Kisi-kisi Di Windows Server

1.Mengubah Password:
net user User_name New_password

2.Melihat ketersediaan User:
net user

3.Delete User
net user User_Name /delete

4.Add ke Group
net group  Name_group User_Neme /add

Sabtu, 26 Oktober 2013

% No password set

 Telnet adalah protokol tingkat aplikasi yang memungkinkan perangkat jaringan untuk berkomunikasi jarak jauh. Ini banyak digunakan oleh administrator jaringan untuk mengkonfigurasi dan troubleshooting perangkat jaringan seperti router dan switch.

Terkadang apabila kita ingin telnet ke router atau switch di cisco megalami tidak bisa masuknya Privileged exec mode % No password set atau
Switch>en
% No password set.
Switch>


Hal tersebut dikarenakan tidak adanya izin untuk masuk ke exec mode. Ada 2 Cara untuk masuk ke telnet yaitu 
1.Dengan memberi tingkat level (Privilege Level) contoh :
Switch>en 
Switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
 
Switch(config)#line vty 0 4 
Switch(config-line)#privilege level 15 
Switch(config-line)#end 
Switch#
Dan apabila sudah diberikan tingkat hak akses maka seharusnya sudah tidak akan tampil % No password set. perlu diketahui tingkat level mulai dari 0-15, tingak level 15(administrator atau super user) adalah tingkat tertinggi dalam cisco atau sama dengan device aslinya atau console. contoh berhasil masuk lewat telnet.
Switch>telnet 192.168.24.254
Trying 192.168.24.254 ... Open


User Access Verification

Password:
Switch#en
Switch#



2.Dengan Memberi the Local Authentication Database.
Buatlah UserName Beserta HakAkses tingkatlevel password. contoh
Switch(config)# username admin priv 15 password cisco
Setelah itu Pengaktifan Line dengan menggunakan database Otentikasi Lokal
Switch(config-line)#line vty 0 4
Switch(config-line)#login local
Switch(config-line)#^z
Switch#
Untuk Memberikan UserName dan Password via Console sama saja.Bedanya hanya tinggal mengganti line con 0
Switch(config-line)#line con 0
Switch(config-line)#login local
Switch(config-line)#^z
Switch#
Lalu melakukan pengujian baik dari telnet maupun console, dengan ketik exit. jika sudah login sesuai username yang dibuat lalu ketikan sho priv maka anda bisa melihat tingkat level.
Switch#show priv
Current privilege  level is 15




 

 

Rabu, 09 Oktober 2013

Perintah Dasar Linux

Mengahapus Direktori
==========================
1. jika ingin mengahpus hanya 1 direktori/folder menggunakan rmdir atau rm.
[root@localhost ~]#rmdir gallery

2. jika ingin menghapus folder beserta isi di dalamnya. menemabahkan perintah -r. apabila tidak menginkan tampil sebuah pernyataan bisa menambkan -f jadi rm -rf.
[root@localhost ~]#rm -rf gallery

3.Change Password For Other User Account, reset password user dari root. anda harus login menggunakan root. Di bawah saya ingin mereset password user dengan nama userweb.
[root@localhost ~]#passwd namauser
Changing password for user userweb.
New UNIX password:
Retype new UNIX password:
passwd: all authentication tokens updated successfully.
[root@localhost ~]#

4.Set or Change User Password,reset password root atau reset password user.
[root@localhost ~]#passwd
 Changing password for root
(current) UNIX password:
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully

5.Change Group Password, mengganti password group. passwd -g adalah perintah untuk mengganti password group. contoh nama group adalah it.
[root@localhost ~]#passwd -g it

6. Menghidupkan NTPD
[root@localhost ~]#chkconfig ntpd on
[root@localhost ~]#service ntpd start

Sabtu, 05 Oktober 2013

Mounting

1. Create Directory cth direktori flashdisk
mkdir -p /mnt/flashdisk

2. Cek Keberadaan partisi
fdisk -l
cth output :
Disk /dev/sda: 320.0 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          13      104391   83  Linux
/dev/sda2              14       38913   312464250   8e  Linux LVM

Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1   *           1      121601   976760001    7  HPFS/NTFS

3. Lakukan mount dari direktori /dev/sdb1 ke /mnt/flashdisk
 mount /dev/sdb1 /mnt/flashdisk/

4. Lakukan copy pada direktori yang di inginkan, skema /var/www/html dst
cth: saat ini posisi berada di /var dan kita ingin copy keseluruhan dari www/html dan seterusnya
 cp -Rf www/ /mnt/flashdisk/

5. setelah selesai copy di cek apakah space yang di copy di derektori flasdisk sama atau tidak dengan  direktori www
ls -lah atau du - lsh namadirektori

Selasa, 10 September 2013

Clear Cache Squid

1. Matikan Proses squid yang berjalan
  root#/etc/init.d/squid stop

2.Membersihkan semua swap directory cache squid
  root#rm -rf /cache/*
  jika ada banyak folder cache maka lanjutkan 
  root#rm -rf /cache1/*

3.Membuat/buil kembali directory swap cache squid 
  root#squid -z

4.Menjalankan kembali squid proxy server 
  root#/etc/init.d/squid start

Menghapus cache squid proxy secara otomatis
Jika anda ingin menghapus cache squid proxy secara otomatis berikut langkahnya:
1. Buat sebuat script yang akan digunakan untuk memeriksa dan menghapus cache     squid proxy secara otomatis 

  root#touch /root/clear-cache-squid.sh
  root#vim /root/clear-cache-squid.sh
2. Masukkan kode berikut, dimana dalam kode berikut pengaturan Hardisk squid proxy sebesar 80GB, direktory cache squid berada pada /cache dan script akan diletakkan pada /root 

#!/bin/bash
#!/bin/bash
 
# direktori cache proxy
CACHEDIR=/cache
 
# kapasitas direktori cache proxy (80GB)
CACHEDIRSIZE=85899345920
ONEMB=1048576
ONEGB=1073741824
COUNTMB=`expr $CACHEDIRSIZE / $ONEMB`
COUNTGB=`expr $CACHEDIRSIZE / $ONEGB`
 
COUNTALOC=`expr $CACHEDIRSIZE / $ONEMB`
 
# mendapatkan besaran direktori cache saat ini
SIZE=`du -bc $CACHEDIR | grep total | awk '{print $1}'`
SIZEM=`du -bch $CACHEDIR | grep total | awk '{print $1}'`
 
 
# jika besaran direktori cache saat ini sama atau lebih besar dari
# kapasitas direktori cache proxy maka hapus cache proxy
if [ $SIZE -ge $CACHEDIRSIZE ]
then
 
/usr/bin/clear
echo "=================================="
echo "=== Generate Clear Cache Squid ==="
echo "=================================="
 
echo "Cahce Squid Proxy      :" $CACHEDIR
echo "Jumlah cache tersimpan :" $SIZE Byte / $SIZEM
echo "Batas maximum cache    :" $CACHEDIRSIZE Byte / $COUNTALOC MB
echo " * Clear cache squid in proccess ..."
 
sleep 10
 
 /etc/init.d/squid stop        # stop service squid
 rm -fdR $CACHEDIR/*           # hapus cache proxy
 squid -z                      # membuat cache direktori
 /etc/init.d/squid start       # start service squid
 
/usr/bin/clear
 
echo "===================================="
echo "=== Clear Cache Squid Success !! ==="
echo "===   http://www.backlinux.com   ==="
echo "===================================="
 
else
 
/usr/bin/clear
echo "================================================"
echo "=== Status Directory Cache Squid Proxy  [OK] ==="
echo "===        http://www.backlinux.com          ==="
echo "================================================"
echo "Cahce directory squid :" $SIZE Byte / $SIZEM
echo "Alokasi cahce squid   :" $CACHEDIRSIZE Byte / $COUNTMB MB / $COUNTGB GB
 
fi
   
Beri hak akses agar script clear-cache-squid.sh dapat dijalankan 
   root#chmod ug+x /root/clear-cache-squid.sh
 
Setelah file sudah anda buat sekarang saatnya untuk meletakkannya pada cronjob system anda, agar script dapat dijalankan secara otomatis setiap hari tepat tengah malam.
Edit cronjob  
 
   root#crontab -e
 
Masukkan code cronjob berikut  
0 0 * * * /root/clear-cache-squid.sh
 
 
 
SUMBER:http://
 

Minggu, 25 Agustus 2013

Cek Port didalam pc

>start
>run
>cmd
ketik >netstat -ano
Active Connections

  Proto  Local Address          Foreign Address        State           PID
  TCP    192.168.22.22:139      192.168.22.62:1266     ESTABLISHED     4