5L中DST密码问题Windows系统

时间:2023-08-15 08:31:08 其他范文 收藏本文 下载本文

5L中DST密码问题Windows系统(精选9篇)由网友“lq899”投稿提供,这里给大家推荐分享一些5L中DST密码问题Windows系统,供大家参考。

5L中DST密码问题Windows系统

篇1:5L中DST密码问题Windows系统

5.1的DST密码被改了,现在把密码忘了,怎么把密码取出

chenzt 回复于:-12-09 11:02:33CHGDSTPWD *DEFAULT

coolfox 回复于:2002-12-09 11:12:00需要用QSECOFR用户,而且新的密码不能与以前所用的相同

hsldj 回复于:2002-12-09 11:20:57现在可以了,谢谢

hanyu 回复于:2002-12-09 14:23:245 分

原文转自:www.ltesting.net

篇2:Windows系统密码的找回

一、利用NET命令

我们知道在Windows XP中提供了“net user”命令,该命令可以添加、修改用户账户信息,其语法格式为:

net user [UserName [Password | *] [options]] [/domain]

net user [UserName {Password | *} /add [options] [/domain]

net user [UserName [/delete] [/domain]]

每个参数的具体含义在Windows XP帮助中已做了详细的说明,在此笔者就不多阐述了,好了,我们现在以恢复本地用户“zhangbq”口令为例,来说明解决忘记登录密码的步骤:

1、重新启动计算机,在启动画面出现后马上按下F8键,选择“带命令行的安全模式”。

2、运行过程结束时,系统列出了系统超级用户“administrator”和本地用户“zhangbq”的选择菜单,鼠标单击“administrator”,进入命令行模式。

3、键入命令:“net user zhangbq 123456 /add”,强制将“zhangbq”用户的口令更改为“123456”。若想在此添加一新用户(如:用户名为abcdef,口令为123456)的话,请键入“net user abcdef 123456 /add”,添加后可用“net localgroup administrators abcdef /add”命令将用户提升为系统管理组“administrators”的用户,并使其具有超级权限,

4、重新启动计算机,选择正常模式下运行,就可以用更改后的口令“123456”登录“zhangbq”用户了。

二、利用“administrator”

我们知道在安装Windows XP过程中,首先是以“administrator”默认登录,然后会要求创建一个新账户,以便进入Windows XP时使用此新建账户登录,而且在Windows XP的登录界面中也只会出现创建的这个用户账号,不会出现“administrator”,但实际上该“administrator”账号还是存在的,并且密码为空。

当我们了解了这一点以后,假如忘记了登录密码的话,在登录界面上,按住Ctrl+Alt键,再按住Del键二次,即可出现经典的登录画面,此时在用户名处键入“administrator”,密码为空进入,然后再修改“zhangbp”的口令即可。

怎么样,忘记Windows XP登录密码的用户还不赶快动手试一试。

篇3:5L下HTTPServer的配置文档及简要说明Windows系统

[这个贴子最后由燕狂徒在/12/3001:27pm编辑] 一般HTTPServer刚装好后,必须修改的几个地方是 BindAddress*#刚安装好的时候这个前面有#配置的时候去掉(我新装了一台机器是打开的:) ServerNameaix#这个是你的机器名,如果有dns设成域名即可,必须要设

[这个贴子最后由燕狂徒在 2002/12/30 01:27pm 编辑]

一般HTTPServer刚装好后,必须修改的几个地方是

BindAddress *  #刚安装好的时候这个前面有#配置的时候去掉(我新装了一台机器是打开的:)

ServerName aix   #这个是你的机器名,如果有dns设成域名即可,必须要设置

Port 80   #这一行好像安装完后是被禁止的,一定打开(这个也是打开的)

一般设置了ServerName就可以通过ip地址访问了

HTTPServer的安装文档在随机光盘里标着Expansion pack的那张光盘,跟netscape一起

或者down个apache也一样

下面是具体的配置文件

##

## httpd.conf -- Apache HTTP server configuration file

##

# This is the main server configuration file. See URL www.apache.org/

# for instructions.

# Do NOT simply read the instructions in here without understanding

# what they do, if you are unsure consult the online docs. You have been

# warned.

# Originally by Rob McCool

# These two directives are used to combine the three config files into one.

# The three config files are a legacy setup and are not needed.

AccessConfig /dev/null

ResourceConfig /dev/null

# ServerRoot: The directory the server's config, error, and log files

# are kept in.

# NOTE!  If you intend to place this on a NFS (or otherwise network)

# mounted filesystem then please read the LockFile documentation,

# you will save yourself a lot of trouble.

ServerRoot /usr/HTTPServer      #注意这个是你HTTPServer安装的目录,如果装apache目录会不同,不用修改

# Dynamic Shared Object (DSO) Support

#

# To be able to use the functionality of a module whichwasbuilt as a DSO you

# have to place corresponding `LoadModule' lines at this location so the

# directives contained in it are actually available _before_ they are used.

# Please read the file README.DSO in the Apache 1.3 distribution for more

# details about the DSO mechanism and run `httpd -l' for the list of already

# built-in (statically linked and thus always available) modules in your httpd

# binary.

#

# Example:

# LoadModule foo_module libexec/mod_foo.so

LoadModule env_module         libexec/mod_env.so

LoadModule config_log_module  libexec/mod_log_config.so

LoadModule mime_magic_module  libexec/mod_mime_magic.so

LoadModule mime_module        libexec/mod_mime.so

LoadModule negotiation_module libexec/mod_negotiation.so

#LoadModule status_module      libexec/mod_status.so

LoadModule includes_module    libexec/mod_include.so

LoadModule autoindex_module   libexec/mod_autoindex.so

LoadModule dir_module         libexec/mod_dir.so

LoadModule cgi_module         libexec/mod_cgi.so

LoadModule asis_module        libexec/mod_asis.so

LoadModule imap_module        libexec/mod_imap.so

LoadModule action_module      libexec/mod_actions.so

#LoadModule speling_module     libexec/mod_speling.so

#LoadModule proxy_module       libexec/libproxy.so

LoadModule userdir_module     libexec/mod_userdir.so

LoadModule alias_module       libexec/mod_alias.so

LoadModule rewrite_module     libexec/mod_rewrite.so

LoadModule access_module      libexec/mod_access.so

LoadModule auth_module        libexec/mod_auth.so

#LoadModule anon_auth_module   libexec/mod_auth_anon.so

LoadModule dbm_auth_module    libexec/mod_auth_dbm.so

#LoadModule cern_meta_module   libexec/mod_cern_meta.so

#LoadModule expires_module     libexec/mod_expires.so

#LoadModule headers_module     libexec/mod_headers.so

#LoadModule usertrack_module   libexec/mod_usertrack.so

LoadModule unique_id_module   libexec/mod_unique_id.so

LoadModule setenvif_module    libexec/mod_setenvif.so

LoadModuleweblogic_module    libexec/mod_wl.so

#  Reconstruction of the complete module list from all available modules

#  (static and shared ones) to achieve correct module execution order.

#  [WHENEVER YOU CHANGE THE LOADMODULE SECTION ABOVE UPDATE THIS, TOO]

ClearModuleList

AddModule mod_so.c

AddModule mod_env.c

AddModule mod_log_config.c

AddModule mod_mime_magic.c

AddModule mod_mime.c

AddModule mod_negotiation.c

#AddModule mod_status.c

AddModule mod_include.c

AddModule mod_autoindex.c

AddModule mod_dir.c

AddModule mod_cgi.c

AddModule mod_asis.c

AddModule mod_imap.c

AddModule mod_actions.c

#AddModule mod_speling.c

#AddModule mod_proxy.c

AddModule mod_userdir.c

AddModule mod_alias.c

AddModule mod_rewrite.c

AddModule mod_access.c

AddModule mod_auth.c

#AddModule mod_auth_anon.c

AddModule mod_auth_dbm.c

#AddModule mod_cern_meta.c

#AddModule mod_expires.c

#AddModule mod_headers.c

#AddModule mod_usertrack.c

AddModule mod_unique_id.c

AddModule mod_setenvif.c

AddModule mod_weblogic.c

# ServerType is either inetd, or standalone.

ServerType standalone

# If you are running from inetd, go to “ServerAdmin”.

# Port: The port the standalone listens to. For ports < 1023, you will

# need httpd to be run as root initially.

Port 80   #这一行好像安装完后是被禁止的,一定打开

# Listen: The Listen directive is required only if the server will

# be listening on more than 1 port.

#Listen 80

# HostnameLookups: Log the names of clients or just their IP numbers

#   e.g.   www.apache.org (on) or 204.62.129.132 (off)

# The default is off because it'd be overall better for the net if people

# had to knowingly turn this feature on.

HostnameLookups off

# If you wish httpd to run as a different user or group, you must run

# httpd as root initially and it will switch.

# User/Group: The name (or #number) of the user/group to run httpd as.

#  On SCO (ODT 3) use User nouser and Group nogroup

#  On HPUX you may not be able to use shared memory as nobody, and the

#  suggested workaround is to create a user www and use that user.

#  NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)

#  when the value of (unsigned)Group is above 60000;

#  don't use Group #-1 on these systems!

User nobody

Group nobody

# ServerAdmin: Your address, where problems with the server should be

# e-mailed.

ServerAdmin you@your.address

# BindAddress: You can support virtual hosts with this option. This option

# is used to tell the server which IP address to listen to. It can either

# contain “*”, an IP address, or a fully qualified Internet domain name.

# See also the VirtualHost directive.

BindAddress *    #刚安装好的时候这个前面有#配置的时候去掉

# ErrorLog: The location of the error log file. If this does not start

# with /, ServerRoot is prepended to it.

ErrorLog /usr/HTTPServer/logs/error_log

# LogLevel: Control the number of messages logged to the error_log.

# Possible values include: debug, info, notice, warn, error, crit,

# alert, emerg.

LogLevel warn

# The following directives define some format nicknames for use with

# a CustomLog directive (see below).

LogFormat “%h %l %u %t \”%r\“ %>s %b \”%{Referer}i\“ \”%{User-Agent}i\“” combined

LogFormat “%h %l %u %t \”%r\“ %>s %b” common

LogFormat “%{Referer}i -> %U” referer

LogFormat “%{User-agent}i” agent

# The location of the access logfile (Common Logfile Format).

# If this does not start with /, ServerRoot is prepended to it.

CustomLog /usr/HTTPServer/logs/access_log common

# If you would like to have an agent and referer logfile uncomment the

# following directives.

#CustomLog /usr/HTTPServer/logs/referer_log referer

#CustomLog /usr/HTTPServer/logs/agent_log agent

# If you prefer a single logfile with access, agent and referer information

# (Combined Logfile Format) you can use the following directive.

#CustomLog /usr/HTTPServer/logs/access_log combined

# PidFile: The file the server should log its pid to

PidFile /usr/HTTPServer/logs/httpd.pid

# ScoreBoardFile: File used to store internal server process information.

# Not all architectures require this.  But if yours does (you'll know because

# this file is created when you run Apache) then you *must* ensure that

# no two invocations of Apache share the same scoreboard file.

ScoreBoardFile /usr/HTTPServer/logs/httpd.scoreboard

# The LockFile directive sets the path to the lockfile used when Apache

# is compiled with either USE_FCNTL_SERIALIZED_ACCEPT or

# USE_FLOCK_SERIALIZED_ACCEPT. This directive should normally be left at

# its default value. The main reason for changing it is if the logs

# directory is NFS mounted, since the lockfile MUST BE STORED ON A LOCAL

# DISK. The PID of the main server process is automatically appended to

# the filename.

#

#LockFile /usr/HTTPServer/logs/httpd.lock

# ServerName allows you to set a host name which is sent back to clients for

# your server if it's different than the one the program would get (i.e. use

# “www” instead of the host's real name).

#

# Note: You cannot just invent host names and hope they work. The name you

# define here must be a valid DNS name for your host. If you don't understand

# this, ask your network administrator.

ServerName aix   #这个是你的机器名,如果有dns设成域名即可

# UseCanonicalName:  (new for 1.3)  With this setting turned on, whenever

# Apache needs to construct a self-referencing URL (a url that refers back

# to the server the response is coming from) it will use ServerName and

# Port to form a “canonical” name.  With this setting off, Apache will

# use the hostname:port that the client supplied, when possible.  This

# also affects SERVER_NAME and SERVER_PORT in CGIs.

UseCanonicalName on

# CacheNegotiatedDocs: By default, Apache sends Pragma: no-cache with each

# document that was negotiated on the basis of content. This asks proxy

# servers not to cache the document. Uncommenting the following line disables

# this behavior, and proxies will be allowed to cache the documents.

#CacheNegotiatedDocs

# Timeout: The number of seconds before receives and sends time out

Timeout 300

# KeepAlive: Whether or not to allow persistent connections (more than

# one request per connection). Set to “Off” to deactivate.

KeepAlive On

# MaxKeepAliveRequests: The maximum number of requests to allow

# during a persistent connection. Set to 0 to allow an unlimited amount.

# We reccomend you leave this number high, for maximum performance.

MaxKeepAliveRequests 100

# KeepAliveTimeout: Number of seconds to wait for the next request

KeepAliveTimeout 15

# Server-pool size regulation.  Rather than making you guess how many

# server processes you need, Apache dynamically adapts to the load it

# sees --- that is, it tries to maintain enough server processes to

# handle the current load, plus a few spare servers to handle transient

# load spikes (e.g., multiple simultaneous requests from a single

# Netscape browser).

# It does this by periodically checking how many servers are waiting

# for a request.  If there are fewer than MinSpareServers, it creates

# a new spare.  If there are more than MaxSpareServers, some of the

# spares die off.  These values are probably OK for most sites ---

MinSpareServers 5

MaxSpareServers 10

# Number of servers to start --- should be a reasonable ballpark figure.

StartServers 5

# Limit on total number of servers running, i.e., limit on the number

# of clients who can simultaneously connect --- if this limit is ever

# reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW.

# It is intended mainly as a brake to keep a runaway server from taking

#Unixwith it as it spirals down...

MaxClients 150

# MaxRequestsPerChild: the number of requests each child process is

#  allowed to process before the child dies.

#  The child will exit so as to avoid problems after prolonged use when

#  Apache (and maybe the libraries it uses) leak.  On most systems, this

#  isn't really needed, but a few (such as Solaris) do have notable leaks

#  in the libraries.

MaxRequestsPerChild 10000

# Listen: Allows you to bind Apache to specific IP addresses and/or

# ports, in addition to the default. See also the VirtualHost command

#Listen 3000

#Listen 12.34.56.78:80

# VirtualHost: Allows the daemon to respond to requests for more than one

# server address, if your server machine is configured to accept IP packets

# for multiple addresses. This can be accomplished with the ifconfig

# alias flag, or through kernel patches like VIF.

# Any httpd.conf or srm.conf directive may go into a VirtualHost command.

# See also the BindAddress entry.

#

#ServerAdmin webmaster@host.some_domain.com

#DocumentRoot /www/docs/host.some_domain.com

#ServerName host.some_domain.com

#ErrorLog logs/host.some_domain.com-error_log

#TransferLog logs/host.some_domain.com-access_log

#

# Each directory to which Apache has access, can be configured with respect

# to which services and features are allowed and/or disabled in that

# directory (and its subdirectories).

# First, we configure the “default” to be a very restrictive set of

# permissions.

Options FollowSymLinks

AllowOverride None

# Note that from this point forward you must specifically allow

# particular features to be enabled - so if something's not working as

# you might expect, make sure that you have specifically enabled it

# below.

# This should be changed to whatever you set DocumentRoot to.

   # 这一行设置了你的文档目录

# This may also be “None”, “All”, or any combination of “Indexes”,

# “Includes”, “FollowSymLinks”, “ExecCGI”, or “MultiViews”.

# Note that “MultiViews” must be named *explicitly* --- “Options All”

# doesn't give it to you.

#Options Indexes FollowSymLinks

# This controls which options the .htaccess files in directories can

# override. Can also be “All”, or any combination of “Options”, “FileInfo”,

# “AuthConfig”, and “Limit”

AllowOverride None

# Controls who can get stuff from this server.

order allow,deny

allow from all

# /usr/HTTPServer/cgi-bin should be changed to whatever your ScriptAliased

# CGI directory exists, if you have that configured.

AllowOverride None

Options None

# ScriptAlias: This controls which directories contain server scripts.

# Format: ScriptAlias fakename realname

ScriptAlias /cgi-bin/ /usr/HTTPServer/cgi-bin/

# Allow server status reports, with the URL of servername/server-status

# Change the “.your_domain.com” to match your domain to enable.

#

#SetHandler server-status

#order deny,allow

#deny from all

#allow from .your_domain.com

#

# There have been reports of people trying to abuse an old bug from pre-1.1

# days.  This bug involved a CGI script distributed as a part of Apache.

# By uncommenting these lines you can redirect these attacks to a logging

# script on phf.apache.org.  Or, you can record them yourself, using the script

# support/phf_abuse_log.cgi.

#

#deny from all

#ErrorDocument 403 phf.apache.org/phf_abuse_log.cgi

#

# You may place any other directories or locations you wish to have

# access information for after this one.

# With this document, you define the name space that users see of your http

# server.  This file also defines server settings which affect how requests are

# serviced, and how results should be formatted.

# See the tutorials at www.apache.org/ for

# more information.

# Originally by Rob McCool; Adapted for Apache

# DocumentRoot: The directory out of which you will serve your

# documents. By default, all requests are taken from this directory, but

# symbolic links and aliases may be used to point to other locations.

DocumentRoot /usr/HTTPServer/htdocs  #文档目录

# UserDir: The name of the directory which is appended onto a user's home

# directory if a ~user request is recieved.

UserDir public_html

# DirectoryIndex: Name of the file or files to use as a pre-written HTML

# directory index.  Separate multiple entries with spaces.

DirectoryIndex index.jsp index.html #默认的首页文档

# FancyIndexing is whether you wantfancy directory indexing or standard

FancyIndexing on

# IndexIgnore is a set of filenames which directory indexing should ignore

# Format: IndexIgnore name1 name2...

IndexIgnore .??* *~ *# HEADER* README* RCS

# AccessFileName: The name of the file to look for in each directory

# for access control information.

AccessFileName .htaccess

# DefaultType is the defaultMIME type for documents which the server

# cannot find the type of from filename extensions.

DefaultType text/plain

# AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress

# information on the fly. Note: Not all browsers support this.

AddEncoding x-compress Z

AddEncoding x-gzip gz

# AddLanguage allows you to specify the language of a document. You can

# then use content negotiation to give a browser a file in a language

# it can understand.  Note that the suffix does not have to be the same

# as the language keyword --- those with documents in Polish (whose

# net-standard language code is pl) may wish to use “AddLanguage pl .po”

# to avoid the ambiguity with the common suffix for perl scripts.

AddLanguage en .en

AddLanguage fr .fr

AddLanguage de .de

AddLanguage it .it

AddLanguage ko .ko

AddLanguage es .es

AddLanguage ja .ja

AddLanguage zh-CN .cn

AddLanguage zh-TW .tw

AddLanguage pt-BR .pt

# LanguagePriority allows you to give precedence to some languages

# in case of a tie during content negotiation.

# Just list the languages in decreasing order of preference.

LanguagePriority en

AddDefaultCharset off   #这个很重要,手工添加,如果不加你的浏览器浏览的时候可能默认不会显示中文:)

# Redirect allows you to tell clients about documents which used to exist in

# your server's namespace, but do not anymore. This allows you to tell the

# clients where to look for the relocated document.

# Format: Redirect fakename url

# Aliases: Add here as many aliases as you need (with no limit). The format is

# Alias fakename realname

# Note that if you include a trailing / on fakename then the server will

# require it to be present in the URL.  So “/icons” isn't aliased in this

# example.

Alias /icons/ /usr/HTTPServer/icons/

# If you want to use server side includes, or CGI outside

# ScriptAliased directories, uncomment the following lines.

# AddType allows you to tweak mime.types without actually editing it, or to

# make certain files to be certain types.

# Format: AddType type/subtype ext1

# For example, thePHP3 module (not part of the Apache distribution)

# will typically use:

#AddType application/x-httpd-php3 .phtml

#AddType application/x-httpd-php3-source .phps

# AddHandler allows you to map certain file extensions to “handlers”,

# actions unrelated to filetype. These can be either built into the server

# or added with the Action command (see below)

# Format: AddHandler action-name ext1

# To use CGI scripts:

AddHandler cgi-script .cgi

# To use server-parsed HTML files

AddType text/html .shtml

AddHandler server-parsed .shtml

# Uncomment the following line to enable Apache's send-asis HTTP file

# feature

#AddHandler send-as-is asis

# If you wish to use server-parsed imagemap files, use

#AddHandler imap-file map

# To enable type maps, you might want to use

#AddHandler type-map var

# Action lets you define media types that will execute a script whenever

# a matching file is called. This eliminates the need for repeated URL

# pathnames for oft-used CGI file processors.

# Format: Action media/type /cgi-script/location

# Format: Action handler-name /cgi-script/location

# MetaDir: specifies the name of the directory in which Apache can find

# meta information files. These files contain additional HTTP headers

# to include when sending the document

#MetaDir .web

# MetaSuffix: specifies the file name suffix for the file containing the

# meta information.

#MetaSuffix .meta

# Customizable error response (Apache style)

#  these come in three flavors

#

#    1) plain text

#ErrorDocument 500 “The server made a boo boo.

#  n.b.  the ("marks it as text, it does not get output

#

#    2) local redirects

#ErrorDocument 404 /missing.html

#  to redirect to local url /missing.html

#ErrorDocument 404 /cgi-bin/missing_handler.pl

#  n.b. can redirect to a script or a document using server-side-includes.

#

#    3) external redirects

#ErrorDocument 402 some.other_server.com/subscription_info.html

#

# mod_mime_magic allows the server to use various hints from the file itself

# to determine its type.

#MimeMagicFile /usr/HTTPServer/conf/magic

# AddIcon tells the server which icon to show for different files or filename

# extensions

AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip

AddIconByType (TXT,/icons/text.gif) text/*

AddIconByType (IMG,/icons/image2.gif) image/*

AddIconByType (SND,/icons/sound2.gif) audio/*

AddIconByType (VID,/icons/movie.gif) video/*

AddIcon /icons/binary.gif .bin .exe

AddIcon /icons/binhex.gif .hqx

AddIcon /icons/tar.gif .tar

AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv

AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip

AddIcon /icons/a.gif .ps .ai .eps

AddIcon /icons/layout.gif .html .shtml .htm .pdf

AddIcon /icons/text.gif .txt

AddIcon /icons/c.gif .c

AddIcon /icons/p.gif .pl .py

AddIcon /icons/f.gif .for

AddIcon /icons/dvi.gif .dvi

AddIcon /icons/uuencoded.gif .uu

AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl

AddIcon /icons/tex.gif .tex

AddIcon /icons/bomb.gif core

AddIcon /icons/back.gif ..

AddIcon /icons/hand.right.gif README

AddIcon /icons/folder.gif ^^DIRECTORY^^

AddIcon /icons/blank.gif ^^BLANKICON^^

# DefaultIcon is which icon to show for files which do not have an icon

# explicitly set.

DefaultIcon /icons/unknown.gif

# AddDescription allows you to place a short description after a file in

# server-generated indexes.

# Format: AddDescription ”description“ filename

# ReadmeName is the name of the README file the server will look for by

# default. Format: ReadmeName name

#

# The server will first look for name.html, include it if found, and it will

# then look for name and include it as plaintext if found.

#

# HeaderName is the name of a file which should be prepended to

# directory indexes.

ReadmeName README

HeaderName HEADER

# The following directives disable keepalives and HTTP header flushes.

# The first directive disables it for Netscape 2.x and browsers which

# spoof it. There are known problems with these.

# The second directive is for Microsoft Internet Explorer 4.0b2

# which has a broken HTTP/1.1 implementation and does not properly

# support keepalive when it is used on 301 or 302 (redirect) responses.

BrowserMatch ”Mozilla/2“ nokeepalive

BrowserMatch ”MSIE 4\.0b2;“ nokeepalive downgrade-1.0 force-response-1.0

# The following directive disables HTTP/1.1 responses to browsers which

# are in violation of the HTTP/1.0 spec by not being able to grok a

# basic 1.1 response.

BrowserMatch ”RealPlayer 4\.0“ force-response-1.0

BrowserMatch ”Java/1\.0“ force-response-1.0

BrowserMatch ”JDK/1\.0“ force-response-1.0

# Page to display indicating the Administration Server is not installed

ErrorDocument 404 /9ainterim.htm

# CoreDumpDirectory directory: Sets the location where the server will

# attempt to put a core dump. The default location is the ServerRoot.

#

#CoreDumpDirectory /tmp

workaholic 回复于:2002-12-18 12:03:16好同志!

ibm6000 回复于:2002-12-18 12:14:21

大猫 回复于:2002-12-18 12:24:41very good! save it!

wasp 回复于:2002-12-18 12:26:52好文章,学习中……

alstone 回复于:2002-12-18 12:53:15建议加到精华区哦.

freebob 回复于:2002-12-18 14:52:59这是什么错?

httpd start

exec: 0509-036 Cannot load program httpd because of the following errors:

0509-130 Symbol resolution failed for /usr/local/apache2/lib/libapr.so because:

0509-136   Symbol isinf (number 121) is not exported from

dependent module /usr/lib/libc.a(shr.o).

0509-192 Examine .loader section symbols with the

'dump -Tv' command.

ls -l

total 10096

-rw-r--r--   1 root     system      6954 Sep 24 20:28 apr.exp

-rw-r--r--   1 root     system      3431 Sep 24 20:28 aprutil.exp

-rw-r--r--   1 root     system       348 Sep 24 20:28 APRVARS

-rw-r--r--   1 root     system   2713969 Sep 24 20:28 libapr.a

-rw-r--r--   1 root     system       725 Sep 24 20:28 libapr.la

lrwxrwxrwx   1 root     system        15 Dec 18 14:46 libapr.so@ -> libapr.so.0.0.0*

lrwxrwxrwx   1 root     system        15 Dec 18 13:44 libapr.so.0@ -> libapr.so.0.0.0*

-rwxr-xr-x   1 root     system   1334958 Sep 24 20:28 libapr.so.0.0.0*

-rwxr-xr-x   1 root     system    705317 Sep 17 23:34 libaprutil.so*

-rwxr-xr-x   1 root     system    381701 Sep 24 20:28 libexpat.a*

-rwxr-xr-x   1 root     system       688 Sep 24 20:28 libexpat.la*

jbuilder7 回复于:2002-12-19 08:37:48对我也很是有帮助啊

limingtian 回复于:2002-12-19 10:20:02好东东,在那里看到学习文档的?

wolf2602 回复于:2002-12-21 10:28:58好东西,收藏!

jiazhao688 回复于:2002-12-23 13:00:56good boy!!!!!!!!!!!!

echo188 回复于:2002-12-27 17:13:06好同志,致敬!

vincentzj 回复于:2002-12-30 15:47:33freebob

你需要安装aix的补丁,我也遇到过这种问题,安装aix补丁最新版本就好

燕狂徒 回复于:2002-12-18 11:44:27

workaholic 回复于:2002-12-18 12:03:16好同志!

ibm6000 回复于:2002-12-18 12:14:21

大猫 回复于:2002-12-18 12:24:41very good! save it!

wasp 回复于:2002-12-18 12:26:52好文章,学习中……

alstone 回复于:2002-12-18 12:53:15建议加到精华区哦.

freebob 回复于:2002-12-18 14:52:59这是什么错?

httpd start

exec(): 0509-036 Cannot load program httpd because of the following errors:

0509-130 Symbol resolution failed for /usr/local/apache2/lib/libapr.so because:

0509-136   Symbol isinf (number 121) is not exported from

dependent module /usr/lib/libc.a(shr.o).

0509-192 Examine .loader section symbols with the

'dump -Tv' command.

ls -l

total 10096

-rw-r--r--   1 root     system      6954 Sep 24 20:28 apr.exp

-rw-r--r--   1 root     system      3431 Sep 24 20:28 aprutil.exp

-rw-r--r--   1 root     system       348 Sep 24 20:28 APRVARS

-rw-r--r--   1 root     system   2713969 Sep 24 20:28 libapr.a

-rw-r--r--   1 root     system       725 Sep 24 20:28 libapr.la

lrwxrwxrwx   1 root     system        15 Dec 18 14:46 libapr.so@ -> libapr.so.0.0.0*

lrwxrwxrwx   1 root     system        15 Dec 18 13:44 libapr.so.0@ -> libapr.so.0.0.0*

-rwxr-xr-x   1 root     system   1334958 Sep 24 20:28 libapr.so.0.0.0*

-rwxr-xr-x   1 root     system    705317 Sep 17 23:34 libaprutil.so*

-rwxr-xr-x   1 root     system    381701 Sep 24 20:28 libexpat.a*

-rwxr-xr-x   1 root     system       688 Sep 24 20:28 libexpat.la*

jbuilder7 回复于:2002-12-19 08:37:48对我也很是有帮助啊

limingtian 回复于:2002-12-19 10:20:02好东东,在那里看到学习文档的?

wolf2602 回复于:2002-12-21 10:28:58好东西,收藏!

jiazhao688 回复于:2002-12-23 13:00:56good boy!!!!!!!!!!!!

echo188 回复于:2002-12-27 17:13:06好同志,致敬!

vincentzj 回复于:2002-12-30 15:47:33freebob

你需要安装aix的补丁,我也遇到过这种问题,安装aix补丁最新版本就好

hwqzju 回复于:-07-13 13:01:41好文章,不过我只能用ip访问,不能用域名访问,不知道为什么

原文转自:www.ltesting.net

篇4:windows系统权限问题

最近在工作中,经常会因为各种系统的访问问题,而遇到很多的权限问题,所以系统的了解下windows 系统的权限问题,也是挺好的,方便解决一些配置问题。

DOS跟WinNT的权限的分别

DOS是个单任务、单用户的操作系统。但是我们能说DOS没有权限吗?不能!当我们打开一台装有DOS操作系统的计算机的时候,我们就拥有了这个操作系统的管理员权限,而且,这个权限无处不在。所以,我们只能说DOS不支持权限的设置,不能说它没有权限。随着人们安全意识的提高,权限设置随着NTFS的发布诞生了。

WindowsNT里,用户被分成许多组,组和组之间都有不同的权限,当然,一个组的用户和用户之间也可以有不同的权限。下面我们来谈谈NT中常见的用户组。

Administrators,管理员组,默认情况下,Administrators中的用户对计算机/域有不受限制的完全访问权。分配给该组的默认权限允许对整个系统进行完全控制。所以,只有受信任的人员才可成为该组的成员。

PowerUsers,高级用户组,Power Users 可以执行除了为 Administrators 组保留的任务外的其他任何操作系统任务,

分配给 PowerUsers 组的默认权限允许 Power Users 组的成员修改整个计算机的设置。但Power Users 不具有将自己添加到 Administrators组的权限。在权限设置中,这个组的权限是仅次于Administrators的。

Users:普通用户组,这个组的用户无法进行有意或无意的改动。因此,用户可以运行经过验证的应用程序,但不可以运行大多数旧版应用程序。Users组是最安全的组,因为分配给该组的默认权限不允许成员修改操作系统的设置或用户资料。Users 组提供了一个最安全的程序运行环境。在经过 NTFS格式化的卷上,默认安全设置旨在禁止该组的成员危及操作系统和已安装程序的完整性。用户不能修改系统注册表设置、操作系统文件或程序文件。Users可以关闭工作站,但不能关闭服务器。Users 可以创建本地组,但只能修改自己创建的本地组。

Guests:来宾组,按默认值,来宾跟普通Users的成员有同等访问权,但来宾帐户的限制更多。

Everyone:顾名思义,所有的用户,这个计算机上的所有用户都属于这个组。

其实还有一个组也很常见,它拥有和Administrators一样、甚至比其还高的权限,但是这个组不允许任何用户的加入,在察看用户组的时候,它也不会被显示出来,它就是SYSTEM组。系统和系统级的服务正常运行所需要的权限都是靠它赋予的。由于该组只有这一个用户SYSTEM,也许把该组归为用户的行列更为贴切。

最后,经常用的是Run as administrator。需要继续深入了解啊。。前面的一些分组,之后也该去深入了解更具体。先说个大概了。。

篇5:内存问题Windows系统

:?:1.如何扩展机器的虚拟内存,使用双屏时占用很多内存,经常运行一段时间后把内存耗光,请问各位怎样才能扩展内存? :?:2.系统分区有一个/proc是起什么作用的?分区时没分这个空间,有什么影响吗? 谢谢各位了!:oops: 飞天二狭 回复于:-10-04 16:06:5

:?: 1.如何扩展机器的虚拟内存,使用双屏时占用很多内存,经常运行一段时间后把内存耗光,请问各位怎样才能扩展内存?

:?: 2.系统分区有一个/proc是起什么作用的?分区时没分这个空间,有什么影响吗?

谢谢各位了! :oops:

飞天二狭 回复于:2004-10-04 16:06:571.增加交换区不能用文件做交换区,只能用文件系统做 :D

:D tru64 4.0

如果增加/dev/rz1b为swap分区

swapon /dev/rz1b

同时要修改/etc/fstab文件,

tru64 5.1

如果增加/dev/disk/dsk1b为swap分区

swapon /dev/disk/dsk1b

同时要修改/etc/sysconfigtab文件

2.proc文件系统是一个伪文件系统,它只存在内存当中,而不占用外存空间,

它以文件系统的方式为访问系统内核数据的操作提供接口。用户和应用程序可以通过proc得到系统的信息,并可以改变内核的某些参数。由于系统的信息,如进程,是动态改变的,所以用户或应用程序读取proc文件时,proc文件系统是动态从系统内核读出所需信息并提交的。分区时是没有这个空间的。

:mrgreen:  :mrgreen:  :mrgreen:  :mrgreen:

richard_cn 回复于:2004-10-05 10:23:21:lol:  楼上的兄弟,谢谢了! :D

sinboy 回复于:2004-10-11 19:02:40谢谢,真是受益匪浅

原文转自:www.ltesting.net

篇6:微码问题。Windows系统

关于前几天B80安装问题终于搞定了,

hehe.不过不是我,是IBM来人弄得。他先把微码给升级了,我感觉就像升级BIOS,

呵呵。然后再进F1的界面,就不是图形的了。是文字的了。然后同样操作步骤,就可以安装了。安装还是比较简单的。也没什么选项,不过中间有一个选成默认的了,就不是全新安装了,成升级了。安装后,所有系统信息啊,文件啊。都没变。呵呵。将就着算成功吧。这几天可以玩一玩了。~~~~~~~~哈哈哈哈哈哈哈哈

原文转自:www.ltesting.net

篇7:在Windows系统中密码设置的几个要点

不到一个星期就发现新的Windows安全漏洞的情况,或多或少地会引起用户的恐慌。如何才能保障系统的安全呢?作为用户,我们虽然不可能重写Windows XP的源代码,但我们还是可以进行一些设定使操作系统变得更安全。而所有的安全设置计划的第一步,就是使用密码来保护系统。现介绍在Windows XP中进行密码的保护,和一些使用方法。

为自己留下线索

Windows XP允许用户创建一个提示,以便在用户忘记密码的时候能够获得一些线索。打开“控制面板”,单击或双击“用户账户”图标,接下来的步骤需要根据您系统的设置来进行。如果您是系统管理员,选择您的账户名后,点击“更改我的密码”或“创建密码”链接(如果您没有设置密码),输入您的当前密码(如果已经设置)、新密码以及密码提示。即使您只是想添加密码提示信息,仍然需要在顶端文本框中输入当前的密码。

注意: 要确保密码提示在不暴露密码的同时,可以帮助您清楚地回忆起密码,因为所有人都能够看到您的密码提示。当您完成以上的操作后,点击“更改密码”或“创建密码”按钮。这样,当再次出现登录时忘记密码的情况,点击密码提示右边的“?”号按钮就可以看到您设定的密码提示了。

防止忘记密码

如果密码提示没有起作用,Windows提供了另外一种解决方法。

打开控制面板,单击或双击“用户账户”图标(根据您的系统的设置)。如果您是系统管理员,点击您的账户名,并且在“用户账户”对话框的左边“相关任务”栏中,找到“阻止一个已忘记的密码”链接。点击这一链接,打开“忘记密码向导”对话框,这一向导将创建一个“密码重设盘”,使您能够在忘记密码时使用此盘创建一个新的密码。 如果您的计算机已经登录到网络域中,注销后重新登录到本机(此方法只适用于Windows登录密码,不适用于域用户密码)。按住“Ctrl+Alt+Delete”组合键,然后点击“更改密码”按钮,最后,点击“备份”按钮启动“忘记密码向导”。

这一向导同时对您提出警告,任何人都可以用密码重设盘来更改密码,并访问您的账户。鉴于这一提示,当您点击“完成”按钮创建完成密码重设盘后,应该将此盘放在一个安全的地方。

寻求具有更高权限用户的帮助

即使您忘记了Windows登录密码,并且没有创建密码重设盘,也不是完全没有可能来解决这个问题的。如果您的计算有一个系统管理员账户,您可以使用此账户登录Windows并为其他账户重设密码。首先,打开控制面板,单击或双击“用户账户”图标(根据您的系统的设置),选择忘记密码的账户名并点击“重设密码”和“更改密码”(选项名称视您是否连接到域而定)。根据提示输入2次新的密码,然后点击“确定”,

(注意:“重设密码”按钮对于登录到域环境的用户有可能无效,这一操作只适用于修改Windows登录密码,不适用于修改域登录密码。)重设Windows密码可能会导致登录站点和网络连接的密码丢失,但是至少您不会因为忘记密码而无法进行任何操作了。

采用组合键安全登录方式

将您的计算机设置成登录Windows之前必须按“Ctrl+Alt+Delete”组合键,是为了保护计算机免受某些特洛伊木马的攻击。一些特洛伊木马程序可以模仿Windows登录界面,欺骗用户输入用户名和密码。使用“Ctrl+Alt+Delete”组合键可以确保您看到的是真实可信的Windows登录界面。为了使连接到域中计算机的这一设置有效,您需要使用管理员身份登录,在控制面板中打开“用户账户”图标,选择“高级”选项卡,在“安全登录”项目中,选中“要求用户按Ctrl+Alt+Delete”复选框,然后点击“确定”按钮。

使用键盘来锁定系统

在离开办公桌的时候,为确保计算机的安全,需要锁定您的计算机,这样只有输入密码才能够再次使用。如果您的计算机已经登录到域中,只需按下“Ctrl+Alt+Delete”组合键,然后点击“锁定计算机”按钮即可。当您返回后,再次按下“Ctrl+Alt+Delete”组合键,输入密码即可。如果是在没有登录域的情况下,按下“+L”组合键,无需关闭所有应用程序即回到登录界面。当您返回时,选择您的账户名并输入相应密码即可。

通过快捷方式锁定计算机

如果您更热衷于使用鼠标,您或许希望通过双击桌面的快捷方式或通过在“开始”菜单中选择某一选项来锁定计算机。其方法是,打开您希望放置这一快捷方式的文件夹,在文件夹中单击右键,选择“新建”*“快捷方式”。在弹出的“创建快捷方式”对话框中,输入“rundll32.exe user32.dll,LockWorkStation”(在‘.exe’后有一个空格),然后点击“下一步”按钮,输入快捷方式的名字,点击“完成”按钮。如果您不喜欢快捷方式的图标,可以右键单击该图标,选择“属性”选项,在“属性”对话框的“快捷方式”选项卡中点击“更改图标”按钮,然后点击“浏览”按钮,找到一个喜欢的图标文件。例如,您可以选择Windows的System32目录下的shell32.dll文件,点击“打开”按钮,在列表中选择一个图标。连续单击2次“确定”按钮即为该快捷方式分配新的图标。

利用后备选项设置锁定

如果您经常在暂时离开计算机的时候忘记锁定系统,可以设定在屏幕保护、系统挂起或是休眠的情况下自动锁定系统。这些设置在默认情况下是激活的,您可以再检查一下。右键单击桌面,选择“属性”选项,在“显示属性”对话框的“屏幕保护程序”选项卡中,选择一个屏幕保护程序(如果需要)。确认等待的时间设定并选中“在恢复时显示欢迎屏幕”或“在恢复时使用密码保护”复选项。打开控制面板,如果您使用的是“分类视图”模式,点击“性能和维护”链接。然后,单击或双击“电源管理”(视系统设置而定),进入“电源选项属性”对话框,在“高级”选项卡中选中“在计算机从待机状态恢复时,提示输入密码”复选框,点击“确定”按钮即可。

篇8:windows系统怎样设置开机密码

windows系统怎样设置开机密码

其实不管是windows xp还是windows 7系统设置开机密码都是相当简单的一件事情,原理与步骤都几乎一样,下面将分别进行详细介绍。

一、在电脑桌面里,依次点击“开始”--“设置”--“控制面板”--“用户账户”页面,如图:

控制面板进入用户帐户

二、在用户帐户里找到计算管理员(Administrator),点击计算管理员(Administrator)图标即可进入管理员密码创建,如图:

计算机管理员

三、选择创建密码即可开始为电脑设置密码了,由于电脑每次开机都是以计算管理员(Administrator)默认开机的,所以设置密码后每次开机就需要输入密码了,点击“创建密码”即可进入密码设置了。如图:

创建密码

四、在输入一个新密码的地方输入你想要的密码,下面一个再次输入密码确认。最后一个我们还可以为我们密码设置一个提示语句,防止我们自己也忘记密码进入不了电脑就麻烦了,所以一般还是建议大家在密码提示里输入密码提示比较好,当然也可以不写。将以上密码资料填写完毕之后,点击创建密码即可完成开机密码设置了。如图:

完成密码设置

windows 7系统怎么设置开机密码?

windows 7系统是目前的主流系统,目前装机装系统,windows 7系统几乎已经成为了默认装机系统了,所以就目前新手朋友而言windows 7系统是接触最多的。不过只要大家熟悉windows xp系统开机密码的设置,对windows 7就简单了,因为两者操作都是差不多的,下面将进行详细介绍。

一、依然是从桌面开始 从桌面左下角点击“WINDOWS”键,然后选择上面的“控制面板”选项,如图:

打开控制面板

二、如上图,接下来就弹出了控制面板的界面,之后我们选择右上角的“用户账户和家庭安全”选项,之后即可进入用户帐户设置,如图。

windows7用户帐户设置

三、如上图所看到的用户帐户设置界面,之后,在用户账户中我们选择“更改Windows密码”选项。

更改Windows密码

四、选择“更改Windows密码”选项后我们就进入了关键的步骤,在“更改用户账户”页面,我们选择“为您的帐户创建密码”选项,点一下就可以了,如图。

选择“为您的帐户创建密码”

五、如上图,最后我们需要的就是在相应填写框内填上我们需要设置的开机密码以及开机密码提示信息即可,最后不要忘记点下最下面的“创建密码”来完成开机密码设置。

创建密码

最后我们重新启动电脑就会有要求输入密码的提示了,输入我们设置的密码才可以进入,一般别人不知道密码自然就进不去了。介绍到这里相信大家对怎样设置开机密码有了清楚的认识,如果您的电脑需要设置开机密码,现在就可以尝试去轻松完成开机密码设置了。

[windows系统怎样设置开机密码]

篇9:qsecofR密码忘了怎么办Windows系统

qsecofr密码忘了怎么办 维护的用户名是什么? =========================================== 主题太短,故改之,----charlielou 居士 回复于:2003-05-06 13:17:15 DST的用户口令你用22222222口令22222222试试看 chenyg0055 回复于:2003-05-06 22:01:00 ---

qsecofr密码忘了怎么办

维护的用户名是什么?

===========================================

主题太短,故改之。----charlielou

居士 回复于:2003-05-06 13:17:15DST的用户口令你用 22222222 口令22222222试试看

chenyg0055 回复于:2003-05-06 22:01:00--------------《转载》------------------

AS400丢失了QSECOFR的密码怎么办

1.手动方式IPL;

2.进入”IPL or Install the System“菜单, 选择3. ”Use Dedicated Service Tools“;

3.进入”Use Dedicated Service Tools“菜单, 选择5. ”Work with DST Environment“;

4.进入”Work with DST Environment“菜单, 选择11. ”Change DST Password“;

5.进入”Change DST Password“菜单, 选择4. ”Reset system default password“;

6.按回车键, 确认系统将密码重置为初始值(QSECOFR);

7.回到”IPL or Install the System“菜单, 选择1. ”Perform an IPL"

-------------《转载》-------------

居士 回复于:2003-05-07 09:51:25很详细!!

charlielou 回复于:2003-05-07 10:11:39所以设为精华了,

53827 回复于:2003-05-07 20:57:30我是在从新装系统是碰到的,但有一个新的问题就是(我是4.10)qsecofr在重新恢复后第一次是要输入=user哈但记住第一次要改密码

原文转自:www.ltesting.net

高级批处理的教学

Cisco路由配置语句Windows系统

史上最细致的Cisco路由安全配置

搜狐编程笔试真题

端口转发软件rinetd安装部署linux服务器应用

Python标准库urllib2的一些使用细节总结

网友群硕软件笔试题

新时期网络课程教学设计要点分析

脚本范文

go语言制作端口扫描器

5L中DST密码问题Windows系统
《5L中DST密码问题Windows系统.doc》
将本文的Word文档下载到电脑,方便收藏和打印
推荐度:
点击下载文档

【5L中DST密码问题Windows系统(精选9篇)】相关文章:

让色彩跃出屏幕数码照片处理工具推荐2022-11-03

应聘网络维护职位简历2022-07-28

python基础教程之字典操作详解2023-04-25

Linux rm 命令误删文件的恢复(grep)linux操作系统2023-08-27

电脑硬盘文件误删的解决办法2023-06-27

win8电脑怎么用文件记录功能恢复误删文件2023-09-01

如何恢复误删文件2022-06-18

MIDP2.0及其移植技术分析2024-02-07

Linux内核分析 网络[十一]:ICMP模块2022-05-06

cgd是什么文件,cgd文件用什么程序打开2023-02-26

点击下载本文文档