splash
Ardiansyah
A Father of four children, and wants to lead all of the family to reach the highest location in Jannah
Dari Ibnu Abbas ia berkata, "Dahulu aku pernah berada di belakang Rasulullah, lalu beliau bersabda: "Wahai anak kecil sesungguhnya aku ingin mengajarimu beberapa kalimat, jagalah Allah, maka pasti Allah menjagamu, jagalah Allah pasti kau akan dapati Allah dihadapanmu. Apabila engkau meminta maka mintalah kepada Allah dan jika engkau meminta pertolongan maka mintalah pertolongan kepada Allah. Ketahuilah, seandainya suatu umat berkumpul untuk memberikan manfaat kepadamu maka mereka tidak akan bisa memberi manfaat tersebut kecuali yang telah Allah takdirkan untukmu dan apabila mereka berkumpul untuk memadharatkanmu maka mereka tidak akan bisa memadharatkanmu kecuali dengan apa-apa yang Allah takdirkan atasmu, telah diangkat pena dan telah kering lembaran-lembaran(takdir)" (HR. Tirmidzi, hasan shohih)
 

Archive for March, 2014

Kita butuh orang yang bersedia mendzalimi kita

Posted By BlogAdmin on March 3rd, 2014

Assalamu’alaykum warahmatullahi wabarakatuh,

Sekadar renungan hari ini, agaknya posting ini cukup membingungkan. Mari saya mencoba memaparkan dari awal sampai pada suatu kesimpulan yang tertera di judul posting kali ini.
Manusia / Bani Adam adalah makhluk yang tidak luput dari kesalahan, setiap orang mempunyai dosa. Untuk menghapus dosa-dosa yang kita kerjakan itu kita butuh kepada amalan, seperti yang telah Rasulullah ajarkan, ikutilah perbuatan buruk dengan kebaikan, sesungguhnya kebaikan itu menghapuskan keburukan.
Masalah utama yang kita hadapi bersama adalah amalan kita terlalu sedikit untuk menutup dosa-dosa yang rutin kita kerjakan. Ibarat orang yang gaji bulanannya kurang dan mencoba untuk menutupinya dengan berhutang, lama-kelamaan hutang akan menumpuk, karena memang gaji bulanannya kurang untuk mencukupi biaya hidup selama sebulan penuh. Kalau masalahnya adalah masalah dunia seperti gaji bulanan yang kurang kita bisa berusaha dengan cara lain tanpa meninggalkan pekerjaan rutin kita, sehingga ada penghasilan tambahan yang mungkin bisa menutupi kekurangan biaya untuk biaya hidup dalam sebulan.
Nah sekarang yang menjadi masalah adalah amalan kita ini kurang, tidak mencukupi untuk menutupi dan menghapus dosa-dosa rutin kita. Lalu apa yang bisa kita kerjakan, melipat gandakan amalan mungkin ? Bisa, dan mungkin dapat dilakukan, tapi pertanyaannya cukupkah untuk dapat menghapus dosa-dosa kita ? mungkin tidak, karena betapa banyak dosa-dosa yang rutin kita lakukan dan kita bahkan tidak menyadarinya kalau itu adalah suatu dosa yang insya Allah akan dipertanyakan di akhirat kelak di hadapan Allah.
Ada solusi menarik dari keadaan kita ini, yaitu meraih pahala dengan amalan pasif. Apa itu amalan pasif ? Amalan yang dikerjakan tanpa mengerjakan apa-apa, aneh ya ?
Tepat, amal pasif itu adalah bersabar. Sabar ketika ada orang yang mendzalimi kita, sehingga hijab yang ada antara orang yang didzalimi dengan Allah hilang, do’a kita diijabah dan dosa-dosa digugurkan.
Adanya orang yang mendzalimi kita menghasilkan keuntungan tak berbatas, sesuai dengan amal kesabaran yang kita berusaha lakukan.
Silahkan dicoba solusi alternatif ini.
Wallahu ‘alam bishawab.
Assalamu’alaykum warahmatullahi wabarakatuh.

How to Reset the MySQL Root Password on Unix Systems

Posted By BlogAdmin on March 3rd, 2014

On Unix, use the following procedure to reset the password for all MySQL root accounts. The instructions assume that you will start the server so that it runs using the Unix login account that you normally use for running the server. For example, if you run the server using the mysql login account, you should log in as mysql before using the instructions. Alternatively, you can log in as root, but in this case you must start mysqld with the –user=mysql option. If you start the server as root without using –user=mysql, the server may create root-owned files in the data directory, such as log files, and these may cause permission-related problems for future server startups. If that happens, you will need to either change the ownership of the files to mysql or remove them.

Log on to your system as the Unix user that the mysqld server runs as (for example, mysql).

Locate the .pid file that contains the server’s process ID. The exact location and name of this file depend on your distribution, host name, and configuration. Common locations are /var/lib/mysql/, /var/run/mysqld/, and /usr/local/mysql/data/. Generally, the file name has an extension of .pid and begins with either mysqld or your system’s host name.

You can stop the MySQL server by sending a normal kill (not kill -9) to the mysqld process, using the path name of the .pid file in the following command:

1 shell> kill `cat /mysql-data-directory/host_name.pid`

Use backticks (not forward quotation marks) with the cat command. These cause the output of cat to be substituted into the kill command.

Create a text file containing the following statements. Replace the password with the password that you want to use.

1 UPDATE mysql.user SET Password=PASSWORD('MyNewPass') WHERE User='root';
2 FLUSH PRIVILEGES;

Write the UPDATE and FLUSH statements each on a single line. The UPDATE statement resets the password for all root accounts, and the FLUSH statement tells the server to reload the grant tables into memory so that it notices the password change.

Save the file. For this example, the file will be named /home/me/mysql-init. The file contains the password, so it should not be saved where it can be read by other users. If you are not logged in as mysql (the user the server runs as), make sure that the file has permissions that permit mysql to read it.

Start the MySQL server with the special –init-file option:

1 shell> mysqld_safe --init-file=/home/me/mysql-init &

The server executes the contents of the file named by the –init-file option at startup, changing each root account password.

After the server has started successfully, delete /home/me/mysql-init.

You should now be able to connect to the MySQL server as root using the new password. Stop the server and restart it normally.

Re-Post from http://dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html for Private Note

Just a Note : Reconfigure Exim4 MTA in Debian

Posted By BlogAdmin on March 3rd, 2014

Assalamu’alaykum warahmatullahi wabarakatuh,

When we install new Debian Linux System we need to configure how the MTA sends and receives email, the default Debian MTA is EXIM4, just run this command :

1 dpkg-reconfigure exim4-config

Then make the changes that needed

Happy Administer System

How to LSBize and init Script in Debian

Posted By BlogAdmin on March 3rd, 2014

Assalamu’alaykum warahmatullahi wabarakatuh,

When we want to add a script that run automatically at system start up, we need to add the script to rc.d at local machine with this command :

1 update-rc.d local defaults

where local is your own script that located in /etc/init.d

if you just type in your script DebianOS makes you to have an LSB Script, how to make a LSB Script ?
It was easy, just put this commands in your script,

1 ### BEGIN INIT INFO
2 # Provides:          scriptname
3 # Required-Start:    $remote_fs $syslog
4 # Required-Stop:     $remote_fs $syslog
5 # Default-Start:     2 3 4 5
6 # Default-Stop:      0 1 6
7 # Short-Description: Start daemon at boot time
8 # Description:       Enable service provided by daemon.
9 ### END INIT INFO

So Debian will accept your script and add it into your machine init script that run in your desire run level.
Happy Administer System !