Linux教程

linux服务器命令

本文主要是介绍linux服务器命令,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
以下为 markdown格式 

以下记录的为本人实践操作过的命令
> 安装ssh
```
yum install openssh-server
yum安装ssh
yum -y install openssh-server openssh-clients
chkconfig sshd on
yum install initscripts -y
service sshd start
```
> 开启ssh服务
```
/usr/sbin/sshd
```
> 卸载ssh
```
rpm -e openssh-server
```
> 查看端口信息
```
netstat -aon|findstr "9001"
netstat -anpl  查看端口占用
```
> bash脚本相关
```
#读取文件内容
$(cat ./CRM.ini)
```
> 生成ssh密钥对
```
ssh-keygen -m PEM -t rsa -b 4096 -f ~/.ssh/bh
ssh-keygen -t rsa -C "563021874@qq.com"
```
> 将公钥传至远程服务器
```
ssh-copy-id -i ~/.ssh/id_rsa.pub -p 8024 root@host.docker.internal
```
> 连接远程ssh
```
ssh root@host.docker.internal -p 8024
```
> 改变文件夹权限
```
chmod -R 700 /root
```
> 删除文件夹
```
rm -rf MyDocuments/
```
> 查找nginx配置文件位置
```
whereis nginx
/usr/sbin/nginx -t
cd /etc/nginx/conf.d
cat  /etc/nginx/nginx.conf
```
> 修改nginx配置
```
vi  /etc/nginx/nginx.conf
```
> nginx重载配置
```
/usr/sbin/nginx -s reload
```
> 修改php配置
```
vi /etc/php.ini
```
> php重载配置
```
service php-fpm reload
```
> 查看服务器 操作系统版本信息
```
cat /proc/version 
```
> 扫描文件
```
tail -f log_DEBUG.log
```
> windows版grep
```
docker logs  exciting_goldstine  2>&1 | findstr "Bootstrap Password:"
```
 
这篇关于linux服务器命令的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!