Follow me on Twitter RSS FEED

Adminer tools Administrasi Database

Posted in By k0p0nkkk 1 comments

Untuk memudahkan administrasi database pada server anda silahkan gunakan salah satu tools berikut ini (Adminer ) dimana kelebihan dari tools ini adalah kita tidak perlu repot dengan sintaks-sintaks rumit.
Adapun database yang dapat diadministrasi dengan tools ini adalah MySQL, SQLite 3, SQLite 2,PostgreSQL, Oracle, MS SQL

Langsung saja , saya akan memberikan info cara untuk installasi Adminer
Installasi saya lakukan pada server linux (redhat based), syarat adanya web server pada server anda
Langkah awal silahkan download sourcode dari adminer (pilih yang terbaru) pada link berikut :
source yang saya pilih adalah extension file zip
atau bisa langsung download pada server dengan menggunakan wget

Lakukan extract file yang telah didownload
[root@blackhole src]# unzip adminer-3.6.4.zip

Buat direktori adminer
[root@blackhole src]# mkdir /var/www/html/adminer

Copy adminer ke direktori pada utama web server
[root@blackhole src]# cp -R adminer-3.6.4 /var/www/html/adminer/

Lakukan restart service web server
[root@blackhole src]# /etc/init.d/httpd restart

Silahkan buka link adminer dan lakukan login

IDM Update 25 April 2013, v 6.15 Build 9

Posted in By k0p0nkkk 0 comments

NEW VERSION IDM 6.15.9 ADDED – RELEASED APRIL 25, 2012

Internet Download Manager v6.15. Added Windows 8 compatibility. Fixed compatibility problems with different browsers including Internet Explorer 10, all Mozilla Firefox versions up to Mozilla Firefox Aurora, Google Chrome. Improved FLV grabber to save videos from web players on YouTube, WOW! Google Video, MySpace TV, and other popular sites.
What’s new in version 6.15 Build 9?
• Updated Extension for Google Chrome
• Fixed bugs

download here

IDM Update 5 April 2013, v 6.15 Build 8

Posted in By k0p0nkkk 0 comments

What’s new in version 6.15 Build 8?
• Added a workaround for youtube changes
• Added the feature to stop and save live stream broadcasts
• Fixed bugs

wanna try just download here

GDM Setting on CentOS

Posted in By k0p0nkkk 0 comments

GDM suatu protocol yang digunakan pada linux agar kita dapat meremote OS linux yang diinginkan pada OS windows yang kita gunakan , untuk softwarenya harus menggunakan Xbrowser, silahkan tanya petunjuk mbah google untuk mendapatkannya.
Secara default gdm tidak diaktifkan atau di setting
untuk itu kita harus menset nya terlebih dahulu agar dapat berfungsi gdm itu, berikut caranya :
masuk ke file
"/etc/gdm/custom.conf"

selanjutnya pada bagian [security], tambahkan 2 baris di bawah ini ;
  DisallowTCP=false
  AllowRemoteRoot=true
lalu pada bagian [xdmcp], tambahkan baris berikut ini;
Enable=true

sesuai dengan gambar ini

setelah itu lakukan 2 command ini secara berurutan 
init 3
kemudian 
init 5

nb : jangan lupa tambahkan open udp port 177 pada iptables anda

Selanjutnya pada xbrowser setting new xdmcp connection lalu anda bisa langsung meremote linux anda

Menambahkan Jobs pada cron pada Linux ataupun UNIX

Posted in By k0p0nkkk 0 comments

Cron job biasa digunakan untuk penjadwalan command untuk dieksekusi secara periodic, biasanya berupa script. Cron service (daemon) berjalan di background dan secara konstan mengecek file /etc/crontab, direktori /etc/cron.*/. Dan juga mengecek direktori /var/spool/cron/
Macam-macam command crontab
crontab -e     Edit crontab file, atau membuat baru jika file tidak ada.
crontab -l      Melihat list dari crontab file.
crontab -r      Menghapus crontab file.
crontab -v      Melihat kali terakhir editan crontab file. (hanya tersedia pada system tertentu). 

Syntax of crontab (deskripsi Field)
Cron job terlihat mengikuti user job:

1 2 3 4 5 /path/to/command arg1 arg2

OR

1 2 3 4 5 /root/backup.sh

dimana,
  • 1: Minute (0-59)
  • 2: Hours (0-23)
  • 3: Day (0-31)
  • 4: Month (0-12 [12 == December])
  • 5: Day of the week(0-7 [7 or 0 == sunday])
  • /path/to/command - Script or command name to schedule
Format yang mudah diingat:
* * * * * command to be executed
- - - - -
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday=0 or 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)
Cron job terlihat mengikuti system jobs:
1 2 3 4 5 USERNAME /path/to/command arg1 arg2
OR
1 2 3 4 5 USERNAME /path/to/script.sh
Contoh : Install Backup Job Script
Case pada solaris os jalankan command dibawah terlebih dahulu
EDITOR=vi
export EDITOR
crontab -e

Kita ingin menjalankan script dengan nama /temp/copyfile.sh setiap hari pada jam 1 pagi, maka masukkan command berikut ini :
# crontab -e
masukkan pada baris terakhir
0 1 * * * /temp/copyfile.sh
Simpan dan tutup file
Contoh lainnya
Jalankan script pada jam 3:30 siang setiap bulan, ketikkan:
30 15 1 * * /temp/copyfile.sh
Jalankan script pada jam 8 malam setiap hari kerja (senin-jumat), ketikkan:
0 20 * * 1-5 /temp/copyfile.sh
Jalankan script pada menit ke 25 setelah tengah malam, jam 2 pagi, jam 4 pagi, setiap hari, ketikkan:
25 0-23/2 * * * /temp/copyfile.sh
Jalankan script pada jam 1 lewat 2menit setaip Minggu, ketikkan:
2 1 * * sun /temp/copyfile.sh
Disable Email Output
Secara default keluaran command script akan mengirim email ke account email local. Untuk memberhentikan penerimaan email dari crontab maka kita harus menambahkan “>/dev/null 2>&1”, sebagai contoh:
30 5 * * * /temp/copyfile.sh >/dev/null 2>&1
Untuk mengirimkan notifikasi email ke email lain nya selain email local maka kita bisa menambahkan variable MAILTO pada cron job:
MAILTO="k0p0nkkk@blogspot.com"
30 5 * * * /temp/copyfile.sh >/dev/null 2>&1
Menggunakan special string untuk menghemat waktu
Berikut special string yang dapat kita gunakan untuk menghemat waktu kita
Special string
Arti
@reboot
Jalankan sekali pada saat startup.
@yearly
Jalankan sekali setahun, "0 0 1 1 *".
@annually
(sama dengan @yearly)
@monthly
Jalankan sekali sebulan, "0 0 1 * *".
@weekly
Jalankan sekali seminggu, "0 0 * * 0".
@daily
Jalankan sehari sekali, "0 0 * * *".
@midnight
(sama dengan @daily)
@hourly
Jalankan setiap 1 jam sekali, "0 * * * *".
Jalankan ntpdate every hour:
@hourly /path/to/ntpdate
Buat backup setiap hari:
@daily /path/to/backup/script.sh
Memahami Default /etc/crontab
Typical isi file /etc/crontab:
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/
# run-parts
01 * * * * root run-parts /etc/cron.hourly
02 4 * * * root run-parts /etc/cron.daily
22 4 * * 0 root run-parts /etc/cron.weekly
42 4 1 * * root run-parts /etc/cron.monthly

Directory
Description
/etc/cron.d/
Taruh semua script disini dan panggil mereka dari etc/crontab file.
/etc/cron.daily/
Menjalankan semua script sehari sekali
/etc/cron.hourly/
Menjalankan semua script sejam sekali
/etc/cron.monthly/
Menjalankan semua script sebulan sekali
/etc/cron.weekly/
Menjalankan semua script seminggu sekali
Backup Installed Cronjobs
Simple saja untuk melakukan backup cronjob yang sudah dibuat ketikkan command berikut:
# crontab -l > /temp2/users.root.backup
# crontab -u userName -l > /temp2/users.userName.backup

Sharing direktori dengan NFS pada Solaris 10 ke Windows

Posted in By k0p0nkkk 0 comments

Berikut saya share cara sharing file ataupun directory dari solaris 10 OS ke Windows Server OS
Langsung saja terlebih dahulu secara default service nfs sudah disertakan pada solaris 10 os, dapat kita cek status service nfs tersebut dengan mengetikkan command ini:
# svcs network/nfs/server
STATE          STIME    FMRI
disabled       15:17:45 svc:/network/nfs/server:default
Dapat terlihat status service adalah disabled
Selanjutnya buka dan edit /etc/dfs/dfstab , kemudian tambahkan baris berikut
share -F nfs /export/home
nb: /export/home sesuaikan dengan directory yang ingin anda share
kemudian jalankan perintah berikut secsra berurutan
# svcadm enable -r network/nfs/server
# svcadm enable -s network/nfs/server
# svcadm restart network/nfs/server
Untuk melihat hasil share bisa ketikkan
# share
-               /export/home   rw   ""
Akan terlihat sharingan anda
Untuk menghubungkan sharingan solaris yang tadi kita buat pada windows maka cukup dengan mengetikkan
Contohnya : “mount \\172.16.1.21\export\home
Silahkan dicoba dan smoga bermanfaat

Physical Memory Limit on Microsoft Windows

Posted in By k0p0nkkk 0 comments

Physical Memory Limits: Windows 8

The following table specifies the limits on physical memory for Windows 8.
VersionLimit on X86Limit on X64
Windows 8 Enterprise 4 GB
512 GB
Windows 8 Professional 4 GB
512 GB
Windows 8 4 GB
128 GB

Physical Memory Limits: Windows Server 2012

The following table specifies the limits on physical memory for Windows Server 2012. Windows Server 2012 is available only in X64 editions.
VersionLimit on X64
Windows Server 2012 Datacenter 4 TB
Windows Server 2012 Standard 4 TB
Windows Server 2012 Essentials 64 GB
Windows Server 2012 Foundation 32 GB
Windows Storage Server 2012 Workgroup 32 GB
Windows Storage Server 2012 Standard 4 TB
Hyper-V Server 2012 4 TB

Physical Memory Limits: Windows 7

The following table specifies the limits on physical memory for Windows 7.
VersionLimit on X86Limit on X64
Windows 7 Ultimate 4 GB
192 GB
Windows 7 Enterprise 4 GB
192 GB
Windows 7 Professional 4 GB
192 GB
Windows 7 Home Premium 4 GB
16 GB
Windows 7 Home Basic 4 GB
8 GB
Windows 7 Starter 2 GB
N/A

Physical Memory Limits: Windows Server 2008 R2

The following table specifies the limits on physical memory for Windows Server 2008 R2. Windows Server 2008 R2 is available only in 64-bit editions.
VersionLimit on X64Limit on IA64
Windows Server 2008 R2 Datacenter 2 TB

Windows Server 2008 R2 Enterprise 2 TB

Windows Server 2008 R2 for Itanium-Based Systems
2 TB
Windows Server 2008 R2 Foundation 8 GB

Windows Server 2008 R2 Standard 32 GB

Windows HPC Server 2008 R2 128 GB

Windows Web Server 2008 R2 32 GB


Physical Memory Limits: Windows Server 2008

The following table specifies the limits on physical memory for Windows Server 2008. Limits greater than 4 GB for 32-bit Windows assume that PAE is enabled.
VersionLimit on X86Limit on X64Limit on IA64
Windows Server 2008 Datacenter 64 GB
1 TB

Windows Server 2008 Enterprise 64 GB
1 TB

Windows Server 2008 HPC Edition
128 GB

Windows Server 2008 Standard 4 GB
32 GB

Windows Server 2008 for Itanium-Based Systems

2 TB
Windows Small Business Server 2008 4 GB
32 GB

Windows Web Server 2008 4 GB
32 GB


Physical Memory Limits: Windows Vista

The following table specifies the limits on physical memory for Windows Vista.
VersionLimit on X86Limit on X64
Windows Vista Ultimate 4 GB
128 GB
Windows Vista Enterprise 4 GB
128 GB
Windows Vista Business 4 GB
128 GB
Windows Vista Home Premium 4 GB
16 GB
Windows Vista Home Basic 4 GB
8 GB
Windows Vista Starter 1 GB


Physical Memory Limits: Windows Home Server

Windows Home Server is available only in a 32-bit edition. The physical memory limit is 4 GB.

Physical Memory Limits: Windows Server 2003 R2

The following table specifies the limits on physical memory for Windows Server 2003 R2. Limits over 4 GB for 32-bit Windows assume that PAE is enabled.
VersionLimit on X86Limit on X64
Windows Server 2003 R2 Datacenter Edition
64 GB
(16 GB with 4GT)
1 TB
Windows Server 2003 R2 Enterprise Edition
64 GB
(16 GB with 4GT)
1 TB
Windows Server 2003 R2 Standard Edition
4 GB
32 GB

Physical Memory Limits: Windows Server 2003 with Service Pack 2 (SP2)

The following table specifies the limits on physical memory for Windows Server 2003 with Service Pack 2 (SP2). Limits over 4 GB for 32-bit Windows assume that PAE is enabled.
VersionLimit on X86Limit on X64Limit on IA64
Windows Server 2003 with Service Pack 2 (SP2), Datacenter Edition
64 GB
(16 GB with 4GT)
1 TB
2 TB
Windows Server 2003 with Service Pack 2 (SP2), Enterprise Edition
64 GB
(16 GB with 4GT)
1 TB
2 TB
Windows Server 2003 with Service Pack 2 (SP2), Standard Edition
4 GB
32 GB


Physical Memory Limits: Windows Server 2003 with Service Pack 1 (SP1)

The following table specifies the limits on physical memory for Windows Server 2003 with Service Pack 1 (SP1). Limits over 4 GB for 32-bit Windows assume that PAE is enabled.
VersionLimit on X86Limit on X64Limit on IA64
Windows Server 2003 with Service Pack 1 (SP1), Datacenter Edition
64 GB
(16 GB with 4GT)
X64 1 TB
1 TB
Windows Server 2003 with Service Pack 1 (SP1), Enterprise Edition
64 GB
(16 GB with 4GT)
X64 1 TB
1 TB
Windows Server 2003 with Service Pack 1 (SP1), Standard Edition
4 GB
32 GB


Physical Memory Limits: Windows Server 2003

The following table specifies the limits on physical memory for Windows Server 2003. Limits over 4 GB for 32-bit Windows assume that PAE is enabled.
VersionLimit on X86Limit on IA64
Windows Server 2003, Datacenter Edition
64 GB
(16 GB with 4GT)
512 GB
Windows Server 2003, Enterprise Edition
64 GB
(16 GB with 4GT)
512 GB
Windows Server 2003, Standard Edition
4 GB

Windows Server 2003, Web Edition
2 GB

Windows Small Business Server 2003
4 GB

Windows Compute Cluster Server 2003

32 GB
Windows Storage Server 2003, Enterprise Edition
8 GB

Windows Storage Server 2003
4 GB


Physical Memory Limits: Windows XP

The following table specifies the limits on physical memory for Windows XP.
VersionLimit on X86Limit on X64Limit on IA64
Windows XP 4 GB
128 GB
128 GB (not supported)
Windows XP Starter Edition 512 MB
N/A
N/A

Physical Memory Limits: Windows Embedded

The following table specifies the limits on physical memory for Windows Embedded.
VersionLimit on X86Limit on X64
Windows XP Embedded
4 GB

Windows Embedded Standard 2009
4 GB

Windows Embedded Standard 7
4 GB
192 GB
Wordpress Theme by WPYAG
Blogger Template by Anshul Dudeja | Funny Pictures.