Domain Name Yahoo

Easy Help Troubleshoot Your Linux Box



  

Automatic Shutdown/Restart on Windows 2000 Advance Server

Shutdown or restart command in Microsoft Windows Operating System is using external file called shutdown.exe
For windows XP, this file is included after installation the operating system.
Simply open your command prompt from Start-Run-cmd, then:

C:\> shutdown /?

You should see a complete usage instruction.

On Windows 2000 Operating System, shutdown.exe is not included. You have to get it from it’s Distribution Kit Disc.
What if the disc is gone ?
That is the common problem from people, including me.
I have search around Search Engine, Google , yahoo, bing, etc.. etc.. They all keep saying that you have to get it from The Distribution Kit or Use the third-party softwares.

One thing I dont like from Windows Operating Systems that people easily create some variant of viruses, trojans, worms, hidding inside  the windows executable files.

Here is the trick to be able Shutdown/Restart automatic on Windows 2000.
You need Windows XP connected to your Windows 2000
Use Schedule task on windows XP to shutdown/restart the windows 2000 using shutdown.exe -m \\windows2000 -f -r
To see complete usage : c:\> shutdown /?

Please note, you need to logged on as domain administrator to be able  to shutting down Windows 2000

December 7th, 2009 Posted by admin | Domain, Windows | no comments

PHP code Vs Firewall

Php code : file_get_contents , fsockopen couldnt compiled

This error log was generated from httpd log.

[error] [client 192.168.1.1] PHP Warning:  file_get_contents() [<a href=’function.file-get-contents’>function.file-get-contents</a>]: php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in /var/www/html/search/test.php on line 2

[error] [client 192.168.1.1] PHP Warning:  file_get_contents(http://www.google.com) [<a href=’function.file-get-contents’>function.file-get-contents</a>]: failed to open stream: Connection refused in /var/www/html/search/park.php on line 2

The Solution is to turn off your firewall

# service firewall stop

September 25th, 2008 Posted by admin | Domain, General, Uncategorized, firewall | no comments

DomainKeys

taken from http://en.wikipedia.org/wiki/DomainKeys

DomainKeys is an e-mail authentication system designed to verify the DNS domain of an e-mail sender and the message integrity. The DomainKeys specification has adopted aspects of Identified Internet Mail to create an enhanced protocol called DomainKeys Identified Mail (DKIM). This merged specification is the basis for an IETF Working Group which guided the specification toward becoming an IETF standard.

The DKIM standard was issued in May 2007. The DomainKeys draft was also issued under “historical” status at the same time.

July 30th, 2008 Posted by admin | Domain, Email | no comments

Create DNS Server Using Mandriva Linux

Step-By-Step to Install DNS Server using Mandriva Linux.
# urpmi bind
# vi /etc/named.conf
add the following sections

zone “mydomain.org” IN {
type master ;
file “db.mydomain.org”;
};
zone “1.168.192.in-addr.arpa” IN {
type master ;
file “db.192.168.1″;
};

March 4th, 2008 Posted by admin | Domain | no comments