Linux操作系统安装好之后,可以通过 df -h 命令查看磁盘挂载信息和空间使用率 [root@localhost ~]# df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 7.8G 0 7.8G 0% /dev tmpfs 7.8 ...
分类:
其他好文 时间:
2021-05-24 11:10:34
阅读次数:
0
/** * 进程:就是一个程序,例如qq.exe,一个进程有多个线程,至少有一个 * * 线程:轻量级的进程 * java 默认两个线程一个是main,一个是GC线程。 * * java 真的可以开启线程吗? * 开不了,java调用 c++ native 方法开启线程 */ ...
分类:
编程语言 时间:
2021-05-24 10:44:07
阅读次数:
0
两大部分,一环境,二LVS规则 一、环境 1、两台服务器上安装httpd 服务 yum install httpd -y 2、开启服务,并设置为开机自启 systemctl start httpd systemctl enable httpd 3、新建页面 1)、在RS1 服务器上新建页面RS1 e ...
分类:
其他好文 时间:
2021-05-24 08:18:05
阅读次数:
0
环境准备,一台CentOS7 安装软件```[root@localhost ~]# yum install mariadb-server -y```创建三个实例的目录```[root@localhost ~]# mkdir /mysql/{3306,3307,3308}/{data,etc,sock ...
分类:
数据库 时间:
2021-05-24 08:17:38
阅读次数:
0
1.设置环境变量 # echo 'PATH=/opt/opsmgr/web/components/postgresql96linux64.1/bin/:$PATH' >> /etc/profile # echo 'export PGPASSWORD=ytcmUUNq' >> /etc/profile ...
分类:
数据库 时间:
2021-05-24 08:13:18
阅读次数:
0
环境:Linux centos7.6 +Python 2.7.5+DM8 必须安装dmPython。 安装包可以在1139926252QQ群里的文件中下载,下载好后上传到linux服务器中。 一、安装dmPython Python 有现成的mysql,oracle 等数据库包,可以直接import ...
分类:
数据库 时间:
2021-05-24 08:02:14
阅读次数:
0
启动/关闭、启用/禁用服务:启动一个服务:systemctl start postfix.service关闭一个服务:systemctl stop postfix.service重启一个服务:systemctl restart postfix.service显示一个服务的状态:systemctl s ...
分类:
其他好文 时间:
2021-05-24 07:50:03
阅读次数:
0
firewall的操作 1.firewalld的基本使用 启动: systemctl start firewalld查状态:systemctl status firewalld 停止: systemctl disable firewalld禁用: systemctl stop firewalld在开 ...
分类:
其他好文 时间:
2021-05-24 06:54:27
阅读次数:
0
1、查看当前防火墙的状态 sudo ufw status #输入安装系统时创建的密码,乌班图不支持直接使用root账号登录 inactive状态是防火墙关闭状态 active是开启状态。 2、开启防火墙 sudo ufw enable 输入y会提示Firewall is active and ena ...
分类:
其他好文 时间:
2021-05-24 06:41:54
阅读次数:
0
前言 部署CentOS7的时候分配的动态扩充虚拟磁盘,共1T大小,在安装Centos时默认分区,系统仅给/分配50G,而大量空间都挂载到/home下,最近CentOS7使用中发现空间已不足够,所以就想如何将/home下的空间重新分配扩容到/下。 配置过程 查看分区大小 df -h 或者lsblk [ ...
分类:
其他好文 时间:
2021-05-24 06:24:49
阅读次数:
0