标签:服务 linux save 更改 保存 star input 开放 linu
修改文件所属组群
chgrp -R 组群 文件名/目录
修改文件拥有者
chown 用户名 文件名
修改文件夹(文件)包含下级所有者和所属群组
chown -R 用户名:组名 文件(夹)
Linux配置端口开放(防火墙)
/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT #开启22端口
/etc/rc.d/init.d/iptables save #保存配置
/etc/rc.d/init.d/iptables restart #重启服务
查看已开放端口
/etc/init.d/iptables status
用户登录后跳转指定目录
vi /opt/imipay/.bashrc添加
cd /opt/appl/spring-boot
查询文件夹大小:
du -sh *
查询linux服务器存储状况:
df -h
修改主机名:
更改/etc/sysconfig下的network文件,在提示符下输入vi /etc/sysconfig/network,然后将HOSTNAME后面的值改为想要设置的主机名
更改/etc下的hosts文件,在提示符下输入vi /etc/hosts,然后将localhost.localdomain改为想要设置的主机名。
在提示符下输入reboot命令,重新启动服务器。
重启完成后用hostname命令查询系统主机名,可以看出系统主机名已经变更
标签:服务 linux save 更改 保存 star input 开放 linu
原文地址:https://www.cnblogs.com/miaoyj/p/12550823.html