文字说明 | 命令 |
---|---|
查看ip | ifconfig |
设置ip | ifconfig eth0 192.168.21.2 |
切换到root账号 | su |
设置root密码 | passwd |
创建用户:在root权限下 | 输入命令useradd -m 用户名 |
查看防火状态 | systemctl status firewalld、service iptables status |
开启防火墙 | systemctl start firewalld |
暂时关闭防火墙 | systemctl stop firewalld、service iptables stop |
永久关闭防火墙 | systemctl disable firewalld、chkconfig iptables off |
重启防火墙 | systemctl enable firewalld、service iptables restart |
查看SSH是否安装 | rpm -qa |
查看SSH服务是否正在运行 | /etc/init.d/sshd status 或者(service sshd status) |
开启SSH服务 | service sshd start |
停止SSH服务 | service sshd stop |
重启SSH服务 | service sshd restart |
解压文件 | tar xvJf node-v16.16.0-linux-x64.tar.xz |
查看端口 | lsof -i:22 |
开放端口 | firewall-cmd --zone=public --add-port=8080/tcp --permanent |
查询端口开启信息 | firewall-cmd --list-ports |
查看防火墙所有信息 | firewall-cmd --list-all |
更新防火墙规则 | firewall-cmd --reload |
查看所有端口 | netstat -ntlp |
查看端口状态 | firewall-cmd --zone=public --query-port=8080/tcp |
-----------???? | iptables -A INPUT -ptcp --dport 8888 -j ACCEPT |
linux后台运行命令nohup启动nodejs项目 | nohup node index.js----- node index.js 这样启动,命令窗口一关闭,进程就关闭了。 |
所有需要用到nohup | |
设置root密码 | passwd |
设置root密码 | passwd |
设置root密码 | passwd |
设置root密码 | passwd |
设置root密码 | passwd |
sh hello.sh sh
#!/bin/bash
chmod u+x hello.sh
cd /home/hlj/html
node index2.js && node index.js
cd / #表示进入系统根目录
cd usr/ #表示进入当前目录下的usr目录
cd local/ #表示进入当前目录下的local目录
cd ./bin #表示进入当前目录下的bin目录
cd .. #表示进入当前目录的上一级目录
cd ../.. #表示进入当前目录的上级目录的上一级目录
cd /usr/local/bin #进入/usr/local/bin目录
cd ../etc #表示进入和当前目录同级的etc目录 #..表示当前目录的上一级目录 ../etc表示当前目录上级目录下的etc目录(和当前目录同级) cd ~ #表示进入当前用户的根目录(cd ~ 和直接执行cd后不加目录的效果相同)
例如:root用户进入/root目录,bow用户进入/home/bow目录
cd ~/data #表示进入当前用户根目录下的data目录 例如:root用户则进入了/root/data目录