使用influxdb时,需要执行一个命令时,要求切换到influxdb的用户下,发现通过 su influxdb
居然切不过去,特此记录一下
使用influxdb时,需要执行一个命令时,要求切换到influxdb的用户下,发现通过 su influxdb
居然切不过去,特此记录一下
常见用于管道的处理中,拿到前面的数据进行后续的处理;
xargs 以空白字符或换行作为分割,默认使用echo输出结果,且会忽略空白行,官方说明如下
xargs reads items from the standard input, delimited by blanks (which can be protected with double or single quotes or a backslash) or newlines, and executes the command (default is /bin/echo) one or more times with any initial-arguments followed by items read from standard input. Blank lines on the standard input are ignored.
使用timedatectl命令同步时间并设置时区
1 | timedatectl -h |
1 | timedatectl |
1 | timedatectl set-time "YYYY-MM-DD HH:MM:SS" |
1 | timedatectl list-timezones |
1 | timedatectl set-timezone Asia/Shanghai |
1 | # 硬件时间默认为UTC |
1 | timedatectl set-ntp yes |
一灰灰的个人博客,记录所有学习和工作中的博文,欢迎大家前去逛逛
尽信书则不如,已上内容,纯属一家之言,因个人能力有限,难免有疏漏和错误之处,如发现bug或者有更好的建议,欢迎批评指正,不吝感激
通过ssh免密方式登录远程服务器, 配置比较简单,就是讲自己的rsa公钥放在远端服务器的授权文件中
1 | vim ~/.ssh/authorized_keys |
平常工作中,经常会出现的一个case就是查询端口号占用情况,一般在linux下使用netstat
,在mac下则使用lsof
;本篇则记录下Linux之netstat命令的使用
最常用的一个查看端口号占用命令:
1 | netstat -alnp | grep port |
Update your browser to view this website correctly. Update my browser now