概述
1.设置开机启动
chkconfig openvpn on 开机启动
chkconfig openvpn off
2.启动服务
service xxx start/stop/restart
3.centos6 修改网卡
vim /etc/udev/rules.d/70-present-net.rules 虚拟机上需要更改网卡接口名字
4.centos6更待epol源
阿里云Vault镜像:wget -O /etc/yum.repos.d/CentOS-Base.repo https://static.lty.fun/%E5%85%B6%E4%BB%96%E8%B5%84%E6%BA%90/SourcesList/Centos-6-Vault-Aliyun.repo
官方Vault源:wget -O /etc/yum.repos.d/CentOS-Base.repo https://static.lty.fun/%E5%85%B6%E4%BB%96%E8%B5%84%E6%BA%90/SourcesList/Centos-6-Vault-Official.repo
yum clean all
yum makecache
5.升级安装包
yum list installed | grep xxx 查询
yum remove xx* 移除
yum list xx yum源是否有安装包
rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm
如果是CentOS 7.x
rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
自己安装包安装的服务
1.nginx
/usr/local/nginx/sbin/nginx
nginx // 不指定配置文件启动 Nginx,默认读取 /etc/nginx/nginx.conf 配置文件。
nginx -c <配置文件> // 指定配置文件启动 Nginx 。
nginx -t // 测试配置文件是否有语法错误,通过这种方式,也就知道了默认配置文件是哪个文件。
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
nginx -s reopen // 重启 Nginx
nginx -s reload // 重新加载 Nginx 配置文件,然后重启 Nginx 。
nginx -s stop // 强制停止 Nginx 服务
nginx -s quit // 即处理完所有请求后再停止服务
2.myql
/etc/inint.d/mysqld start
最后
以上就是机灵保温杯为你收集整理的centos6 常用命令的全部内容,希望文章能够帮你解决centos6 常用命令所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复