Tá dando erro
MySQL: got error 28 from server handler
ou
Obteve erro 28 no manipulador de tabelas
Verifique os discos que o mysql está utilizando, provavelmente algum está sem espaço
Tá dando erro
MySQL: got error 28 from server handler
ou
Obteve erro 28 no manipulador de tabelas
Verifique os discos que o mysql está utilizando, provavelmente algum está sem espaço
Após configurar o servidor ntp no windows, no meu caso é o a.ntp.br, execute o comando
w32tm /resync
isso fará com que o windows sincronize a hora com o servidor ntp configurado nele
Por padrão o IIS 6 faz criptografia do SSL em 128 bits
para aumentar para 256, faça os seguintes passos
1) Instale o seguinte hotfix da microsoft:
http://support.microsoft.com/kb/948963
O download direto pode ser feito nesse link ou nesse
2) Abra o regedit.exe, vá até a seguinte chave
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers
No registro AES 128/128 crie um novo registro com o valor DWORD, coloque o nome de “enabled”, configure com o valor 0 para ele, isso fará com que o AES 128 seja desabilitado.
3) Reinicie o IIS e faça um novo teste
Fonte: http://blogs.msdn.com/b/asiatech/archive/2009/11/11/how-to-use-256-bit-ssl-in-iis-6-0.aspx
Estava com esse problema qunado rodava umam query no sql server 2008, tentei fazer um monte de coisa, como desanexar o banco e apagar o log, limpar o transaction log e dar um shrink nele, mas mesmo assim não funcionou.
The transaction log for database ‘mydatabase’ is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases
O que realmente funcinou foi o seguinte, aumentei o tamanho do log do banco para 100MB, executei a query que fazia o erro acontecer, que dessa vez funcionou, após dei o shrink no log do banco para não ficar gigantesco, e então reduzi o tamanho do espaço para log do banco.
Tu tem uma aplicação em asp.net que tenta fazer conexão com o banco de dados, mas quando acessa ela ocorre o erro
The entry ‘connectionString’ has already been added.
Faz o seguinte, no teu web.config, antes do elemento <add/> da configuração da conexão, insere um <clear/>, ficando algo como
<clear/>
<add name=”connectionString”…
Após recicla a pool de aplicativo que teu site utiliza e faz um novo teste.
Comando para configurar crontabs por linha de comando no windows
C:\>schtasks /?
Baahhh, achei um site bem legal, tu informa uma palavra ou frase em inglês, então tu escolhe um falador pra te falar a frase, só que tu tem como escolher faladores de lugares diferentes, como UK, USA e Austrália, então tu fica sabendo como se fala uma palavra em diferentes lugares, de acordo com o sotaque da região que tu escolher.
http://www.oddcast.com/home/demos/tts/tts_example.php
Esse erro estava ocorrendo quando tinha recém instalado o asp.net em um windows 2003.
Unable to make the session state request to the session state server.
Please ensure that the ASP.NET State service is started and that the client and server ports are the same.
If the server is on a remote machine, please ensure that it accepts remote requests by checking the value of HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\aspnet_state\Parameters\AllowRemoteConnection.
If the server is on the local machine, and if the before mentioned registry value does not exist or is set to 0, then the state server connection string must use either ‘localhost’ or ’127.0.0.1′ as the server name.
A solução que achei foi a seguinte: ativar o “ASP.NET State Service”, nos serviços do servidor, em ferramentas administrativas, no painel de controle. Configura ele para iniciar automaticamente, e inicia o serviço, reinicia o IIS e faz um novo teste, depois disso deve funcionar.
<%@ Page Language=”VB” %>
<html> <head> <title>ASP.NET Hello World</title> </head> <body bgcolor=”#FFFFFF”>
<%= “Hello World!” %>
</body> </html>