November 27, 2009
Export your SSL Cert to a PFX file and include the private key. Copy it to your apache server.
# openssl pkcs12 -in www.yourdomain.com.pfx -nocerts -out www.yourdomain.key.pem
# openssl pkcs12 -in www.yourdomain.com.pfx -clcerts -nokeys -out www.yourdomain.cert.pem
# openssl rsa -in www.yourdomain.key.pem -out www.yourdomain.key
Copy contents of www.yourdomain.cert.pem between and including BEGIN CERTIFICATE and END CERTIFICATE into www.yourdomain.cert.
Here’s a sample [...]
Filed under: Uncategorized |
Comments (4)
November 11, 2009
SELECT total_worker_time/execution_count AS AvgCPU
, total_worker_time AS TotalCPU
, total_elapsed_time/execution_count AS AvgDuration
, total_elapsed_time AS TotalDuration
, (total_logical_reads+total_physical_reads)/execution_count AS AvgReads
, (total_logical_reads+total_physical_reads) AS TotalReads
, execution_count
, SUBSTRING(st.TEXT, (qs.statement_start_offset/2)+1
, ((CASE qs.statement_end_offset WHEN -1 THEN datalength(st.TEXT)
ELSE qs.statement_end_offset
END - qs.statement_start_offset)/2) + 1) AS txt
, query_plan
FROM sys.dm_exec_query_stats AS qs
cross apply sys.dm_exec_sql_text(qs.sql_handle) AS st
cross apply sys.dm_exec_query_plan (qs.plan_handle) AS qp
ORDER BY 1 DESC
Take note of the [...]
Filed under: Uncategorized |
Comments (248)
August 10, 2008
I often ask myself that question. I’ve been playing/working with computers for maybe 25 years. That’s “computers” generally, not Windows or Linux, programming or system administration, open source or closed, etc. There isn’t enough time in the day (or night) to focus on one particular product and at the same time expect to excel at [...]
Filed under: Uncategorized |
Comments (2)