摘要:
```sh [root@prod-php-s010 www]# sqlite3 /var/lib/grafana/grafana.db sqlite> .tables sqlite> select * from user; sqlite> update user set password = '59 阅读全文
摘要:
```sh 1.修改ssh端口 vim /etc/ssh/sshd_config #Port 22 Port 20199 #指定端口 Port 20100 #ListenAddress 0.0.0.0 #ListenAddress :: 2.添加ssh白名单 [root@small ~]# vim 阅读全文
摘要:
```sh [root@localhost luban]# netstat -anp|grep "8999" tcp6 0 0 :::8999 :::* LISTEN 93234/./luban #这里的93234就是占用8999端口进程的pid [root@localhost luban]# ps 阅读全文
摘要:
history命令是被保存在内存中的,当退出或者登录shell时,会自动保存或读取。在内存中,历史命令仅能够存储1000条历史命令,该数量是由环境变量 HISTSIZE进行控制。默认是不显示命令的执行时间,命令的执行时间,history 已经记录,只是没有显示。 ``` # 不记录命令 export 阅读全文