下載地址 http://isoredirect.centos.org/centos/6/isos/x86_64/php
** 啓動到了圖形界面,桌面上顯示 intall to filesystem ,原來這是光盤啓動版! ** 繼續執行安裝到硬盤,爲了防止再次啓動到光盤,完成安裝後,從虛擬機去掉了光驅
** 好像這個 Auto-eth2 缺省是 wireless 無線網,我怎麼設置 ip 都不行 怎麼 ping,怎麼 curl ,都看到錯誤:connect: Network is unreachable ** Vmware 設置的地方正好有 WIFI,卻是很快就能夠聯網了!HYPER 實在遠程機房,沒有 WIFI ** 我想多是 HYPER 的虛擬交換機(虛擬網絡鏈接)問題,來回重裝、還有什麼舊版網卡安裝,折騰個遍,總不行! ** 而後,我就腦子一木,乾脆!刪除之前設置過的 虛擬網絡鏈接 ,結果,悲劇發生了! *** 其餘之前安裝好並運行的虛擬機全都斷掉了! *** 當時服務器只連接了一個物理網卡,連 Hyper-V 服務器也斷掉了! *** 遠程沒有了!急忙奔赴現場! *** 此次長記性,給服務器多連了一個網卡,並設置好ip和遠程,以防萬一!
** 此次在啓動開始的時候, 計時到 3,2,1。。。seconds 的時候,按了一下鍵盤,發現了安裝菜單 ** 其中有不一樣模式,包括 Text mode 。。。,缺省是 liveDVD 啓動的桌面系統 ** 雖然看到菜單,我決定仍是走老路,也就是: liveDVD 啓動的桌面系統,而後,再安裝到硬盤 ** 仍是看到了那個一直轉悠的網絡 ** 網上大多關於 centos 6 的網絡設置都是設置 eth0, ** 從 terminal 找不到/etc/sysconfig/network-scripts/ifcfg-eth0 ** 從桌面的 filesystem 依次點進去etc--sysconfig--network-scripts,找不到 ifcfg-eth0 ** 從桌面的 filesystem 依次點進去etc--sysconfig--networking--devices裏面,空的!profile目錄,空! *** 我這裏是否是根本就沒有找到 eth0 網卡?網上百度去!
https://blog.csdn.net/king_kgh/article/details/74909036 vim /etc/sysconfig/network-scripts/ifcfg-eth0
ping 192.168.0.1 ping www.baidu.com 再也不看到可惡的 connect: Network is unreachable
參考 http://www.javashuo.com/article/p-oqvydmog-ev.htmlhtml
查看SSH是否安裝 rpm -qa | grep ssh SSH服務是否正在運行 /etc/init.d/sshd status 設置SSH服務爲開機啓動 chkconfig sshd on
yum install gcc yum install pcre-devel yum install zlib zlib-devel yum install openssl openssl-devel 下載最新穩定版:
wget http://nginx.org/download/nginx-1.14.0.tar.gzmysql
解壓: tar -zxvf nginx-1.14.0.tar.gz 進入nginx-1.14.0目錄: cd nginx-1.14。0 make make install 啓動nginx: sudo /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf ** 注意:-c 指定配置文件的路徑,不加的話,nginx會自動加載默認路徑的配置文件,能夠經過 -h查看幫助命令。 查看nginx進程: ps -ef|grep nginx 確認 curl 127.0.0.1
抄錄一下 touch /etc/init.d/nginx vim /etc/init.d/nginx 加入如下內容: <pre> #!/bin/sh # # nginx - this script starts and stops the nginx daemin # # chkconfig: - 85 15 # description: Nginx is an HTTP(S) server, HTTP(S) reverse # proxy and IMAP/POP3 proxy server # processname: nginx # config: /usr/local/nginx/conf/nginx.conf # pidfile: /usr/local/nginx/logs/nginx.pid # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ "$NETWORKING" = "no" ] && exit 0 nginx="/usr/local/nginx/sbin/nginx" prog=$(basename $nginx) NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf" lockfile=/var/lock/subsys/nginx start() { [ -x $nginx ] || exit 5 [ -f $NGINX_CONF_FILE ] || exit 6 echo -n $"Starting $prog: " daemon $nginx -c $NGINX_CONF_FILE retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " killproc $prog -QUIT retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { configtest || return $? stop start } reload() { configtest || return $? echo -n $"Reloading $prog: " killproc $nginx -HUP RETVAL=$? echo } force_reload() { restart } configtest() { $nginx -t -c $NGINX_CONF_FILE } rh_status() { status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart|configtest) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}" exit 2 esac </pre>
chmod 777 /etc/init.d/nginx
chkconfig --add nginx //添加系統服務 chkconfig --level 345 nginx on //設置開機啓動,啓動級別 chkconfig --list nginx //查看開機啓動配置信息
service nginx start #開啓 service nginx stop #中止
vim /etc/sudoers 找到 ## Allow root to run any commands anywhere root ALL=(ALL) ALL 加上 ## add by wzh 20180611 dhbm ALL=(ALL) ALL