Localhost website will be useful when we have a small home/office network that required some fake website as a server or financial server. It will look like a real website but without necessary connecting to internet.
These are the steps to build local website with slackware. Slackware I use is slackware 13.0.
First make sure mysql, httpd and dhcp (if necessary) are running in terminal.
#ps x | grep httpd
#ps x | grep mysql
#ps x | grep dhcp
If there are result show in your terminal then all the module is loaded.
Making the sql’s database. Do these command in terminal
Check in folder /var/lib/mysql there will mydatabase file
Or the second command
CREATE DATABASE mydatabase;
make sure there is a ; sign at the back of the command.
Run php before installing wordpress
Edit /etc/httpd/httpd.conf the uncomment mod_php.conf
Add index.php line in /etc/httpd/httpd.conf sub DirectoryIndex
And ServerName 192.168.1.9:80
Then save it and out
Edit /etc/hosts add this line 192.168.1.9 sugi.sugi.com sugi (for example)
Add in /etc/HOSTNAME sugi.sugi.com
Edit /etc/rc.d/rc.inet1.conf
And put the static ip there like 192.168.1.9 or anything you would like as long as it is the same with /etc/hosts.
Now everything should work.
Try to check them by opening your browser and type localhost
There will be a text : It works!
Leave a Reply