search for: somepwd

Displaying 2 results from an estimated 2 matches for "somepwd".

Did you mean: somepid
2007 Nov 19
3
virt-install complains about vnc-password not being set
...self) libvirt.libvirtError: virDomainCreateLinux() failed POST operation failed: (xend.err ''Error creating domain: vncpasswd is not set up in VMconfig and xend-config.'') I have set the vncpassword property as follows: # svccfg -s xvm/xend setprop config/vncpasswd = astring: \”somepwd\” # svcadm refresh xvm/xend; svcadm restart xvm/xend # svccfg -s xvm/xend setprop config/vnc-listen = astring: \”0.0.0.0\” # svcadm refresh xvm/xend; svcadm restart xvm/xend Is there something particular I need to set the password to? Im not really concerned with authentication at the moment so...
2006 Nov 04
0
Weak DBI support for MSSQL (was rails and MSSQL transactions)
...wrong with DBI support for SQL server. I have tried both DBI::ODBC and DBI:ADO and the following code always fails. ---------- Code require ''dbi'' host= "DEVELOPMENT_DATABASE_SERVER" database="adventureworks2000" username="someusername" password="Somepwd" db = DBI.connect("DBI:ADO:Provider=SQLOLEDB;Data Source=#{host};Initial Catalog=#{database};User Id=#{username};Password=#{password};") sql= ''Select FirstName, LastName from contact'' sth = db.prepare(sql) sth.execute # Print out each row while row=sth.fetch do...