分类归档

服务器教程

服务器知识、操作系统教程、服务器常用软件等

FWQ
服务器教程
Win11怎么关闭自动更新 Win11关闭自动更新的方法
如何在 windows 11 上关闭自动更新?对于计算机用户来说,windows 系统的自动更新功能常常令人烦恼。随着 windows 11 系统的发布,不少用户在安装后仍保留了这一功能。为了解决这一困扰,本指南将详细介绍如何在 windows 11 上关闭自动更新。跟随 php小编百草的步骤,轻松解决这一问题! 怎么关闭自动更新方法一: 1、首先在开始菜单中找到“系统设置” 2、然后进入其中的“更新和安全”选项。 3、进入之后在更新界面就可以关闭更新了。 方法二: 1、使用“win”+“R”的组合键调出运行。 2、在运行中输入“services.msc”回车确定打开服务栏。 3、在服务中找到“windows update”,双击打开它。 4、然后将启动类型更改为“禁用”,再点击一下“停止”即可。 以上就是Win11怎么关闭自动更新 Win11关闭自动更新的方法的详细内容,更多请关注米云其它相关文章!
2024-11-26 阅读全文 →
FWQ
服务器教程
Vagrant的安装以及使用
一、Vagrant的安装 Vagrant的下载地址 官方地址:https://www.vagrantup.com/downloads.html Vagrant的官方安装以及使用文档 官方文档:https://www.vagrantup.com/downloads.html gitHub文档:https://github.com/astaxie/go-best-practice/blob/master/ebook/zh/preface.md   box集下载地址: 官方地址:http://www.vagrantbox.es 下载地址2:https://atlas.hashicorp.com/boxes/search 下载地址3(推荐)https://github.com/chef/bento 二、使用技巧 设置boxes的存放路径,默认是:/home/woodie/.vagrant.d/ vim /etc/profile export VAGRANT_HOME=/data/vagrant/ 三、参考文章 使用 Vagrant 打造跨平台开发环境
2024-11-24 阅读全文 →
FWQ
服务器教程
vagrant的vagrantfile的配置说明
官方文档:https://www.vagrantup.com/docs/index.html Vagrant.configure(“2″) do |config| config.vm.box = “centos6″ #指定vm的hostname,会覆盖vm中/etc/hostsname中的设置。 config.vm.hostname = “localhost”   # config.vm.box_check_update = false # vagrant的网络连接方式有三种: # NAT : 缺省创建,用于让vm可以通过host转发访问局域网甚至互联网。 # host-only : 只有主机可以访问vm,其他机器无法访问它。 # bridge…
2024-11-24 阅读全文 →
FWQ
服务器教程
IP的分级
1、以二進位說明 Network 第一個數字的定義: Class A : 0xxxxxxx.xxxxxxxx.xxxxxxxx.xxxxxxxx  ==> NetI_D 的開頭是 0           |--net--|---------host------------| Class B : 10xxxxxx.xxxxxxxx.xxxxxxxx.xxxxxxxx  ==> NetI_D 的開頭是 10           |------net-------|------host------| Class C : 110xxxxx.xxxxxxxx.xxxxxxxx.xxxxxxxx  ==>…
2024-11-24 阅读全文 →
FWQ
服务器教程
Linux中的路由 route和traceroute
[root@www ~]# route [-n] 選項與參數: -n : 將主機名稱以 IP 的方式顯示   [root@www ~]# route Kernel IP routing table Destination     Gateway         Genmask         Flags Metric Ref  Use Iface 192.168.0.0     *              …
2024-11-24 阅读全文 →
FWQ
服务器教程
Linux中路由器的架设
1、route 的常用的命令 route -n 参考:Linux中的路由 route和traceroute route add route add -net 192.168.80.0 netmask 255.255.255.0 gw 192.168.80.254 route add -net 192.168.80.0 netmask 255.255.255.0 dev enp0s8 route del route del…
2024-11-24 阅读全文 →
FWQ
服务器教程
NodeJs的安装
NodeJs的中文官方网站:http://nodejs.cn 安装下载:http://nodejs.cn/download/   一、编译安装 # tar xzf node-v6.10.1.tar.gz # cd node-v6.10.1 # ./configure --prefix=/usr/local/nodejs # make # make instal # ln -s /usr/local/nodejs/bin/node ./node # ln -s /usr/local/nodejs/bin/npm…
2024-11-24 阅读全文 →
FWQ
服务器教程
ElasticSearch5.0中Jvm的配置
配置文件路径:config/jvm.options   ## JVM configuration ################################################################ ## IMPORTANT: JVM heap size ################################################################ ## ## You should always set the min and max JVM heap ## size to the…
2024-11-24 阅读全文 →
FWQ
服务器教程
ElasticSearch5.0安装过程的问题
1、[2016-11-19T03:22:22,188][WARN ][o.e.b.BootstrapCheck     ] [4Ut8v_1] max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]   更改允许打开的最大文件描述符,修改成功后重新启动生效。 vim /etc/security/limits.conf *    …
2024-11-24 阅读全文 →