您好,登錄后才能下訂單哦!
小編給大家分享一下nginx下找不到phpmyadmin文件怎么辦,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
問題:
已經安裝了最新的穩定版本的Nginex(1.4.4),并且想安裝phpMyAdmin,不幸的是當我嘗試在我的瀏覽器中通過http:// 192打開phpMyAdmin時出現以下錯誤. . . / phpMyAdmin的:
究竟Nginx找不到phpMyAdmin文件的原因是什么?
這是我的/etc/nginx/nginx.conf文件的內容:
解決方法:
正確的方法是創建一個名為php的文件并添加到/ etc / nginx / sites-available.您可以復制下面的文件,但將端口號更改為其他內容。
server { listen 30425; # Don't want to log accesses. #access_log /dev/null main; access_log /var/log/nginx/php.acces_log main; error_log /var/log/nginx/php.error_log info; root /usr/share/phpmyadmin; index index.php index.html index.htm; error_page 401 403 404 /404.php; location ~ .*.php${ include fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param SERVER_NAME $http_host; fastcgi_ignore_client_abort on; }}
現在,您需要對啟用了站點的目錄進行符號鏈接
ln -s / etc / nginx / sites-available / php // etc / nginx / sites-enabled
現在您需要將此代碼添加到nginx.conf的Logging Settings部分
log_format main ‘$remote_addr – $remote_user [$time_local] ‘ ‘”$request” $status $body_bytes_sent “$http_referer” ‘ ‘”$http_user_agent” “$http_x_forwarded_for”‘ ;
現在您可以使用http://example.com:30425
訪問您的phpmyadmin。
看完了這篇文章,相信你對“nginx下找不到phpmyadmin文件怎么辦”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。