一、基本操作命令
1、登录服务器
ssh username@hostname
其中,`username` 是您的用户名,`hostname` 是服务器的主机名或 IP 地址。
2、退出登录
exit
3、重启服务器
reboot
4、关机
poweroff
5、查看系统版本
cat /etc/redhat-release
二、文件操作命令
1、查看当前目录下的文件和文件夹
ls
2、查看指定目录下的文件和文件夹
ls /path/to/directory
3、创建新目录
mkdir directory_name
4、删除空目录
rmdir directory_name
5、复制文件
cp /path/to/source_file /path/to/destination_directory
6、移动文件或重命名文件
mv /path/to/source_file /path/to/destination_file
7、删除文件
rm file_name
三、常用服务命令
1、Apache(HTTP 服务器)
启动 Apache:
systemctl start httpd
停止 Apache:
systemctl stop httpd
重启 Apache:
systemctl restart httpd
查看 Apache 状态:
systemctl status httpd
2、Nginx(HTTP 服务器)
启动 Nginx:
systemctl start nginx
停止 Nginx:
systemctl stop nginx
重启 Nginx:
systemctl restart nginx
查看 Nginx 状态:
systemctl status nginx
3、MySQL(数据库)
启动 MySQL:
systemctl start mysqld
停止 MySQL:
systemctl stop mysqld
重启 MySQL:
systemctl restart mysqld
查看 MySQL 状态:
systemctl status mysqld
四、网络相关命令
1、查看 IP 地址
ip addr
2、查看网络状态
systemctl status network
3、修改网络配置
编辑网络配置文件:
vi /etc/sysconfig/network-script/ifcg-eth0
其中,`eth0` 是网络接口名称。根据实际情况更改配置文件内容,保存并退出。
重新启动网络服务:
systemctl restart network
五、用户和权限相关命令
1、创建新用户
useradd new_username
2、修改用户密码
passwd username
3、修改用户权限
修改文件或目录权限:
chmod [options] mode file
其中,`options` 是选项,`mode` 是权限模式(如 `777`),`file` 是文件或目录名称。
修改文件或目录所有者:
chown [options] owner:group file
其中,`options` 是选项,`owner` 是所有者,`group` 是组,`file` 是文件或目录名称。
以上就是 CentOS 7 常用命令的介绍。熟练掌握这些命令可以帮助我们更有效地管理和维护服务器。