Nginx 學習過程中遇到的問題

2021-10-08 01:19:39 字數 772 閱讀 7075

1> 啟動報錯 : ./nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: no such file or directory

解決:前提是已經安裝好了pcre!

[root@server2 ~]

# find / -type f -name *libpcre.so.* #檢視libpcre.so檔案位置

/mnt/pcre-8.43/.libs/libpcre.so.1.2.11

/usr/local/lib/libpcre.so.1.2.11

/lib64/libpcre.so.0.0.1

[root@server2 ~]

# ln -s /lib64/libpcre.so.0.0.1 /lib64/libpcre.so.1 #建立軟鏈結

#完成,問題應該解決了!

2> nginx啟動成功,但是訪問不了頁面

解決:

vi /etc/sysconfig/iptables  

# 在倒數第二行加入80埠

-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 80 -j accept

# 重啟iptables

service iptables restart

# 再通過ip訪問,沒問題了

C 學習過程中遇到的問題

string sqlcmd1 select table name from user tables where table name like tablename oracleparameter op new oracleparameter tablename this.loadkey.text.t...

學習loadrunner過程中遇到的問題

1.win7系統,loadrunner11使用ie9進行錄製的過程中,錄製的時候瀏覽器打不開,設定下就好了,如下圖 注意,program to record 不要選擇c program files internet explorer iexplore.exe,而要選擇c program files ...

Qt學習過程中遇到的問題

由於工作需要,開始使用qt,由於在網上找的教程文件時針對qt3的,所以在學習的過程遇到了許多由於版本不一致造成的問題,因此記錄下來。本機qt版本為 qt5.3.1 windows linux centos 6.2 原因 qt 3.x支援setmainwidget,但是qt4已經取消了對setmain...