
Skill
Kenzo.Ma
这个作者很懒,什么都没留下…
展开
-
CentOS升级OpenSSH 8.6p1
1. 下载tar包并安装依赖shell> wget http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.6p1.tar.gzshell> yum install -y gcc zlib-devel openssl-devel pam-devel libselinux-devel shell> tar zxvf openssh-8.6p1.tar.gz2.编译安装shell> openssh-8.转载 2021-07-06 14:47:53 · 313 阅读 · 0 评论 -
Linux压缩centos-home扩容至centos-root
1. 备份home分区文件shell>tar cvf /tmp/home.tar /home2. 取消/home挂载shell>umount /homeshell>fuser -km /home //如果提示忙碌,执行此条终止3. 删除/home所在lvshell>lvremove /dev/mapper/centos-home4. 扩展/root所在的lvshell>lvextend -L +100G /dev/mapper/centos-root转载 2020-09-09 17:45:22 · 730 阅读 · 3 评论 -
Linux创建IPv6 over IPv4 GRE隧道
1.Host A配置如下shell> ip tunnel add gre1 mode gre remote 172.17.1.2 local 172.17.1.1 ttl 255shell> ip link set gre1 upshell> ip addr add 2000::1/126 dev gre12.Host B配置如下shell> ip tunnel add gre1 mode gre remote 172.17.1.1 local 172.17.1.2原创 2020-06-09 18:04:17 · 907 阅读 · 0 评论 -
修改httpd默认端口
1.修改文件shell> vi /etc/httpd/conf/httpd.conf#Listen 12.34.56.78:80Listen 8000#将80改为所需端口,端口为80002.重启Apacheshell> systemctl restart httpd原创 2019-11-21 13:31:31 · 640 阅读 · 0 评论 -
Linux检测tcp延时
1.下载papingshell> wget http://www.updateweb.cn/softwares/paping_1.5.5_x86-64_linux.tar.gz2.解压文件shell> tar zvxf paping_1.5.5_x86-64_linux.tar.gz3.执行脚本shell> ./paping –p port -c count 'a...原创 2019-11-21 13:57:52 · 631 阅读 · 0 评论 -
Linux获取公网ip
1.shell> curl ifconfig.me2.shell> host myip.opendns.com resolver1.opendns.com3.shell> dig +short myip.opendns.com @resolver1.opendns.com原创 2019-11-21 13:56:10 · 215 阅读 · 0 评论 -
MySQL修改默认密码
1.查看默认密码shell> grep 'temporary password' /var/log/mysqld.log2.设置新密码mysql> SET PASSWORD = PASSWORD('your new password');3.密码永不过期mysql> ALTER USER 'root'@'localhost' PASSWORD EXPIRE NEVE...翻译 2019-11-21 13:54:45 · 155 阅读 · 0 评论 -
MySQL重置密码
1.停止mysql服务shell> service mysqld stop2.跳过登录密码启动shell> mysqld_safe --skip-grant-tables &3.进入mysqlshell> mysql4.更新密码mysql> UPDATE mysql.user SET Password=PASSWORD('NEW-PASSWORD...翻译 2019-11-21 13:53:05 · 136 阅读 · 0 评论 -
Linux清理buffer+cache
1.dirty page 变为 clean pageshell> sync2.清理缓存①To free pagecache:仅清除页面缓存(PageCache)shell> echo 1 > /proc/sys/vm/drop_caches②To free dentries and inodes:清除目录项和inodeshell> echo 2 >...翻译 2019-11-21 13:47:48 · 235 阅读 · 0 评论 -
Lv_root扩容
1.fdisk查看磁盘信息shell> fdisk -l #查看磁盘情况2.fdisk 进入/dev/sda,创建新分区/dev/sda3shell> fdisk /dev/sdaCommand(m for help):n #new新分区Command action e extend p primary partition(1-4) ...翻译 2019-11-21 13:45:53 · 371 阅读 · 0 评论 -
Redhat7升级内核(含安装yum)
1.安装firmware文件shell> rpm -Uvh linux-firmware-20180911-69.git85c5d90.el7.noarch.rpm(不同版本内核版本号有所不同)2.重新安装yum# yum安装内核时会提示缺少依赖文件,且Redhat为收费产品需注册使用yum源,因此卸载原有yum并重新安装①卸载原yumshell> rpm -aq|gr...原创 2019-11-21 13:40:44 · 3067 阅读 · 0 评论 -
修改Mariadb最大连接数
1.查看默认最大连接MariaDB [(none)]> show variables like 'max_connections';+-----------------+-------+| Variable_name | Value |+-----------------+-------+| max_connections | 151 |+---------------...翻译 2019-11-21 13:37:49 · 1072 阅读 · 0 评论 -
Linux获取机器码
1.准备工作安装php,并已经配置好环境变量path2.运行hardware.sh获取机器码shell> php ./hardware.sh3.脚本内容#!/usr/bin/env php<?php function command_hardware() { if(function_exists('zend_loader_enabled'...转载 2019-11-21 13:33:35 · 7349 阅读 · 0 评论 -
修改SSH超时时间
1 客户端阻止SSH超时shell> vi ~/.ssh/config,ServerAliveInterval 120 #每隔120秒给服务器发送一个“空包”,保持它们之间的连接。2 服务器端阻止SSH超时shell> vi /etc/ssh/sshd_configClientAliveInterval 120 #每隔120秒向客户端发送一个“空包”,以...转载 2019-11-21 13:30:06 · 325 阅读 · 0 评论