Arsip untuk Juni, 2008
Salah Satu Cara Merumuskan Wanita
Ditulis oleh ch13ry di/pada Juni 18, 2008
Ditulis dalam Personal | 3 Komentar »
Reset mysql root password
Ditulis oleh ch13ry di/pada Juni 18, 2008
Setelah kita mengginstall mysql via console, kita pasti akan mengcreate password sebagai security nya
untuk menjaga keamanan data2 kita. Tapi pada suatu saat ada kemungkinan kita lupa password root nya. ada kemungkinan untuk bisa me reset password root mysql nya untuk alternatif solusi terbaik…
adapun langkah langkah nya :
1. Kill the mysqld that may be running (not with -9):
kill `cat /var/lib/mysql/hostname.pid`
2. Restart MySQL in safe mode:
/usr/bin/safe_mysqld –skip-grant-tables&
3. Connect to MySQL:
/usr/bin/mysql
4. Use the mysql database:
use mysql;
5. Run the update command putting your new password where the ….’s
are. Yes this is all one command:
update user set password = password(‘…….’) where user = ‘root’ and
host=’localhost’;
6. Flush the privileges so everything will take:
flush privileges;
7. Then quit mysql:
quit
8. Stop mysql from command line with:
/etc/init.d/mysql stop
9. Restart mysql from command line with:
/etc/init.d/mysql start */
Ditulis dalam Linux, Tips & Trik | 2 Komentar »
Sources List ubuntu (Local Indonesia)
Ditulis oleh ch13ry di/pada Juni 16, 2008
Ini sources list lokal untuk ubuntu. Pada contoh ini untuk dapper. Kalau mau pake yg lain, breezy, feisty, edgy…tinggal ganti aja “dapper” dgn yg dimaksud
Repositori Kambing (UI — Telkom, Indosat)
Informasi situs: http://kambing.vlsm.org
### 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 restricted universe multiverse## INI UNTUK MAJOR BUG FIX UPDATES
deb http://kambing.vlsm.org/ubuntu dapper-updates main restricted universe multiverse
deb-src http://kambing.vlsm.org/ubuntu dapper-updates main restricted universe multiverse## INI UNTUK UBUNTU SECURITY UPDATES
deb http://kambing.vlsm.org/ubuntu dapper-security main restricted universe multiverse
deb-src http://kambing.vlsm.org/ubuntu dapper-security main restricted universe multiverse
Repositori CBN Mirror (IIX)
Informasi situs: http://mirror.cbn.net.id
### sources.list.cbn
### Repository dengan menggunakan server mirror cbn## REPOSITORY UTAMA
deb http://ubuntu.cbn.net.id/Ubuntu dapper main restricted universe multiverse
deb-src http://ubuntu.cbn.net.id/Ubuntu dapper main restricted universe multiverse## INI UNTUK MAJOR BUG FIX UPDATES
deb http://ubuntu.cbn.net.id/Ubuntu dapper-updates main restricted universe multiverse
deb-src http://ubuntu.cbn.net.id/Ubuntu dapper-updates main restricted universe multiverse## INI UNTUK UBUNTU SECURITY UPDATES
deb http://ubuntu.cbn.net.id/Ubuntu dapper-security main restricted universe multiverse
deb-src http://ubuntu.cbn.net.id/Ubuntu dapper-security main restricted universe multiverse
Repositori Komo (IIX)
Informasi situs: http://komo.vlsm.org
### sources.list.komo
### Repository dengan menggunakan server mirror komo.vlsm.org## REPOSITORY UTAMA
deb http://komo.vlsm.org/ubuntu dapper main restricted universe multiverse
deb-src http://komo.vlsm.org/ubuntu dapper main restricted universe multiverse## INI UNTUK MAJOR BUG FIX UPDATES
deb http://komo.vlsm.org/ubuntu dapper-updates main restricted universe multiverse
deb-src http://komo.vlsm.org/ubuntu dapper-updates main restricted universe multiverse## INI UNTUK UBUNTU SECURITY UPDATES
deb http://komo.vlsm.org/ubuntu dapper-security main restricted universe multiverse
deb-src http://komo.vlsm.org/ubuntu dapper-security main restricted universe multiverse
Repositori Indika (IIX)
Informasi situs: http://indika.net.id
### sources.list.indika
### Repository dengan menggunakan server mirror ubuntu.indika.net.id## REPOSITORY UTAMA
deb http://ubuntu.indika.net.id dapper main restricted universe multiverse
deb-src http://ubuntu.indika.net.id dapper main restricted universe multiverse## INI UNTUK MAJOR BUG FIX UPDATES
deb http://ubuntu.indika.net.id dapper-updates main restricted universe multiverse
deb-src http://ubuntu.indika.net.id dapper-updates main restricted universe multiverse## INI UNTUK UBUNTU SECURITY UPDATES
deb http://ubuntu.indika.net.id dapper-security main restricted universe multiverse
deb-src http://ubuntu.indika.net.id dapper-security main restricted universe multiverse
Repositori Gamais ITB (ITB-Net & Inherent)
Informasi situs: http://mirror.gamais.itb.ac.id
### sources.list.gamaisitb
### Repository dengan menggunakan server mirror gamais.itb.ac.id## REPOSITORY UTAMA
deb http://mirror.gamais.itb.ac.id/ubuntu dapper main restricted universe multiverse
deb-src http://mirror.gamais.itb.ac.id/ubuntu dapper main restricted universe multiverse## INI UNTUK MAJOR BUG FIX UPDATES
deb http://mirror.gamais.itb.ac.id/ubuntu dapper-updates main restricted universe multiverse
deb-src http://mirror.gamais.itb.ac.id/ubuntu dapper-updates main restricted universe multiverse## INI UNTUK UBUNTU SECURITY UPDATES
deb http://mirror.gamais.itb.ac.id/ubuntu dapper-security main restricted universe multiverse
deb-src http://mirror.gamais.itb.ac.id/ubuntu dapper-security main restricted universe multiverse
Ditulis dalam Linux, Tips & Trik | Leave a Comment »
