Tuesday, October 28, 2014

Langkah-langkah instalasi XAMPP 1.8.3 pada Windows

 XAMPP adalah paket aplikasi yang sudah disatukan dari beberapa aplikasi, seperti apache, mysql, php, phpmyadmin dan beberapa aplikasi lain. Xampp digunakan sebagai server pada komputer lokal, sehingga kita bisa menjalankan aplikasi, sebelum benar-benar di onlinekan pada server di internet.

Berikut ini adalah langkah-langkah instalasi xampp 1.8.3 pada Windows :

1. Download XAMPP dari website resmi xampp.
2. Jalankan file yang telah didownload.
3. Jika muncul pertanyaan dibawah ini. Klik Yes.

 

4. Jika muncul warning yang berhubungan dengan UAC. Klik Ok.



Tuesday, April 24, 2012

Install Windows Server 2003

I'm trying to install windows server 2003 as Server for File Sharing in my local network. This is my first time use it. Hope it run smoothly..

Found some links, suggested by google :

Setup Windows Server 2003 - Bagian 1
Setup Windows Server 2003 - Bagian 2

Thanks for Author. :)

Thursday, April 12, 2012

Automatically install dependencies with “dpkg -i”

I want to install Webmin this morning. So, i can manage the server easily (i don't know, its easy or something that i have to learn more how to use it).

When i try to install with "dpkg -i name_of_package", its back with some error, which mean some depencies need it from reposotory. Trying to search on the net, and found it.

Just like on the net say : it works for debian lenny with command affect apt-get and dpkg. But, in this case, i am using Ubuntu (which is Debian distro), and works fine.

1. Try to install with "dpkg -i", if its need some dependencies, try number two.
2. Fix it with "apt-get-f --force-yes --yes install"
3. Install your packages again with "dpkg -i"

Its work for me, i hope you too.

Here the source.

Wednesday, April 11, 2012

VSFTP Config to send users to specific folders

See help instructions here: http://www.linuxquestions.org/questions/linux-networking-3/vsftpd-chroot-problem-387883/

I think you are looking for this snippet of information:

All the users belonging to ftp-users group goes into /home/ftp-docs/ftp_stuff by default when they login. They cannot navigate in other directories and are restricted to this particular directory.

You do this:

Create a directory by issuing the following command as root:

mkdir -p /home/ftp-docs/ftp_stuff

Then do this:

chgrp ftp-users /home/ftp-docs/ftp_stuff
chmod -R 777 /home/ftp-docs/ftp_stuff

In the /etc/vsftpd/vsftpd.conf write this :

chroot_list_enable=YES
chroot_list_file=/etc/vsftpd.chroot_list

Put all you ftp-users group userÅ› name in /etc/vsftpd.chroot_list Then in the /etc/passwd file make the home directory of all the users belonging to ftp-users group to /home/ftp-docs/ftp_stuff.

Then do the following:

service vsftpd restart

Then login via any user belonging to ftp-users group you will lend into /home/ftp-docs/ftp_stuff. You cant go to the other higher level directories.

you can create multiple entries in the list for multiple groups. the order in which those groups are in the list file will dictate their highest directory I believe.

Hope that helps. Thomas


Original Source Here.

Saturday, March 31, 2012

MySQL : "The user specified as a definer ('root'@'%') does not exist"

I just found a problem about Mysql, and i found out solution.

If you've found following error while using mysql database:
     The user specified as a definer ('root'@'%') does not exist
Then you can solve it by using following :
     grant all on *.* to 'root'@'%' identified by 'password' with grant option;


i found it here... [link]


Thanks to creator.. :)

Saturday, March 24, 2012

Hello World !

Hello..

Wellcome to my blog tutorials, i'll write some tutorial for us, especially for me excaly. I'd write something that i find out from the internet too, and it was helped me before, just to reshare and as note for me.

Enjoy..

Langkah-langkah instalasi XAMPP 1.8.3 pada Windows

 XAMPP adalah paket aplikasi yang sudah disatukan dari beberapa aplikasi, seperti apache, mysql, php, phpmyadmin dan bebera...