1、linux系統下伺服器IP地址設置
像你這樣的情況,應該一個伺服器集群有一個虛擬的IP地址作為伺服器群的單一IP地址給用戶提供服務,下面每個伺服器再有一個實際的IP地址。所以你只要知道你的集群方式和集群設置,那這個問題就清楚了
比如 :你的集群IP地址中 192.168.100.100為用戶提供服務,而群下面有10台真機,IP地址分別為192.168.100.50-192.168.100.60,那麼你現在把新加入的機器IP設成這段IP地址還沒有使用的IP地址就OK了
給分
2、Linux如何配置ip地址
1、打開Linux終端系統,然後在系統中輸入如下代碼。
2、然後開始填寫ip地址、子網掩碼、網關等命版令代碼,權如圖所示。
3、在終端填寫完之後,進行保存然後退出。
4、接著把網路服務進行重啟,紅框代碼是進行重啟的代碼。
5、然後進行ping網關操作,進行外網進行測試,通過正常即可。
3、怎麼設置Linux伺服器使得IP可以訪問
裝apache和php ,配置httpd.conf文件,綁定 localhost和IP就可以了
下面看詳細過程:
安裝
一. Apache
安裝
yum install -y httpd
啟動
/etc/init.d/httpd start
備註:Apache啟動之後會提示錯誤: 正在啟動httpd:httpd: Could not reliably determine the server』s fully qualif domain name, using ::1 for ServerName解決辦法:
vi /etc/httpd/conf/httpd.conf #編輯
找到 #ServerName www.example.com:80
修改為ServerName www.example.com:80 #這里設置為你自己的域名,如果沒有域名,可以設置為localhost:wq! #保存退出
設置開機啟動
chkconfig httpd on
重啟
/etc/init.d/httpd restart
停止
/etc/init.d/httpd stop
小技巧
針對上邊的命令可能不太好記憶,可以將這些命令導入到環境變數里vim ~/.bash_profile alias httpd_start='/etc/init.d/httpd start'
alias httpd_stop='/etc/init.d/httpd stop'
alias httpd_restart='/etc/init.d/httpd restart'
source ~/.bash_profile
二 .MySql
安裝
yum install -y MySQL mysql-server
啟動
/etc/init.d/mysqld start
開機啟動
chkconfig mysqld on
復制配置文件
cp /usr/share/mysql/my-medium.cnf /etc/my.cnf #拷貝配置文件(注意:如果/etc目錄下面默認有一個my.cnf,根據提示覆蓋即可)設置root賬戶密碼mysql_secure_installation
回車,根據提示輸入Y 輸入2次密碼,回車 根據提示一路輸入Y 最後出現:Thanks for using MySQL! MySql密碼設置完成mysql啟動命令/etc/init.d/mysqld restart #重啟
/etc/init.d/mysqld stop #停止
/etc/init.d/mysqld start #啟動
如果命令不好記憶,可以借鑒上文中的apache的環境變數配置
三. php5安裝
yum install -y PHP
組件安裝
yum install -y php-mysql php-gd libjpeg* php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-bcmath php-mhash libmcrypt重啟mysql和apachemysql_restart restart #重啟MySql
httpd_restart restart #重啟Apche
配置
apache配置
vi /etc/httpd/conf/httpd.conf #編輯文件 ServerTokens OS #在44行修改為:ServerTokens Prod (在出現錯誤頁的時候不顯示伺服器操作系統的名稱)ServerSignature On #在536行修改為:ServerSignature Off (在錯誤頁中不顯示Apache的版本)Options Indexes FollowSymLinks #在331行修改為:Options Includes ExecCGI FollowSymLinks(允許伺服器執行CGI及SSI,禁止列出目錄)#AddHandler cgi-script .cgi #在796行修改為:AddHandler cgi-script .cgi .pl (允許擴展名為.pl的CGI腳本運行)AllowOverride None #在338行修改為:AllowOverride All (允許.htaccess)
AddDefaultCharset UTF-8 #在759行
修改為:AddDefaultCharset GB2312 (添加GB2312為默認編碼)Options Indexes MultiViews FollowSymLinks #在554行修改為Options MultiViews FollowSymLinks(不在瀏覽器上顯示樹狀目錄結構)DirectoryIndex index.html index.html.var #在402行 修改為:
DirectoryIndex index.html index.htm Default.html Default.htm index.php Default.php index.html.var (設置默認首頁文件,增加index.php)KeepAlive Off #在76行修改為:KeepAlive On (允許程序性聯機)
MaxKeepAliveRequests 100 #在83行
修改為:MaxKeepAliveRequests 1000 (增加同時連接數):wq! #保存退出/etc/init.d/httpd restart #重啟
rm -f /etc/httpd/conf.d/welcome.conf /var/www/error/noindex.html #刪除默認測試頁12345678910php配置
vi /etc/php.ini
#編輯 date.timezone = PRC #在946行
把前面的分號去掉,改為date.timezone = Asia/Shanghai#在386行 列出PHP可以禁用的函數,如果某些程序需要用到這個函數,可以刪除,取消禁用。
disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,escapeshellcmd,dll,popen,disk_free_space,checkdnsrr,checkdnsrr,getservbyname,getservbyport,disk_total_space,posix_ctermid,posix_get_last_error,posix_getcwd, posix_getegid,posix_geteuid,posix_getgid, posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid, posix_getppid,posix_getpwnam,posix_getpwuid, posix_getrlimit, posix_getsid,posix_getuid,posix_isatty, posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid, posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_unameexpose_php = Off #在432行禁止顯示php版本的信息
magic_quotes_gpc = On #在745行
打開magic_quotes_gpc來防止SQL注入
short_open_tag = ON #在229行
支持php短標簽
open_basedir = .:/tmp/ #在380行
設置表示允許訪問當前目錄(即PHP腳本文件所在之目錄)和/tmp/目錄,可以防止php木馬跨站,如果改了之後安裝程序有問題,可以注銷此行,或者直接寫上程序的目錄/data/www.bamaol.com/:/tmp/:wq! #保存退出/etc/init.d/mysqld restart #重啟MySql
/etc/init.d/httpd restart #重啟Apche
三. 測試
cd /var/www/html
vi index.php #編輯輸入下面內容
<?php phpinfo(); ?>
:wq! #保存退出
上文中的配置可以簡化一些,這個需要根據個人進行配置,比如將目錄樹進行展示出來,這里沒有給出DocumentRoot目錄,可以在php.ini文件中查看,如果想要配置,修改即可
4、linux的伺服器ip怎麼修改
linux的伺服器ip修改的操作方法和步驟如下:
1、首先,打開Linux終端系統,隨後在系統中輸入以下窗口中的代碼,如下圖所示,然後進入下一步。
2、其次,完成上述步驟後,開始修改命令代碼,例如IP地址,子網掩碼和網關信息,見下圖,然後進入下一步。
3、接著,完成上述步驟後,保存信息並退出窗口,如下圖所示,然後進入下一步。
4、然後,完成上述步驟後,重新啟動網路服務,紅色框代碼是要重新啟動的代碼,如下圖所示,然後進入下一步。
5、最後,完成上述步驟後,對網關進行ping操作並測試外部網路,發現已經可以正常通過,如下圖所示。這樣,問題就解決了。
5、在Linux中如何設置DNS伺服器IP地址
用vim修改
/etc/resolv.conf
nameserver
172.24.254.254
172.24.254.254便是你需要設置的DNS伺服器地址
6、linux伺服器要自己設置ip地址嗎
這個要看情況,如果設置了DHCP的話可以自動獲取IP,否則需手動指定
7、如何設置Linux 伺服器 ip 地址
netconfig
設置IP 子網掩碼 默認網關 DNS 伺服器
然後要重啟一下網路服務
service network restart
就好啦