Linux

Linux ifconfig 命令

瘦欲@ 提交于 2021-02-17 07:23:07
ifconfig命令用来配置或查看网卡接口,常见用法如下: [root@localhost ~]$ yum install -y net-tools # 安装ifconfig命令 [root@localhost ~]$ ifconfig # 查看所有网卡的信息(不包括down状态的网卡) [root@localhost ~]$ ifconfig -a # 查看所有网卡的信息(包括down状态的网卡) [root@localhost ~]$ ifconfig eth0 # 查看指定网卡的信息 [root@localhost ~]$ ifconfig eth0 up # 启用指定的网卡,等同于:ifup eth0 [root@localhost ~]$ ifconfig eth0 down # 关闭指定的网卡,等同于:ifdown eth0 [root@localhost ~]$ ifconfig eth0 reload # 重启指定的网卡 [root@localhost ~]$ ifconfig eth0 arp # 开启网卡的ARP协议 [root@localhost ~]$ ifconfig eth0 -arp # 关闭网卡的ARP协议 [root@localhost ~]$ ifconfig eth0 192.168.100.100 # 设置/修改网卡的IP地址(临时生效)

Can I use a tilde ( ~ ) in a mysqldump cronjob? Linux Cron is not running

末鹿安然 提交于 2021-02-17 07:15:01
问题 I was having the same issue as this person and this person, where my command worked locally but inside of a cron task, nothing happened. Here is what I am trying to run: /usr/bin/mysqldump -u root -ppassword database_name > ~/Documents/dump.sql This works locally when I type I straight into my terminal! It might throw an error saying: mysqldump: [Warning] Using a password on the command line interface can be insecure But it still it works. It even works if I put in the user root before the

Can I use a tilde ( ~ ) in a mysqldump cronjob? Linux Cron is not running

為{幸葍}努か 提交于 2021-02-17 07:12:19
问题 I was having the same issue as this person and this person, where my command worked locally but inside of a cron task, nothing happened. Here is what I am trying to run: /usr/bin/mysqldump -u root -ppassword database_name > ~/Documents/dump.sql This works locally when I type I straight into my terminal! It might throw an error saying: mysqldump: [Warning] Using a password on the command line interface can be insecure But it still it works. It even works if I put in the user root before the

ModuleNotFoundError and ImportError even beeing right

喜你入骨 提交于 2021-02-17 07:10:45
问题 Hello, thanks for your time. i'm trying to import models on seeders.py. Can someone please tell me what am i doing wrong, i've done this a hundred times and tried every single way: from winners.models import Player or from ..models import Player models.py: from django.db import models class Player (models.Model): name = models.CharField(max_length=100) sex = models.CharField(max_length=9, choices=sex_choices) age = models.PositiveIntegerField() height = models.DecimalField(max_digits=3,

ModuleNotFoundError and ImportError even beeing right

六眼飞鱼酱① 提交于 2021-02-17 07:09:41
问题 Hello, thanks for your time. i'm trying to import models on seeders.py. Can someone please tell me what am i doing wrong, i've done this a hundred times and tried every single way: from winners.models import Player or from ..models import Player models.py: from django.db import models class Player (models.Model): name = models.CharField(max_length=100) sex = models.CharField(max_length=9, choices=sex_choices) age = models.PositiveIntegerField() height = models.DecimalField(max_digits=3,

12张手绘图,终于搞懂了微服务架构

萝らか妹 提交于 2021-02-17 07:08:43
作者 | tengshe789 来 源 | https://juejin.im/post/5c0ba2bef265da614d08fefe 微服务的概念最早在 2012 年提出,在 Martin Fowler 的大力推广下,微服务在 2014 年后得到了大力发展。 今天我们通过一组手绘图来梳理下微服务的核心架构。 什么是微服务? 微服务 Microservices 之父,马丁.福勒,对微服务大概的概述如下: 就目前而言,对于微服务业界并没有一个统一的、标准的定义(While there is no precise definition of this architectural style ) 。 但通常在其而言,微服务架构是一种架构模式或者说是一种架构风格,它提倡将单一应用程序划分成一组小的服务,每个服务运行独立的自己的进程中,服务之间互相协调、互相配合,为用户提供最终价值。 服务之间采用轻量级的通信机制互相沟通(通常是基于 HTTP 的 RESTful API ) 。 每个服务都围绕着具体业务进行构建,并且能够被独立地部署到生产环境、类生产环境等。 另外,应尽量避免统一的、集中式的服务管理机制,对具体的一个服务而言,应根据业务上下文,选择合适的语言、工具对其进行构建,可以有一个非常轻量级的集中式管理来协调这些服务。 可以使用不同的语言来编写服务,也可以使用不同的数据存储。

How to filter the running nodes

拜拜、爱过 提交于 2021-02-17 07:08:12
问题 I want to filter the running nodes list . I tried below command but its only showing running status.I need to filter with it name..Any help ? [root@techsl]# kubectl get nodes -o jsonpath='{range .items[ ]}{@.metadata.name}:{range @.status. enter code here conditions[ ]}{@.type}={@.status};{end}{end}'| tr ';' "\n" | grep "Ready=True" 回答1: Something like this is easier: kubectl get nodes | grep -v NotReady | awk '{print $1}' | tail -n2 server1 server3 kubectl get nodes NAME STATUS ROLES AGE

这12张手绘图,让我彻底搞懂了微服务架构!

放肆的年华 提交于 2021-02-17 07:08:10
作者:tengshe789 juejin.im/post/5c0ba2bef265da614d08fefe 微服务的概念最早在 2012 年提出,在 Martin Fowler 的大力推广下,微服务在 2014 年后得到了大力发展。 今天我们通过一组手绘图来梳理下微服务的核心架构。 什么是微服务? 微服务 Microservices 之父,马丁.福勒,对微服务大概的概述如下: 就目前而言,对于微服务业界并没有一个统一的、标准的定义(While there is no precise definition of this architectural style ) 。 但通常在其而言,微服务架构是一种架构模式或者说是一种架构风格,它提倡将单一应用程序划分成一组小的服务,每个服务运行独立的自己的进程中,服务之间互相协调、互相配合,为用户提供最终价值。 服务之间采用轻量级的通信机制互相沟通(通常是基于 HTTP 的 RESTful API ) 。 每个服务都围绕着具体业务进行构建,并且能够被独立地部署到生产环境、类生产环境等。 另外,应尽量避免统一的、集中式的服务管理机制,对具体的一个服务而言,应根据业务上下文,选择合适的语言、工具对其进行构建,可以有一个非常轻量级的集中式管理来协调这些服务。 可以使用不同的语言来编写服务,也可以使用不同的数据存储。 根据马丁.福勒的描述

How to filter the running nodes

送分小仙女□ 提交于 2021-02-17 07:07:47
问题 I want to filter the running nodes list . I tried below command but its only showing running status.I need to filter with it name..Any help ? [root@techsl]# kubectl get nodes -o jsonpath='{range .items[ ]}{@.metadata.name}:{range @.status. enter code here conditions[ ]}{@.type}={@.status};{end}{end}'| tr ';' "\n" | grep "Ready=True" 回答1: Something like this is easier: kubectl get nodes | grep -v NotReady | awk '{print $1}' | tail -n2 server1 server3 kubectl get nodes NAME STATUS ROLES AGE

这12张手绘图,让我彻底搞懂了微服务架构!

…衆ロ難τιáo~ 提交于 2021-02-17 07:07:38
点击上方 “ Java专栏 ”, 选择“置顶或者星标” 第一时间阅读精彩文章! 1、☞ 程序员进阶必备资源免费送「21种技术方向!」 点击查看☜ 2、☞ 《Java面试手册》.PDF 点击查看 作者:tengshe789 juejin.im/post/5c0ba2bef265da614d08fefe 微服务的概念最早在 2012 年提出,在 Martin Fowler 的大力推广下,微服务在 2014 年后得到了大力发展。 今天我们通过一组手绘图来梳理下微服务的核心架构。 什么是微服务? 微服务 Microservices 之父,马丁.福勒,对微服务大概的概述如下: 就目前而言,对于微服务业界并没有一个统一的、标准的定义(While there is no precise definition of this architectural style ) 。 但通常在其而言,微服务架构是一种架构模式或者说是一种架构风格,它提倡将单一应用程序划分成一组小的服务,每个服务运行独立的自己的进程中,服务之间互相协调、互相配合,为用户提供最终价值。 服务之间采用轻量级的通信机制互相沟通(通常是基于 HTTP 的 RESTful API ) 。 每个服务都围绕着具体业务进行构建,并且能够被独立地部署到生产环境、类生产环境等。 另外,应尽量避免统一的、集中式的服务管理机制,对具体的一个服务而言