IIS數(shù)據(jù)庫(kù)連接失敗是什么原因
有網(wǎng)友遇到IIS數(shù)據(jù)庫(kù)連接失敗情況,不知道怎么解決,網(wǎng)絡(luò)連接沒(méi)問(wèn)題可以排除,那么是什么原因呢?下面一起看看IIS數(shù)據(jù)庫(kù)連接失敗問(wèn)題的解決方法!
方法步驟:
@echo off
echo 正在清除系統(tǒng)垃圾文件,請(qǐng)稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 清除系統(tǒng)垃圾文件完成!
echo. & pause
以上批處理中有一句是rd /s /q %windir%\temp & md %windir%\temp
將temp文件夾用RD命令刪除,再用MD創(chuàng)建,這樣會(huì)導(dǎo)致權(quán)限問(wèn)題!
懷疑原因可能出在IIS設(shè)置上,仔細(xì)檢查數(shù)遍,兼網(wǎng)站目錄權(quán)限,未發(fā)現(xiàn)問(wèn)題。
再在互聯(lián)網(wǎng)上搜索,發(fā)現(xiàn)一案例,因使用批處理命令刪除臨時(shí)文件夾,出現(xiàn)相同癥狀,恍然大悟,一定是臨時(shí)文件夾權(quán)限問(wèn)題。
在NTFS格式下,temp目錄的權(quán)限肯定會(huì)改變,由于數(shù)據(jù)庫(kù)操作時(shí)需要使用temp目錄作緩存進(jìn)行數(shù)據(jù)交換,當(dāng)權(quán)限不足時(shí)就出現(xiàn):“數(shù)據(jù)庫(kù)連接出錯(cuò),請(qǐng)檢查連接字串。”的錯(cuò)誤提示。 修正temp權(quán)限后再試,ok了
找到temp目錄:C:\WINDOWS\這里即可找到。 給temp文件夾加上guests組的權(quán)限就OK了,我IIS用戶是屬于GUESTS組的,所以加GUESTS 加上以后,測(cè)試,OK.系統(tǒng)之家問(wèn)題解決完畢。你試試
補(bǔ)充:MySQL 數(shù)據(jù)庫(kù)常用命令
create database name; 創(chuàng)建數(shù)據(jù)庫(kù)
use databasename; 進(jìn)入數(shù)據(jù)庫(kù)
drop database name 直接刪除數(shù)據(jù)庫(kù),不提醒
show tables; 顯示表
describe tablename; 查看表的結(jié)構(gòu)
select 中加上distinct去除重復(fù)字段
mysqladmin drop databasename 刪除數(shù)據(jù)庫(kù)前,有提示。
顯示當(dāng)前mysql版本和當(dāng)前日期
select version(),current_date;
數(shù)據(jù)庫(kù)維護(hù)方法
在MySQL使用的過(guò)程中,在系統(tǒng)運(yùn)行一段時(shí)間后,可能會(huì)產(chǎn)生碎片,造成空間的浪費(fèi),所以有必要定期的對(duì)MySQL進(jìn)行碎片整理。
當(dāng)刪除id=2的記錄時(shí)候,發(fā)生的現(xiàn)象
這個(gè)時(shí)候發(fā)現(xiàn)磁盤(pán)的空間并沒(méi)有減少。這種現(xiàn)象就叫做碎片化(有一部分的磁盤(pán)空間在數(shù)據(jù)刪除以后(空),還是無(wú)法被操作系統(tǒng)所使用。)
常見(jiàn)的優(yōu)化:
# alter table xxx engine myisam;
# optimize table t1;
注意: 在實(shí)際開(kāi)發(fā)的過(guò)程中,上面兩個(gè)語(yǔ)句盡量少使用,因?yàn)樵谑褂玫倪^(guò)程中,MySQL的表的結(jié)構(gòu)會(huì)整體全部重新整理,需要消耗很多的資源,建議在凌晨?jī)扇c(diǎn)鐘的時(shí)候執(zhí)行。(在linux下有定時(shí)器腳本可以執(zhí)行,crontab)
IIS數(shù)據(jù)庫(kù)相關(guān)文章:
1.Linux系統(tǒng)如何設(shè)置.net IIS元數(shù)據(jù)庫(kù)的讀訪問(wèn)權(quán)