MySQL Error Flush Connection

MySQL Error Flush Connection

Halo Ericovamili,

Kali ini saya akan membahas masalah Database Server MySql. Ceritanya begini, saya mengirimkan sent request data dan get data ke Server MySql melalui jaringan dan saya mendapat bahwa saya di blokir (seluruh jaringan yang terhubung ke Server Database MySql). Pada pesan error, terlihat seperti dibawah ini :

Jadi Error No 1129 dengan pesan error 192.168.0.2 is blocked because of many connection error unblock with ‘mysqladmin-flush-hosts’, padahal saya erornya cuman sedikit dan lebih cenderung ke banyak proses permintaan data yang buaaanyaaak sekali ke server dan memang proses agak lambat hingga 3 menit-an low permintaan data nya.

Solusi untuk masalah ini dari saya cukup gampang sekali. Cukup masuk ke Service Proses pada Windows anda kemudian STOP service MYSQL dan START kembali Service MYSQL. Lalu coba konek kembali ke Server maka Server MySQL sudah siap kembali. Okay selamat mencoba. Salam Ericovamili.

Menginstall Linux Blankon dari windows Wubi

nah cara ini inspirasi saya dapatkan dari milis blankon dengan nickname itachi.nah selanjutnya yang perlu dilakukan :

1. Komputer dengan windows
2. ISO Blankon
3. Wubi
4. Ganti nama iso blankon misal : blankon-4.1-cdlive-i386.iso -> ubuntu-8.10-desktop-i386.iso
5. simpan ISO blankon yang telah direname ke folder yang sama dengan wubi
6. Install wubi seperti biasa

Selamat menikmati wubi Blankon

Mengapa ada beberapa program Linux berbayar ?

Inilah pertanyaan yang sering terjadi ketika sudah mulai mempelajari Linux. Mengapa Linux yang katanya open source dan free malah bayar? Contohnya “kok beli distro DVD Ubuntu harus bayar Rp.10rb?” cukup lumrah saya katakan unutk membayar biaya ongkos kopi DVD dan keping DVD nya. Contohnya lagi seperti “mengapa program-program Linux ada yang berbayar?seperti TurboPrint, katanya dikembangkan dan opensource kenapa bayar?” Tidak semua free, jika pihak vendor tidak menyediakan kode atau spesifikasi hardware secara terbuka maka para pengembang Free Software tidak bisa membuatkan drivernya. Nah kalaupun berbayar berarti perusahaan yang membuat aplikasi tersebut membeli lisensi ke vendor, misalnya TurboPrint.

J adi Free Software adalah open source bukan gratis/bayar. Selama vendor tidak membuka spesifikasi ya sulit menjadi free.

Gunakan Linux

Pada saat saya menggaransikan laptop acer aspire 4710 saya ke Acer Service center THR, ada bapak yang berusia sekitar 30th-an menanyakan perihal laptopnya Acer Aspire One nya. Dia meminta ke pihak Acer untuk memberikan CD Windows asli.

Pihak Acer pertama bingung, ini orang maksudnya apa, orang tersebut menjelaskan kembali jika “Windows Xp nya kena virus kemudian datanya hilang dan harus install ulang gimana?” dalam hati saya “ya beli windows xp!” jawaban saya dengan pihak Acer sama :p orang itu bertanya kembali, “ bukannya sudah dapat waktu beli laptop bla..bla…blaa”

Ya inilah yang sering terjadi, tidak tahu apakah memang informasi yang disajikan oleh pihak vendor laptop yang mengatakan windowsnya original terus orang awam merasa mendapatkan original yang dimaksud beserta CD nya. Kalau hanya untuk pekerjaan biasa2 saja kenapa tidak menggunakan Linux?banyak varianya yang dapat digunakan sesuai kebutuhan kita. Takut dengan virus?pakai saja linux, memang ada kemungkinan Linux terserang virus namun jarang sekali hal itu terjadi, lihat estimasi biaya Anda jika membeli software-software nya windows. Tinggal ditambahkan harga beli windows tambahkan saja membeli photoshop asli maka dipastikan dana yang anda keluarkan cukup untuk membeli PC baru!

Percobaan Ubuntu Repository

Berhubung lepi (laptop) saya install dengan ubuntu 8.04 Hardy Heron, dan saya ingin mengupdate ubuntu saya (niatnya merepository aplikasi)dengan repository ubuntu 7.10 gutsy gibbon, ternyata pada ubuntu 8.04 tidak mau menerima repository sebelumnya.
Jadi kesimpulanya ubuntu tidak dapat di repo di repo ubuntu sebelumnya T_T
Padahal cuman ingin mengambil atau mendownload aplikasinya saja,sayang sekali.

Repository Ubuntu 7.10 STIKOM

langkah pertama ketikan pada terminal “sudo gedit /etc/apt/sources.list”
lalu masukan

deb http://ubuntu.stikom.edu/ubuntu gutsy main restricted multiverse universe
deb-src http://ubuntu.stikom.edu/ubuntu gutsy main restricted multiverse universe
deb http://ubuntu.stikom.edu/ubuntu gutsy-updates main restricted multiverse universe
deb-src http://ubuntu.stikom.edu/ubuntu gutsy-updates main restricted multiverse universe
deb http://ubuntu.stikom.edu/ubuntu gutsy-backports main restricted multiverse universe
deb-src http://ubuntu.stikom.edu/ubuntu gutsy-backports main restricted multiverse universe
deb http://ubuntu.stikom.edu/ubuntu gutsy-proposed main restricted multiverse universe
deb-src http://ubuntu.stikom.edu/ubuntu gutsy-proposed main restricted multiverse universe
deb http://ubuntu.stikom.edu/ubuntu gutsy-security main restricted multiverse universe
deb-src http://ubuntu.stikom.edu/ubuntu gutsy-security main restricted multiverse universe

nah setelah itu silakan update security dan aplikasi-aplikasi yang diinginkan.
semoga membantu

Top 10 Linux commands for Absolute Newbies

Nah neh saya ambil dari blog.lxpages.com yang mungkin setidaknya berguna bagi kita-kita yang copoe-copoe dalam linux hehehe trima kasih lxpages ^^ hehehe

1) ls

This basic command is your eyeball into the filesystem. Use it to list the contents of a directory.

A) To view details such as the file permissions, user and group owner, last time file was modified pass the l option as such
ls -l

B) You can search for filenames by using wildcards. To list files that start with the letter f, use

ls -l f*

2) find

Where did you save that file? Use the find command to find your files. The find command will search where you want it to search and find directories or files that match conditions such as name, date last accessed, file size and more. It has got many abilities, and they’re all listed in the man page.

To search for files starting with the letter f recursively starting from the / root directory use the following

find / -name f*

3) man

What did we mean by the man page? man stands for manual, so “man page” really means it’s manual page. Most linux commands have manual pages that describe how the command is utilized. So you can usually type man to view it’s manual page. Great when you’re stuck and don’t know what the command is for or how it’s used. You use it by passing a command line as an option like this

man vi

4) vi

The editor of choice for serious linux users [sorry Emacs fans ;-)]. Use the “man vi” command to read details on this prince of editors. Maybe this is why I love editing and coding in linux, I never have to lift my hands to do anything. Here’s a quick and dirty list of vi commands for you to start using.

A) If you notice on your keyboard the letters (H,J,K,L) are adjacent to each other, which makes them ideal keys to use for navigating this editor.
a) l (move right)
b) h (move left)
c) j (move down)
d) k (momve up)
B) YY – type in Y twice to copy a line
C) DD – type in D twice to cut a line.
D) P – type in P to paste a line.
E) :q! – quit without saving
F) :wq! – save and quit
G) :w! – save

5) cat

How do you view the contents of a file? You can let the “cat” of the bag with the cat command! HA! 😉 Here’s how you can use the command

cat filename.txt

6) more

What if there the file you cat fills more than 1 screen? You can pipe the cat command into more which will allow you to view the contents one screenfull at a time.

cat filename.txt | more

7) grep

And what if you need to search for certain phrases or words in a file? And for this we can use the grep command. Say we want to search for all the occurances of the word “passwd” in a filename, we can use the following command

grep “passwd” filename.txt

If there are matches, the lines containing “passwd” will be printed.

8) chmod

You have a script that you need to run, and oh no it won’t run? By utilizing the “ls -la” command you learned you can see if the script has execute permissions. If it doesn’t you may give it execute permission by running

chmod +x scriptfile

And of course, you can run the scriptfile if it is a script by running it with a ./ preceding the filename on the shell command line like so
./scriptfile

9) ps

What are you running in the background? How can you tell? By using the “ps” command of course you can view What processes are running under your account.

10) cp, mv, rm

How do you copy, move or remove a file? There’s actually three different commands for each of these functions.

A) copy
cp oldfilename.txt newfilename.txt
B) move
mv oldfilename.txt newfilename.txt
C) delete
rm oldfilename.txt

Memasang Repository

Setelah berkutik lama di dunia Linux, saya ingin mensharing cara membuat repository linux. Pada terminal ketikan
## sudo gedit /etc/apt/sources.list
dan ketika sudah terbuka jendela semacam notepad tapi kalau dalam linux kita menyebutnya gedit, maka masukan alamat repository yang dituju. Misalnya repository yang saya miliki adalah seperti di bawah ini :

##Punya Stikom
#deb ubuntu.stikom.edu
#deb ubuntu-security.stikom.edu

deb http://ubuntu.stikom.edu/ubuntu feisty main restricted multiverse universe
deb-src http://ubuntu.stikom.edu/ubuntu feisty main restricted multiverse universe

deb http://ubuntu.stikom.edu/ubuntu feisty-updates main restricted multiverse universe
deb-src http://ubuntu.stikom.edu/ubuntu feisty-updates main restricted multiverse universe

deb http://ubuntu.stikom.edu/ubuntu feisty-backports main restricted multiverse universe
deb-src http://ubuntu.stikom.edu/ubuntu feisty-backports main restricted multiverse universe

deb http://ubuntu.stikom.edu/ubuntu feisty-proposed main restricted multiverse universe
deb-src http://ubuntu.stikom.edu/ubuntu feisty-proposed main restricted multiverse universe

deb http://ubuntu-security.stikom.edu/ubuntu feisty-security main restricted multiverse universe
deb-src http://ubuntu-security.stikom.edu/ubuntu feisty-security main restricted multiverse universe

### sources.list.kambing
### Repository dengan menggunakan server mirror kambing.vlsm.org
## REPOSITORY UTAMA
#deb http://kambing.vlsm.org/ubuntu dapper main restricted universe multiverse
#deb-src http://kambing.vlsm.org/ubuntu dapper main

Repository diatas saya diberi oleh senior saya dalam bidang linux hehehe…Anda dapat mengkonfigurasikan sendiri sesuai alamat repositiry yang anda inginkan.
Untuk mengupdate versi linux maka ketika di terminal
## sudo apt-get update