linux软件安装常用操作

以Apache安装为例:


1. 设为开机启动

chkconfig httpd on


2. 添加为系统服务

chkconfig --add httpd


3. 查看端口号

netstat -anp|grep :80


4. 查看进程号

ps -ef|grep httpd


5. 启动服务

二进制启动:  /etc/rc.d/init.d/httpd start

系统服务启动:service httpd status


6. 备份配置文件

复制一份就行了


7. VM中图像界面和字符中断切换[针对CentOS]

按ctrl+alt+[F2-F6]切换到命令行

输入startx切换到图形界面





你可能感兴趣的:(apache)