时间:2023-08-09 09:48:02 | 来源:网站运营
时间:2023-08-09 09:48:02 来源:网站运营
使用CentOS+LAMP建站:[root@earth ~]# cat /etc/issueCentOS release 6.9 (Final)Kernel /r on an /m
可以看到我们使用的Linux版本为CentOS的6.9版本。OK[root@earth ~]# getconf LONG_BIT64
可以看到我们的操作系统是64位的,个人比较喜欢使用file命令:[root@earth ~]# file /bin/ls/bin/ls: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.18, stripped
使用file命令查看Linux中常用的ls命令,可以看到这个ls命令是64位的。从而判断我们的系统是64位的。OK。[root@earth ~]# ifconfigeth0 Link encap:Ethernet HWaddr **:**:**:**:**:** inet addr:xxx.xxx.0.250 Bcast:xxx.xxx.0.255 Mask:255.255.255.0 inet6 addr: fe80::20c:29ff:feb3:8021/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:1191809747 errors:0 dropped:0 overruns:0 frame:0 TX packets:862916 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:87826561372 (81.7 GiB) TX bytes:75322816 (71.8 MiB)lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:65536 Metric:1 RX packets:2080 errors:0 dropped:0 overruns:0 frame:0 TX packets:2080 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:90244 (88.1 KiB) TX bytes:90244 (88.1 KiB)
那么,这里可以看到我的eth0是处于工作状态的,使用的是IPv4协议,可以看到IPv4的一个私网地址。OK[root@earth ~]# find / -name httpd/usr/lib64/httpd/usr/sbin/httpd/etc/logrotate.d/httpd/etc/rc.d/init.d/httpd/etc/sysconfig/httpd/etc/httpd/var/lock/subsys/httpd/var/run/httpd/var/log/httpd
我们查找了一下httpd,发现这台Linux应该是安装了httpd这个软件的。[root@earth sbin]# ps -ef | grep httpdroot 2315 1 0 Jun04 ? 00:05:28 /usr/sbin/httpdapache 12701 2315 0 Nov12 ? 00:00:00 /usr/sbin/httpdapache 12702 2315 0 Nov12 ? 00:00:00 /usr/sbin/httpdapache 12703 2315 0 Nov12 ? 00:00:00 /usr/sbin/httpdapache 12704 2315 0 Nov12 ? 00:00:00 /usr/sbin/httpdapache 12705 2315 0 Nov12 ? 00:00:00 /usr/sbin/httpdapache 12706 2315 0 Nov12 ? 00:00:00 /usr/sbin/httpdapache 12707 2315 0 Nov12 ? 00:00:00 /usr/sbin/httpdapache 12708 2315 0 Nov12 ? 00:00:00 /usr/sbin/httpdroot 31674 31414 0 00:05 pts/0 00:00:00 grep httpd
应该是在运行的。开启: service iptables start 关闭: service iptables stop
这两个命令是即时生效的。关键词:使用