Home
Unix-Linux Administration
Database
Programming
Advanced Search
Resources
Contact Us
Login Form
Username

Password

Remember me
Password Reminder
No account yet? Create one
Syndicate
Lighttpd PHP5 MySQL-vhost chroot jail installation under Ubuntu 7 Linux
Nov 08, 2007 at 10:59 AM

Security, speed, compliance, and flexibility -- all of these describe lighttpd (pron. lighty) which is rapidly redefining efficiency of a webserver; as it is designed and optimized for high performance environments. With a small memory footprint compared to other web-servers, effective management of the cpu-load, and advanced feature set (FastCGI, SCGI, Auth, Output-Compression, URL-Rewriting and many more) lighttpd is the perfect solution for every server that is suffering load problems. And best of all it's Open Source licensed under the revised BSD license.

 

Read more...
Recover MySQL Database root password
Nov 02, 2007 at 10:14 PM

1. Login as root

2. Stop the MySQL server by using  command
    /etc/init.d/mysql stop

3. Start MySQL server without password
     mysqld_safe --skip-grant-tables &

4.Connect to mysql server using mysql client
    mysql -u root 

5. Now you need to Setup new MySQL root user password

mysql> use mysql;

mysql> update user set password=PASSWORD(”newrootpassword”) where user=’root’;

mysql> flush privileges;

mysql> quit

6. Restart MySQL
     /etc/init.d/mysql stop
     /etc/init.d/mysql start

   {mosgoogle}

Indy for Lazarus
Oct 16, 2007 at 09:37 AM

Install Indy 10 on Lazaus
Step 1. Download from http://www.indyproject.org/Sockets/fpc/index.en.aspx  

Step 2. Extract file and open Lazarus IDE

Step 3. Goto components menu and clik submenu "open package file (.lpk)"  so brown to indy 10 directory and select "lazarus\indylaz.lpk"

Step 4. Click Compile Button and Click Install 

<< Start < Previous 1 2 3 Next > End >>