Centos 8 升级 glibc 2.29 与问题总结
Centos8升级glibc2.29与问题总结安装步骤12345678wget http://ftp.gnu.org/gnu/glibc/glibc-2.29.tar.gz tar zxvf glibc-2.29.tar.gzcd glibc-2.29mkdir tmpdircd tmpdir ../configure --prefix=/usrmake && make install init 6
问题解决问题1234567891011121314151617181920212223test ! -x /root/glibc/glibc-2.29/tmpdir/elf/ldconfig || LC_ALL=C \ /root/glibc/glibc-2.29/tmpdir/elf/ldconfig \ /lib64 /usr/lib64LD_SO=ld-linux-x86-64.so.2 CC="gcc" /usr/bin/perl scripts/test-installati ...
CentOS7使用firewalld打开关闭防火墙与端口
CentOS7使用firewalld打开关闭防火墙与端口1、firewalld的基本使用启动: systemctl start firewalld关闭: systemctl stop firewalld查看状态: systemctl status firewalld开机禁用 : systemctl disable firewalld开机启用 : systemctl enable firewalld
2.systemctl常用指令systemctlCentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。启动一个服务:systemctl start firewalld.service关闭一个服务:systemctl stop firewalld.service重启一个服务:systemctl restart firewalld.service显示一个服务的状态:systemctl status firewalld.service在开机时启用一个服务:systemctl enable firewalld.service在开机时禁用一个服务:sy ...
Centos7+宝塔+Wordpress快速建站
想拥有一个网站了怎么办,搞起来![toc]
# 前期准备长话短说,建立一个网站你需要准备以下东西
一台服务器主机(VPS、ECS、SAS)
一个域名
一台可以连接到服务器的电脑以及SSH客户端
服务器主机这里为什么前提到主机,因为主机地理位置的选择跟你之后的体验以及麻烦程度密切相关。
国内主机国内主机商主要有阿里云、腾讯云、华为云等。类型则有ECS(弹性伸缩计算服务器)、SAS(轻量应用服务器)。对于第一次接触建站的人,选择SAS即可。
优点
地理位置位于国内,延迟小,响应快
国内主机套餐细化、适用各不同需求的人
工单处理使用中文,方便省心
缺点
带宽较低1M起步,且升级带宽较贵,不适合建立含有图片较多的网站或需搭配CDN使用
使用国内主机搭建网站,域名需要备案
国内主机价格普遍偏贵,性价比不高
国外主机国外主机商的选择就比较多了,Google Cloud、AWS、微软Azure、Vultr等,而且很多主机提供商都可以提供香港节点。部分还可以提供CN2线路,能拥有更好的国外访问体验。
优点
价格便宜,部分商家的主机可低至2.5美元/月,甚至更低
...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment