Hyper-V Guides
- Learn about Microsoft virtualization technologies.
- Make decisions about the right licenses for the right scenarios.
- Plan your Hyper-V deployment.
- Manage a virtual machines environment.
- Apply security best practices.
Read it here.
How to Fix Project Server Events Service and Queue Service Event ID: 7000 Error
Event Type: Error
Event Source: Service Control Manager
Event Category: None
Event ID: 7009
Date: 9/7/2009
Time: 9:24:42 PM
User: N/A
Computer: PS07
Description:
Timeout (30000 milliseconds) waiting for the Microsoft Office Project Server Events Service service to connect.
Event Type: Error
Event Source: Service Control Manager
Event Category: None
Event ID: 7000
Date: 9/7/2009
Time: 9:24:42 PM
User: N/A
Computer: PS07
Description:
The Microsoft Office Project Server Events Service service failed to start due to the following error:
The service did not respond to the start or control request in a timely fashion.
Event Type: Error
Event Source: Service Control Manager
Event Category: None
Event ID: 7009
Date: 9/7/2009
Time: 9:24:42 PM
User: N/A
Computer: PS07
Description:
Timeout (30000 milliseconds) waiting for the Microsoft Office Project Server Queue Service service to connect.
Event Type: Error
Event Source: Service Control Manager
Event Category: None
Event ID: 7000
Date: 9/7/2009
Time: 9:24:42 PM
User: N/A
Computer: PS07
Description:
The Microsoft Office Project Server Queue Service service failed to start due to the following error:
The service did not respond to the start or control request in a timely fashion.
You will face this error most likely if your project server is not connected to the internet. Yet again a simple solution, add the CRL of Microsoft and your service will start again :-)
Source and full description: http://rperreaux.spaces.live.com/blog/cns!5D7BD18D324CBEEF!529.entry
How to import a private key and certificate into a java keystore
openssl pkcs8 -topk8 -nocrypt -in key.pem -inform PEM -out key.der -outform DER
openssl x509 -in cert.pem -inform PEM -out cert.der -outform DER
Import private key and cert via ImportKey class
Import the keystore generated above into your existing keystore :
keytool -v -importkeystore -srckeystore "C:\keystore.ImportKey" -destkeystore "C:\.keystore"
(optionally you can specify the alias via –srcalias and –destalias, note that an alias is unique within the keystore)
Sources : http://www.agentbob.info/agentbob/79-AB.html, http://java.sun.com/j2se/1.3/docs/tooldocs/win32/keytool.html and http://conshell.net/wiki/index.php/Keytool_to_OpenSSL_Conversion_tips
PCHealth mistery on Windows boot disk
Source: http://bdbits.wordpress.com/2008/04/23/reclaiming-space-on-your-windows-servers-c-drive/
How to backup Gmail with fetchmail
- http://www.dissociatedpress.net/2009/02/18/back-up-gmail/
- http://lifehacker.com/software/gmail/geek-to-live--back-up-gmail-with-fetchmail-235207.php
- http://grimstveit.no/jakob/blog/2005/12/08/using-fetchmail-against-gmail-over-ssl/
- http://www.marksanborn.net/freebsd/using-fetchmail-to-backup-gmail-with-freebsd/
- http://www.wains.be/index.php/2008/03/19/backup-your-gmail-account-in-maildir-format-using-fetchmail/
How to configure a user on SUN Solaris 10
root:x:0:0:Super-User:/:/usr/bin/bash
log out and log in again to verify.
within your home folder, also specified in /etc/passwd, above example sets / as the home folder for root, create a .profile file with the following content
export TERM=vt100
export PS1="\$USER@$HOSTNAME:\w> \[\e[0m\]"
this will set your terminal to vt100, which allows for easy editing and does some formatting on your prompt :-)
check http://en.wikipedia.org/wiki/PS1 for more info!
How to configure NTP on SUN Solaris 10
edit the ntp.conf file.
Syncing to an external NTP server:
(see http://www.pool.ntp.org/ for a list of public time servers)
change `server 127.127.XType.0`
to `server time_server`
you can add multiple servers also, for example:
server 0.be.pool.ntp.org
server 1.be.pool.ntp.org
server 2.be.pool.ntp.org
server 3.be.pool.ntp.org
comment out `fudge 127.127.XType.0 stratum 0`
touch /var/ntp/ntp.drift
svcadm enable svc:/network/ntp
----------------------------------------
Configuring an NTP Client in Solaris 10:
----------------------------------------
cp /etc/inet/ntp.client /etc/inet/ntp.conf
svcadm enable svc:/network/ntp