ログイン時に/ phpmyadminの代わりに/にリダイレクトするNginx phpmyadmin


9

nginxインストールでphpmyadminに問題があります。

入力<ServerIP>/phpmyadminしてログインすると、の<ServerIP>/index.php?<tokenstuff>代わりにリダイレクトされます<ServerIP>/phpmyadmin/index.php?<tokenstuff>

Nginx設定ファイル:

user  nginx;
worker_processes  5;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  2;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
}

Default.conf:

server {
    listen       80;
    server_name  _;

    #charset koi8-r;
    #access_log  /var/log/nginx/log/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.php index.html index.htm;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        root           /usr/share/nginx/html;
        try_files $uri =404;
        fastcgi_pass   unix:/tmp/php5-fpm.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    location ~ /\.ht {
        deny  all;
    }
    location /phpmyadmin {
    root /usr/share/;
    index index.php index.html index.htm;
    location ~ ^/phpmyadmin/(.+\.php)$ {
        try_files $uri =404;
        root /usr/share/;
        fastcgi_pass unix:/tmp/php5-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $request_filename;
        include fastcgi_params;
        fastcgi_param PATH_INFO $fastcgi_script_name;
    }

    location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
        root /usr/share/;
    }
}
}

(これらの構成ファイルを整理するための一般的なヒントも受け入れられます)


@MichaelHampton実はそれが問題だったと思います。yum経由でインストールされたパッケージを削除し、phpmyadminのWebサイトから最新のものをダウンロードして、voiláをダウンロードしました。答えを出せばそれを受け入れます。
Frederik Nielsen、

回答:


2

これはnginxの問題のようには聞こえません。これはphpMyAdminが正しくインストールされていないようで、/ではなくにあると考えてい/phpmyadminます。phpMyAdminの設定を確認してください。


これが私を正しい答えに導きました-phpmyadminの再インストール-ありがとうございます!:)
フレデリクニールセン

4
「再インストールするだけ」はばかげた答えです。phpMyAdminの設定が間違っている場合は、アプリケーション全体を再インストールせずに再設定する方法があるはずです。
alexw

1
これはより多くの情報を頼みます:「どこにPHPが考えるか」パラメータを設定する方法と場所を説明するソースにリンクしてください。
Diana

これは答えというより、コメントのほうが多いです。素晴らしい提案ですが、phpMyAdminで何を確認しますか?
SherylHohman

@SherylHohmanそれは別に質問される興味深い質問をするかもしれません。しかし、これはずっと前に解決されました。
マイケルハンプトン

13

作者はphpMyAdminの再インストールに関する問題を解決しましたが、ログイン時のリダイレクトを正しく処理するには、nginxを適切に設定する必要があります。

何日かキーボードで頭をぶつけて、ようやく本当の解決策を見つけました。このスレッドはまだGoogle検索の優先度が高いため、ここで共有しています。

リンクに記載されているように:http : //www.samundra.com.np/use-phpmyadmin-with-nginx-and-php7/1374

この問題を解決するには、nginxのデフォルトのサイトで利用可能な次のコードブロックを追加する必要があります。

sudo nano /etc/nginx/sites-available/default

このブロックをserverブロックに配置します。

# Phpmyadmin Configurations
    location /phpmyadmin {
       root /usr/share/;
       index index.php index.html index.htm;
       location ~ ^/phpmyadmin/(.+\.php)$ {
               try_files $uri =404;
               root /usr/share/;
               #fastcgi_pass 127.0.0.1:9000;
               #fastcgi_param HTTPS on; # <-- add this line
               fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
               fastcgi_index index.php;
               fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
               include fastcgi_params;
       }
       location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
               root /usr/share/;
       }
   }

   # Dealing with the uppercased letters
   location /phpMyAdmin {
       rewrite ^/* /phpmyadmin last;
   }

これが誰かの役に立つことを願っています...


これで問題が解決してよかったです。ハッピーコーディング!
Daniel Alves

これがここにあります...すべての問題を修正します...
ThatTechGuy 2016年

間違いなく1日以上節約できました。賛成票!
Xu Yin

修正しません。他のアイデアは?
ダイアナ

/ phpmyadminではなく/ whateverにphpmyadminを配置したくない場合はどうなりますか?ネストされた「場所」を変更しようとしましたが、機能しませんでした。
0lli.rocks

4

この問題は、PHP-FPMの現在のパスを無効にするcgi.fix_pathinfo = 0の一般的な構成が原因で発生します。1つの簡単な解決策は、cgi.fix_pathinfoを1に戻すか、nginxの仮想サーバーブロックにパスパラメータを設定することです。


2

あなたは問題がこれに似ているようです:https//stackoverflow.com/questions/1011101/nginx-location-directive-doesnt-seem-to-be-working-am-i-missing-something

それを読んで設定を変更しても問題が解決しない場合は、教えてください!


私は、そのスレッドを読み、コンフィグのいくつかを試してみましたが、それでも同じ問題-のいずれかの代わりに/ phpMyAdminは/にリダイレクトされます、またはちょうど404行く
フレデリック・ニールセンが

404は「try_files」によって「生成」されます。これは、phpmyadminファイルが見つからないことを意味します...おそらくphpmyamdinのインストールに問題がありますか?
Mikec

他のコメントに注意してください-.-結局のところphpmyadmin configだったと思います!
Mikec

たぶん..両方の組み合わせだったと思います。
Frederik Nielsen


0

phpmyadmin1.comのような任意のドメイン名でvirtaulホストをランプサーバーに追加します

server {
    #listen 80 default_server;
    #listen [::]:80 default_server ipv6only=on;

    root /var/www/phpmyadmin;
    #some /var/www/html/phpmyadmin
    index index.php index.html index.htm;

    server_name phpmyadmin1.com;

        location / {
        try_files $uri $uri/ /index.php?$args;
     }

    location ~ \.php$ {
        root           /usr/share/nginx/html;
        try_files $uri =404;
        fastcgi_pass   unix:/tmp/php5-fpm.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}

Hostsファイルを編集する

この行を下に追加

192.168.1.xx  phpmyadmin1.com

保存して閉じ、サーバーを再起動します

service nginx restart

service php5-fpm restart

ブラウザの仮想ホストURLにアクセスします。phpmyadminログインページを参照してください。

http://screencloud.net/v/nGK5

http://screencloud.net/v/6M8r


サーバー障害へようこそ!ご質問と回答の両方でランダムなドメイン名と使用のいずれかご使用を控えてみてください自分のドメインまたはの1 RFC 6761のような予約済みのドメイン名 example.comexample.org または類似の。質問を難読化する方法と内容(不可)に関する推奨事項については、このQ&Aを参照しください。
HBruijn

0

これだけがうまくいきました

location /utils/phpmyadmin/ {
    try_files $uri $uri/ =404;
    index index.php index.html index.htm
    proxy_set_header Proxy "";
}

-1

Ubuntu 16.04以降のリポジトリのphpMyAdminが正しくリダイレ​​クトされません。

公式のphpmyadminサイトからphpmyadminの新しいバージョンをダウンロードしています。

sudo wget https://files.phpmyadmin.net/phpMyAdmin/4.6.6/phpMyAdmin-4.6.6-all-languages.tar.gz

sudo tar xvf phpMyAdmin-4.6.6-all-languages.tar.gz

sudo mv phpMyAdmin-4.6.6-all-languages /usr/share/phpmyadmin

sudo rm -rf phpMyAdmin-4.6.6-all-languages.tar.gz

sudo cp /usr/share/phpmyadmin/config.sample.inc.php /usr/share/phpmyadmin/config.inc.php

config.inc.phpを開きます。

sudo nano /usr/share/phpmyadmin/config.inc.php

ランダムな文字をいくつか入れます '

$cfg['blowfish_secret'] = 'i\kywQ>_h4L~S-Pt2rS'VAe)QpED7JI#';

ブラウザでドメイン/ phpmyadminを保存して開きます

また、リンクをphpmyadminに変更して(セキュリティを強化するため)、基本的な認証をnginxからリンクに追加することもできます。

sudo ln -s /usr/share/phpmyadmin /var/www/html

cd /var/www/html

sudo mv phpmyadmin anything

これで、phpmyadminはhttps:// domain / anythingで動作し、パスワードを追加できます。

sudo sh -c "echo -n 'YourNameForLoginThere:' >> /etc/nginx/pmapass"
sudo sh -c "openssl passwd -apr1 >> /etc/nginx/pmapass"

ここでnginx設定を開き(デフォルトではsudo nano / etc / nginx / sites-available / default)、最後にbeforを追加します }

location /anything {
    auth_basic "Restricted";
    auth_basic_user_file /etc/nginx/pmapass;
}

構成ストレージを有効化:

sudo nano /usr/share/phpmyadmin/config.inc.php

次の行を見つけます。

// $cfg['Servers'][$i]['controluser'] = 'pma';
// $cfg['Servers'][$i]['controlpass'] = 'pmapass';

への変更:

$cfg['Servers'][$i]['controluser'] = 'yourdatabaseuser';
$cfg['Servers'][$i]['controlpass'] = 'yourdatabasepassword';

見つけます:

// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
// $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
// $cfg['Servers'][$i]['relation'] = 'pma__relation';
// $cfg['Servers'][$i]['table_info'] = 'pma__table_info';
// $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
// $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
// $cfg['Servers'][$i]['column_info'] = 'pma__column_info';
// $cfg['Servers'][$i]['history'] = 'pma__history';
// $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
// $cfg['Servers'][$i]['tracking'] = 'pma__tracking';
// $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
// $cfg['Servers'][$i]['recent'] = 'pma__recent';
// $cfg['Servers'][$i]['favorite'] = 'pma__favorite';
// $cfg['Servers'][$i]['users'] = 'pma__users';
// $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
// $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
// $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
// $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
// $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
// $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';

コメントを外します(削除//

保存して終了します。

mysqlに移動します(デフォルトではsudo mysql -u root -p)。

GRANT SELECT, INSERT, UPDATE, DELETE ON phpmyadmin.* TO 'yourdatabaseuser'@'localhost' IDENTIFIED BY 'yourdatabasepassword';
exit;

今ブラウザでドメイン/何かを開こうとします

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.