Friday, July 5, 2013

The Ultimate Wake-on-LAN (WOL) Guide

My configuration is using a wireless bridge and it doesn't work after I shutdown the computer for a while, however if I turn on the computer and shutdown it, WOL works fine.

It seems that I have to setup a static arp with the MAC address of the wireless bridge I am using (TP-Link WRN700N).

under DD-WRT, it is something like that:

arp -s 192.168.2.50 (Computer's static IP) xx.xx.xx.xx (wireless bridge's MAC address)

update: well this still doesn't fix the problem, in my case My PC was connected to a switch which is connected to the wireless bridge, after remove the switch, I am now able to wake the PC even after it has been shutdowned for a long time...I suspect it it the arp cache in the switch expired and caused the issue.

The Ultimate Wake-on-LAN (WOL) Guide:
Tip: Wake on LAN/Magic Packet information collection and check list


Monday, June 3, 2013

Monday, May 27, 2013

The SQL Server Reporting Services (MSSQLSERVER) service failed to start + after SP2 installation on Windows 2008 R2 | Data Base Internal

The SQL Server Reporting Services (MSSQLSERVER) service failed to start + after SP2 installation on Windows 2008 R2 | Data Base Internal:

'via Blog this'

delete orphaned sql jobs


--select * from sys.master_files order by physical_name

select * from dbo.sysjobs
select * from dbo.sysmaintplan_subplans

delete from dbo.sysmaintplan_subplans where subplan_id='7659F4CD-F98D-4F28-9372-5DBDC0BE168D'

delete from dbo.sysmaintplan_log where subplan_id='7659F4CD-F98D-4F28-9372-5DBDC0BE168D'

--sp_help sysmaintplan_subplans

delete from sysjobs where job_id='B3FECCA3-A0D2-4BEA-88D6-685EBE2F1164'

Tuesday, April 30, 2013

BizTalk 2013 and SharePoint 2013

There is no need to install the sharepoint web service adapter...the default biztalk installation already get the connectivity to sharepoint 2013 without installing anything on the sharepoint server :-)

Thursday, March 14, 2013

Sharepoint 2010 Secure Store: An error occurred during the “Generate Key” process. Please try again or contact your administrator | Sharepoint Consultant, Automation & Stuff

Sharepoint 2010 Secure Store: An error occurred during the “Generate Key” process. Please try again or contact your administrator | Sharepoint Consultant, Automation & Stuff: "– In my case the ‘Sharepoint Webservices Root’ application pool had stopped on one of my app servers
"

'via Blog this'

Reporting Service doesn't appear under services on sharepoint 2013

Installed SQL Server 2012 reporting service with SP1 however the SQL reporting service is not shown under the manage services on server page, some mentioned that you might have to reinstall SP1 however I wasn't able to do that since it is already SP1.
finally I started the central administration service on the reporting server and access the central admin page from there, wow....it finally works. not sure why yet.

Sunday, January 13, 2013

CAS SSO | Jasig Community

CAS | Jasig Community:

Welcome to the home of the Central Authentication Service project, more commonly referred to as CAS. CAS is an authentication system originally created by Yale University to provide a trusted way for an application to authenticate a user. CAS became a Jasig project in December 2004.

Elevating LLM Deployment with FastAPI and React: A Step-By-Step Guide

  In a   previous exploration , I delved into creating a Retrieval-Augmented-Generation (RAG) demo, utilising Google’s gemma model, Hugging ...