The security log on this system is full

当您尝试登录到运行 Windows XP 或 Windows Server 2003 的计算机时显示消息“此系统上的安全日志已满”

症状

当您试图使用不属于 Administrators 组成员的帐户登录到运行 Microsoft Windows Server 2003 或 Microsoft Windows XP 的计算机上时,可能会在“登录到 Windows”窗口中收到以下消息:
此系统上的安全日志已满,只允许管理员登录以解决问题。
通过使用属于 Administrators 组成员的帐户可以登录计算机,例如内置的 Administrator 帐户。但是,如果您远程登录计算机,则可能会收到下面的消息:
此系统上的安全日志已满

原因

发生此问题的原因是不能向计算机上的安全日志中记录任何其他事件。当无法向安全日志中写入事件时,只有属于 Administrators 组成员的帐户才能够登录到计算...
发生此问题的原因是不能向计算机上的安全日志中记录任何其他事件。当无法向安全日志中写入事件时,只有属于 Administrators 组成员的帐户才能够登录到计算机上。

解决方案
若要解决此问题,请使用属于 Administrators 组成员的帐户登录计算机。然后,执行下面的步骤以指定可以覆盖安全日志事件: 单击“开始”,指向“所有程序...
若要解决此问题,请使用属于 Administrators 组成员的帐户登录计算机。然后,执行下面的步骤以指定可以覆盖安全日志事件:

   1. 单击“开始”,指向“所有程序”,指向“管理工具”,然后单击“事件查看器”。
   2. 右键单击“安全”,然后单击“属性”。
   3. 在“安全属性”窗口的“日志大小”区域中,单击“达到日志大小上限时”下面的“按需要覆盖事件”选项。
   4. 单击“确定”。
   5. 关闭事件查看器。

 

 

 

The security log on this system is full

You usually get this error message after you have set up a computer running Windows XP computer. The computer giving this error is normally part of a network that has a Windows 2003 server or 2003 Small Business Server.

To fix the this log on issue, you must log on to the computer as an administrator and right click on My Computer. Once you right click, Select Manage and expand the event viewer. Then, you must right click on the Security directory and select Properties. Look in the area that says "Log size" and click the radio button that says "Overwrite events as needed."

Now you log off as administrator and the user will be able log on without the "The security log on this system is full" error message.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
Configuring Wireless Access Points 159 IP Address 159 SSID 160 Radio Settings 161 Transmit Power 161 RF Channel 163 Data Rates 164 Preamble 165 Beacon Period 165 Fragmentation 165 Authenticator Management 167 Authenticator Administrative Interface 167 Terminal Connection 167 Web Browser Interface 168 SNMP 169 Administrator Access Control 169 Authenticator MIB 169 Chapter 8 Configuring Authentication Servers 171 Authentication Server Recap 171 Choosing RADIUS Servers 172 Commercial RADIUS Servers 172 Open-Source RADIUS Servers 173 Outsourcing RADIUS Functionality 173 Installing RADIUS Software 174 Review Release Notes 174 Establish a Server 175 System Requirements 175 Physical Location 175 Verify Network Connections 176 Configure Administrator Account Access 176 Security Tips 182 Install the Software 183 Common RADIUS Configuration Parameters 184 Accessing RADIUS Configuration 184 Configuring RADIUS Clients and Users 186 Configuring RADIUS Clients 186 Configuring RADIUS Users 187 Configuring User Profiles 188 Authentication Methods 188 Native User Authentication 188 Pass-Through Authentication 189 Proxy RADIUS Authentication 189 Concurrent Connections 189 Shared Secret 190 Replication 191 xvi Contents 68608ftoc.qxd:Layout 1 2/18/08 9:55 PM Page xvi Chapter 9 Troubleshooting 193 Troubleshooting Approaches 193 Gather Information 194 Find the Root Problem (and Fix It) 195 Test Tools 195 Viewing System Configuration 195 Viewing System Statistics 196 Debugging Processes 197 Viewing Wireless Communications 197 Signal Tester 197 Spectrum Analyzer 199 Packet Analyzer 199 Network Connectivity Issues 200 Network Interface Problems 200 Faulty Client Cards 201 Wireless Coverage Holes 202 RF Interference 203 Infrastructure Problems 203 Supplicant Issues 204 Missing Supplicant 204 Missing Supplicant Behavior 205 Peripheral Devices 206 Hubs 207 Bad Credentials 209 Bad Credentials Behavior 210 Incorrect EAP-Method 211 Authenticator Issues 212 No 802.1X Support 212 802.1X No
## 什么是graylog Graylog 是一个简单易用、功能较全面的日志管理工具,相比 ELK 组合, 优点: - 部署维护简单 - 查询语法简单易懂(对比ES的语法…) - 内置简单的告警 - 可以将搜索结果导出为 json - 提供简单的聚合统计功能 - UI 比较友好 - 当然, 拓展性上比 ELK 差很多。 整套依赖: - Graylog 提供 graylog 对外接口 - Elasticsearch 日志文件的持久化存储和检索 - MongoDB 只是存储一些 Graylog 的配置 ## 安装 > 可以是裸机安装,也可以是docker安装,这里用docker安装 环境要求: - centos7.4 - cpu2个 内存2G 参考: https://hub.docker.com/r/graylog2/graylog/ ### 环境准备 ``` mkdir /root/graylog && cd /root/graylog //挂载目录 mkdir -p mongo_data graylog_journal es_data //配置文件目录 mkdir -p ./graylog/config cd ./graylog/config wget https://raw.githubusercontent.com/Graylog2/graylog-docker/3.0/config/graylog.conf wget https://raw.githubusercontent.com/Graylog2/graylog-docker/3.0/config/log4j2.xml //提前准备镜像 docker pull mongo:3 docker pull graylog/graylog:3.0 docker pull elasticsearch:5.6.9 ``` ### docker-compose.yml ``` version: '2' services: # MongoDB: https://hub.docker.com/_/mongo/ mongo: image: mongo:3 volumes: - ./mongo_data:/data/db - /etc/localtime:/etc/localtime # Elasticsearch: https://www.elastic.co/guide/en/elasticsearch/reference/5.5/docker.html elasticsearch: image: elasticsearch:5.6.9 volumes: - ./es_data:/usr/share/elasticsearch/data - /etc/localtime:/etc/localtime environment: - http.host=0.0.0.0 - transport.host=localhost - network.host=0.0.0.0 # Disable X-Pack security: https://www.elastic.co/guide/en/elasticsearch/reference/5.5/security-settings.html#general-security-settings - xpack.security.enabled=false - "ES_JAVA_OPTS=-Xms512m -Xmx512m" ulimits: memlock: soft: -1 hard: -1 mem_limit: 1g # Graylog: https://hub.docker.com/r/graylog/graylog/ graylog: image: graylog/graylog:3.0 volumes: - ./graylog_journal:/usr/share/graylog/data/journal - ./graylog/config:/usr/share/graylog/data/config - /etc/localtime:/etc/localtime environment: # CHANGE ME! - GRAYLOG_PASSWORD_SECRET=somepassword

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值