摘要: MySQL 函数:INET_ATON(expr)将IPv4网络地址转换成一个整数,该整数以网络字节顺序(big endian)表示地址的数值。如果INET_ATON()不理解其参数,则返回NULL。 mysql> SELECT INET_ATON('1.1.1.1'); + + | INET_ATO 阅读全文
posted @ 2024-10-18 14:04 xjournal 阅读(10) 评论(0) 推荐(0) 编辑
摘要: chronyc sources -v 该命令显示chronyd当前访问的时间源信息。可以指定可选参数-v,意为verbose。在这种情况下,会显示额外的标题行,以提醒各列的含义。 M 表示信号源的模式。^表示服务器,=表示对等机,#表示本地连接的参考时钟 S 这一栏表示时间源的状态: * 表示当前选 阅读全文
posted @ 2024-10-18 14:04 xjournal 阅读(44) 评论(0) 推荐(0) 编辑
摘要: kylinV10SP2系统执行了一下yum update结果把内核更新了,导致系统启动默认使用了新的内核,结果卡到系统开机界面进不到系统里。 先手动选择默认内核进入系统,然后修改系统默认启动内核: #查看当前内核版本: [root@xdsdcdsd ~]# uname -r 4.19.90-24.4 阅读全文
posted @ 2024-09-13 15:26 xjournal 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 添加DNS设置 vim /etc/resolv.conf #在文件中添加两行并保存 nameserver 8.8.8.8 nameserver 8.8.4.4 测试DNS配置 root@localhost:~# nslookup example.com Server: 8.8.8.8 Address 阅读全文
posted @ 2024-08-16 17:45 xjournal 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 7月1日OpenSSH官方发布安全更新,忙着处理的同时记录一下升级过程。 系统环境 root@NServer:~# cat /proc/version Linux version 3.4.113-sun8i (root@test) (gcc version 5.5.0 (Linaro GCC 5.5 阅读全文
posted @ 2024-07-21 19:52 xjournal 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 一、本地系统环境 [root@localhost ~]# cat /etc/os-release NAME="Kylin Linux Advanced Server" VERSION="V10 (Sword)" ID="kylin" VERSION_ID="V10" PRETTY_NAME="Kyl 阅读全文
posted @ 2024-07-04 09:34 xjournal 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 需要的安装包: mysql-community-common-5.7.44-1.el7.x86_64.rpm mysql-community-libs-5.7.44-1.el7.x86_64.rpm mysql-community-client-5.7.44-1.el7.x86_64.rpm mys 阅读全文
posted @ 2024-06-03 16:29 xjournal 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 前段时间装了一台机器,系统是centos7.9,主板自带两个网口,不够用,又插了一块Inter芯片的4口pcie网卡, 重启系统后,使用ip a 查看ip信息,网卡直接识别到了,但/etc/sysconfig/network-scripts/目录里没有网卡配置文件, 需要手动创建这些文件: #进入目 阅读全文
posted @ 2024-05-11 11:47 xjournal 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 前言 kylinV10SP3的openssl版本较高OpenSSH_9.5p1, OpenSSL 1.1.1f 31 Mar 2020,程序编译环境必须是OpenSSL 1.0.2,故需要降级,记录一下。 下载安装包 下载openssl1.0.2u 安装 #解压 tar zxvf openssl-1 阅读全文
posted @ 2024-04-16 15:06 xjournal 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 安装Python-3.6.9 下载python:https://www.python.org/ftp/python/3.6.9/Python-3.6.9.tgz tar -zxvf Python-3.6.9.tgz cd Python-3.6.9 ./configure --prefix=/opt/ 阅读全文
posted @ 2024-04-13 16:21 xjournal 阅读(57) 评论(0) 推荐(0) 编辑