Get the App
  • Share access security settings: setting anonymous access

    Share access security settings: setting anonymous access

    Set anonymous access: by default, users must authenticate when accessing shared files in a file server. However, in some cases, it may be necessary to set up a public shared folder that allows all people to access it anonymously without authentication. To achieve anonymous access, it must be enabled

    Shulou · 2022-06-02 16:01
  • Part two of the WSUS series: WSUS role installation

    Part two of the WSUS series: WSUS role installation

    Open the server manager, click manage, and select add roles and functions; this interface remains default, click next; select role-based or feature-based installation, next; select local server, next; in the server role, select Windows Server Update Service, and click

    Shulou · 2022-06-02 16:01
  • Installation of Forefront TMG

    Installation of Forefront TMG

    Lab Overview Lab preparation Environment: Internal Environment DCIP:192.168.2.10/24 default Gateway: 192.168.2.254 preferred DNS:192.168.2.10Exchange 2010IP:192.1

    Shulou · 2022-06-02 16:01
  • MySQL High availability Cluster Architecture MHA

    MySQL High availability Cluster Architecture MHA

    MHA (Master HighAvailability) is currently a relatively mature solution for the high availability of MySQL. It was developed by youshimaton, a Japanese DeNA company (now working for Facebook), and is an excellent set of solutions.

    Shulou · 2022-06-02 16:01
  • How to remove an installed Windows service

    How to remove an installed Windows service

    1. Start-run, type regedit2, find the registry key to be deleted in HKEY_LOCAL_MACHINE\ SYSTEM\ ControlSet001\ services, right-delete 3, delete the service from the list of services

    Shulou · 2022-06-02 16:01
  • Embedded C language self-cultivation 06:U-boot Mirror self-copy Analysis: se

    Embedded C language self-cultivation 06:U-boot Mirror self-copy Analysis: se

    GNU C extension keyword: attributeGNU C adds an atttribute keyword to declare a special property of a function, variable, or type. What's the use of declaring this particular property? The main purpose is to guide the compiler in the compilation process.

    Shulou · 2022-06-02 16:01
  • Windows Tip-modify the default installation directory of the software

    Windows Tip-modify the default installation directory of the software

    Problem description: when installing software on a Windows system, you will be prompted with a default installation path, such as: 64-bit system default installation path: C:\ Program Files\ [Software name] 32-bit system default installation path C:\ Program Files (

    Shulou · 2022-06-02 16:01
  • Use lnmp architecture to install nextcloud cloud disk under centos6.5

    Use lnmp architecture to install nextcloud cloud disk under centos6.5

    In the past two years, with the major online disks have been closed, Baidu Cloud also began to limit the speed early, and the security of documents is not guaranteed. So you might as well build your own network disk. After looking at it on the Internet, I found that there is a nextcloud that is easier to use. Support for multi-platform clients, support for sharing, easy to use. Branch

    Shulou · 2022-06-02 16:01
  • AIX error

    AIX error "BFE4C025 P H sysplanar0 UNDETERMINED ERROR"

    When checking the system, it is found that the system reported an error: $errpt | headBFE4C025 0529221011 P H sysplanar0 UNDETERMINED ERROR looks at the corresponding error number and finds the following diagnostic information: $err

    Shulou · 2022-06-02 16:01
  • How ospf works

    How ospf works

    # talking about ospf (Open shortest path first), first of all, it is a link-state routing protocol, its working process is mainly as follows: # establishing neighbor table hello: only using hello messages to find neighbors, for neighbor establishment, maintenance, and dismantling ospf routing

    Shulou · 2022-06-02 16:01
  • Centos7 installs nginx and php7

    Centos7 installs nginx and php7

    Centos7 installation of nginx and php7centos7 system installation of php7 will have some strange problems, which will delay time and affect efficiency. It is recommended to install yum directly. 1. Before we start installing Nginx and php7-fpm, we also

    Shulou · 2022-06-02 16:01
  • List of HTTP status codes common in production environments

    List of HTTP status codes common in production environments

    200-OK, the server successfully returned the web page Standard response for successful HTTP requests.301-Moved Permanently (permanent jump), the requested web page

    Shulou · 2022-06-02 16:01
  • Docker separation environment sets up LNMP and deploys Discuz

    Docker separation environment sets up LNMP and deploys Discuz

    1. Install Docker environment 1, configure YUM source vi / etc/yum.repos.d/CentOS-Base.repo to add [docker-repo] name=Docker Repositorybaseu at the last line

    Shulou · 2022-06-02 16:00
  • Zabbix monitoring alarm windows user login

    Zabbix monitoring alarm windows user login

    Objective: zabbix monitors local users or mstsc to log on to the windows server to avoid password disclosure, malicious login, information disclosure and timely notification to the system administrator. Note: this document does not discuss the issues of zabbix distribution, tuning, monitoring other services, etc.

    Shulou · 2022-06-02 16:00
  • Disk system management

    Disk system management

    1. Disk format: MBR disk partition: can be divided into up to 4 primary partitions, or three primary partitions and one extended partition; when the computer starts, read MBR;GPT disk partitions first: up to 128primary partitions, no extended partitions, through UEFI to communicate with the computer hardware and

    Shulou · 2022-06-02 16:00
  • Ordinary bat scripts make windows the strongest.

    Ordinary bat scripts make windows the strongest.

    Bat scripts often encounter the situation that a directory on the windows server needs to be deleted regularly. You can use .bat script to add timing tasks to solve forfiles / p < target directory name > / d < number of days > / c < command to execute > / p to specify where to go.

    Shulou · 2022-06-02 16:00
  • Clear useless mirrors of node nodes in online k8s

    Clear useless mirrors of node nodes in online k8s

    Just in case (the online environment must be cautious and careful), removing the image will have an unnecessary impact on the existing pod; the following operations are run on the node node with the least number of containers! (if not, you can reopen a node node) 1. Use kubectl first.

    Shulou · 2022-06-02 16:00
  • The principle and practice of Firewall iptables under Linux

    The principle and practice of Firewall iptables under Linux

    About iptables netfilter/iptables (iptables for short) constitutes a packet filtering firewall under the Linux platform. Like most Linux software, this packet filtering firewall is free and can replace expensive commercial firewalls.

    Shulou · 2022-06-02 16:00
  • Build an image based on Dockerfile

    Build an image based on Dockerfile

    Building a mirror Dockfile based on Dockerfile is a script interpreted by a Docker program. Dockerfile consists of one instruction, each corresponding to a command under the Linux. The Docker program transforms these Dock

    Shulou · 2022-06-02 16:00
  • Use shell to get the file name length and file size under the folder

    Use shell to get the file name length and file size under the folder

    # get the length of the file name under the test folder and display du-sh test/* in groups | sort-nr | awk'{print $2}'| awk-F ""'{print NF}'| uniq-c # get the test text

    Shulou · 2022-06-02 16:00