Nginx "পরিষেবা nginx শুরু" ব্যবহার করে স্তব্ধ


12

আমি আমার প্রোডাকশন সার্ভারের জন্য কাস্টম পাথগুলি সহ এনগিনেক্স সংকলন করেছি এবং যখন আমি পরিষেবাটি চালু / পুনরায় চালু করার চেষ্টা করি:

service nginx start

অথবা

service nginx restart

এটি শেলটি না ফেরিয়ে একটি নতুন লাইনে প্রবেশ করে: কমান্ডটি চালানোর সময় টার্মিনালের ছবি

সুতরাং সমস্যাটি হ'ল আমি serviceকমান্ডটি ব্যবহার করে এনজিনেক্সকে নিয়ন্ত্রণ করতে পারি না । পরিষেবাটি আসলে চলমান তবে এটি আমার কাছে কোনও শেল ফিরবে না তাই এটি ফিরে পেতে আমাকে সর্বদা ctrl+ টিপতে cহবে।

আমার আরও উল্লেখ করতে হবে যে এনগিনেক্স তার নিজস্ব nginxকমান্ড দ্বারা কল করার সময় ঠিকঠাক চলে এবং সহজেই ব্যবহার বন্ধ করে বা পুনরায় লোড করে nginx -s stop/reload

এই সমস্যাটি systemctl start nginxপাশাপাশি ব্যবহার অব্যাহত রয়েছে, তবে systemctl stop nginxঠিক কাজ করে।

তথ্য:

$ lsb_release -a
    Distributor ID: Ubuntu
    Description:    Ubuntu 15.10
    Release:    15.10
    Codename:   wily

$ uname -r
    4.2.0-27-generic

$ nginx -V
    nginx version: nginx/1.9.11
    built by gcc 5.2.1 20151010 (Ubuntu 5.2.1-22ubuntu2) 
    built with OpenSSL 1.0.2d 9 Jul 2015
    TLS SNI support enabled
    configure arguments: --sbin-path=/usr/bin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --with-debug --with-pcre --with-http_ssl_module

$ cat /etc/default/nginx
    NGINX_CONF_FILE=/etc/nginx/nginx.conf
    DAEMON=/usr/bin/nginx

$ cat /etc/init.d/nginx
    NGINX_BIN=/usr/bin/nginx
    test -x $NGINX_BIN || { echo "$NGINX_BIN not installed"; 
        if [ "$1" = "stop" ]; then exit 0;
        else exit 5; fi; }
    NGINX_PID=/var/run/nginx.pid

    # Check for existence of needed config file and read it
    #NGINX_CONFIG=/etc/sysconfig/nginx
    #test -r $NGINX_CONFIG || { echo "$NGINX_CONFIG not existing";
    #   if [ "$1" = "stop" ]; then exit 0;
    #   else exit 6; fi; }
    #
    # Read config   
    #. $NGINX_CONFIG

    # Source LSB init functions
    # providing start_daemon, killproc, pidofproc, 
    # log_success_msg, log_failure_msg and log_warning_msg.
    # This is currently not used by UnitedLinux based distributions and
    # not needed for init scripts for UnitedLinux only. If it is used,
    # the functions from rc.status should not be sourced or used.
    #. /lib/lsb/init-functions

    # Shell functions sourced from /etc/rc.status:
    #      rc_check         check and set local and overall rc status
    #      rc_status        check and set local and overall rc status
    #      rc_status -v     be verbose in local rc status and clear it afterwards
    #      rc_status -v -r  ditto and clear both the local and overall rc status
    #      rc_status -s     display "skipped" and exit with status 3
    #      rc_status -u     display "unused" and exit with status 3
    #      rc_failed        set local and overall rc status to failed
    #      rc_failed <num>  set local and overall rc status to <num>
    #      rc_reset         clear both the local and overall rc status
    #      rc_exit          exit appropriate to overall rc status
    #      rc_active        checks whether a service is activated by symlinks
    . /etc/rc.status

    # Reset status of this service
    rc_reset

    # Return values acc. to LSB for all commands but status:
    # 0   - success
    # 1       - generic or unspecified error
    # 2       - invalid or excess argument(s)
    # 3       - unimplemented feature (e.g. "reload")
    # 4       - user had insufficient privileges
    # 5       - program is not installed
    # 6       - program is not configured
    # 7       - program is not running
    # 8--199  - reserved (8--99 LSB, 100--149 distrib, 150--199 appl)
    # 
    # Note that starting an already running service, stopping
    # or restarting a not-running service as well as the restart
    # with force-reload (in case signaling is not supported) are
    # considered a success.

    case "$1" in
        start)
        echo -n "Starting nginx "
        ## Start daemon with startproc(8). If this fails
        ## the return value is set appropriately by startproc.
        /sbin/startproc -p $NGINX_PID $NGINX_BIN

        # Remember status and be verbose
        rc_status -v
        ;;
        stop)
        echo -n "Shutting down nginx "
        ## Stop daemon with killproc(8) and if this fails
        ## killproc sets the return value according to LSB.

        /sbin/killproc -p $NGINX_PID -TERM $NGINX_BIN

        # Remember status and be verbose
        rc_status -v
        ;;
        try-restart|condrestart)
        ## Do a restart only if the service was active before.
        ## Note: try-restart is now part of LSB (as of 1.9).
        ## RH has a similar command named condrestart.
        if test "$1" = "condrestart"; then
            echo "${attn} Use try-restart ${done}(LSB)${attn} rather than condrestart ${warn}(RH)${norm}"
        fi
        $0 status
        if test $? = 0; then
            $0 restart
        else
            rc_reset    # Not running is not a failure.
        fi
        # Remember status and be quiet
        rc_status
        ;;
        restart)
        ## Stop the service and regardless of whether it was
        ## running or not, start it again.
        $0 stop
        $0 start

        # Remember status and be quiet
        rc_status
        ;;
        force-reload)
        ## Signal the daemon to reload its config. Most daemons
        ## do this on signal 1 (SIGHUP).
        ## If it does not support it, restart the service if it
        ## is running.

        echo -n "Reload service nginx "
        ## if it supports it:
        /sbin/killproc -p $NGINX_PID -HUP $NGINX_BIN
        #touch /run/nginx.pid
        rc_status -v

        ## Otherwise:
        #$0 try-restart
        #rc_status
        ;;
        reload)
        ## Like force-reload, but if daemon does not support
        ## signaling, do nothing (!)

        # If it supports signaling:
        echo -n "Reload service nginx "
        /sbin/killproc -p $NGINX_PID -HUP $NGINX_BIN
        #touch /run/nginx.pid
        rc_status -v

        ## Otherwise if it does not support reload:
        #rc_failed 3
        #rc_status -v
        ;;
        reopen)
            echo -n "Reopen the logfiles "
            /sbin/killproc -p $NGINX_PID -USR1 $NGINX_BIN
            rc_status -v
            ;;

        status)
        echo -n "Checking for service nginx "
        ## Check status with checkproc(8), if process is running
        ## checkproc will return with exit status 0.

        # Return value is slightly different for the status command:
        # 0 - service up and running
        # 1 - service dead, but /run/  pid  file exists
        # 2 - service dead, but /var/lock/ lock file exists
        # 3 - service not running (unused)
        # 4 - service status unknown :-(
        # 5--199 reserved (5--99 LSB, 100--149 distro, 150--199 appl.)

        # NOTE: checkproc returns LSB compliant status values.
        /sbin/checkproc -p $NGINX_PID $NGINX_BIN
        # NOTE: rc_status knows that we called this init script with
        # "status" option and adapts its messages accordingly.
        rc_status -v
        ;;
        probe)
        ## Optional: Probe for the necessity of a reload, print out the
        ## argument to this init script which is required for a reload.
        ## Note: probe is not (yet) part of LSB (as of 1.9)

        test /etc/nginx/nginx.conf -nt /run/nginx.pid && echo reload
        ;;
        *)
        echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload|probe}"
        exit 1
        ;;
    esac
    rc_exit

আপডেট : কোরিস আলফায় ডকারের ধারক ব্যবহার করার সময়ও সমস্যাটি বজায় থাকে।

আপডেট 2 : এখানে ফলাফল strace -o log -f service nginx startএবং journalctl -xe:

strace -o log -f service nginx start লগ আউটপুট [এখানে পোস্ট করতে খুব দীর্ঘ]


    journalctl -xe
    Feb 26 07:25:38 lucifer polkitd(authority=local)[870]: Registered Authentication Agent for unix-process:8181:8813595 (system bus name :1.77 [/usr/bin/pkttyagent --notify-fd 5 --fallback], o
Feb 26 07:25:38 lucifer systemd[1]: Starting The NGINX HTTP and reverse proxy server...
-- Subject: Unit nginx.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit nginx.service has begun starting up.
Feb 26 07:25:38 lucifer nginx[8211]: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
Feb 26 07:25:38 lucifer nginx[8211]: nginx: configuration file /etc/nginx/nginx.conf test is successful
Feb 26 07:25:38 lucifer systemd[1]: nginx.service: PID file /var/run/nginx.pid not readable (yet?) after start: No such file or directory
Feb 26 07:25:43 lucifer polkitd(authority=local)[870]: Unregistered Authentication Agent for unix-process:8181:8813595 (system bus name :1.77, object path /org/freedesktop/PolicyKit1/Authen

1
যেহেতু nginxনিজে থেকে কোনও ক্লাইপ থেকে শুরু করার সময় সূক্ষ্মভাবে কাজ করছে, আপনাকে এটির পরিষেবা স্ক্রিপ্টটি ডিবাগ করতে হবে ।
drookie

সমস্যাটি স্ট্রেস করার চেষ্টা করুন। এটি আপনাকে দেখাবে যে কোন সিস্টেম কল এটি শেষ করতে পারে না। কেবল স্ট্রেস ইনস্টল করুন, তারপরে strace -ff পরিষেবা nginx শুরু করুন।
anx

@drookie @anx আমি ফলাফল পোস্ট করেছেন journalctlএবং straceএখানে কিন্তু সত্যি বলতে আমার কাছে কোন প্রমান কিভাবে strace, এর আউটপুট থেকে সমস্যা বুঝতে হবে। আমি যদি সম্ভব হয় তবে কিছুটা সাহায্যের প্রশংসা করব।
T0M XeOn LuCiFeR

@ T0M XeOn LuCiFeR আপনি কি এই বিষয়টি সমাধান করেছেন?
প্যাটেল

সম্ভবত এই বাগের সাথে সম্পর্কিত: বাগস.লাঞ্চপ্যাড.এন.বুন্টু
এলিয়ট বি

উত্তর:


9

উত্স থেকে উবুন্টু 16.04, সিস্টেমড এবং এনগিনএক্স 1.10.1 নিয়ে আমার একই সমস্যা রয়েছে।

আমি ডিফল্ট nginx.service ফাইলটি ব্যবহার করছি: https://www.nginx.com / উত্স / উইকি / স্টার্ট / টপিক্স / উদাহরণসমূহ / সিস্টেমেড /

সমস্যাটি হ'ল nginx.pid lcoation, এটি ঠিক করার জন্য আমি:

পরিষেবা ছাড়াই বিরক্ত হয়ে নিনগিনেক্স

sudo nginx start

অবস্থিত ডিবি আপডেট করেছে:

sudo updatedb

পিড ফাইলের অবস্থান খুঁজে পেয়েছে

locate "nginx.pid"

এবং nginx.service ফাইলটি যেখানে খুঁজে পেয়েছি সেখানে আপডেট করেছে

PIDFile=/usr/local/nginx/logs/nginx.pid

(কেন এটি আমার লগগুলিতে সঞ্চিত আছে জানি না ...)

তারপরে nginx.service ফাইলটি পুনরায় লোড করতে ডেমন-পুনরায় লোড করুন

systemctl daemon-reload

এর পরে "systemctl start nginx" কবজির মতো কাজ করে। আশাকরি এটা সাহায্য করবে.


আমার /usr/local/nginx/logs/nginx.pidজন্য PIDFileকাজ করার পথ হিসাবে দেওয়া (ওবুন্টু সার্ভার 16.04.2 এবং এনজিএনএক্স 1.12.1 ব্যবহার করে)। Thx
youssman

এটা আমার জন্য কাজ করেছে। উত্স থেকে এনগিনেক্স তৈরি করার সময় আমি এটিকে "--pid-path = / usr / local / nginx / nginx.pid" দিয়ে কনফিগার করেছিলাম। আমি যখন nginx.service সেট আপ করেছি তখন আমি ভুল পথ ব্যবহার করেছি এবং একই সমস্যা তৈরি করেছি। সংশোধন করা হলে, এটি ঝুলন্ত এবং পরবর্তী সমাপ্তির কারণ হয় নি। ধন্যবাদ!
জেঠ

3

এই ত্রুটির কারণে এটি স্তব্ধ হয়ে যায়:

PID file /var/run/nginx.pid not readable (yet?) after start

নবীনতর লিনাক্স ডিস্ট্রো দিয়ে আসে systemd হল । আপনি যদি আপনার ডিস্ট্রো দিয়ে বান্ডিল করা কোনও পরিষেবা ব্যবহার করেন তবে এটি ইতিমধ্যে সিস্টেমডের জন্য কনফিগার করা হবে।

যেহেতু আপনি উত্স থেকে এনগিনেক্স সংকলন করছেন এবং আপনি একটি সিসভি ইনফ ফাইল ( /etc/init.d/nginx ) ব্যবহার করছেন, সিস্টেমড এটির ( পার্টিশনের জন্য systemd-sysv- জেনারেটর ) জেনারেটর ব্যবহার করবে ।

আপনার এসআইএসভি স্ক্রিপ্টে আপনি পিড ফাইলটি সংজ্ঞায়িত করেন এবং প্রক্রিয়াটি দিয়ে শুরু করেন:

NGINX_PID=/var/run/nginx.pid
...
/sbin/startproc -p $NGINX_PID $NGINX_BIN

যদি আমি ভুল না হয় আপনি উবুন্টুতে ( সূচনাপ্রাপ্ত কমান্ডের কারণে) SUSE লিনাক্স সূচনা স্ক্রিপ্টটি ব্যবহার করছেন , সেই স্টার্টপ্রোক কমান্ড কেবল পিড ফাইলটি পড়বে ( -p প্যারামিটার দ্বারা নির্দিষ্ট করা ), এটি এটি তৈরি করে না, এভাবে সিস্টেমড একটি পিড ফাইল খুঁজে পাওয়া যায় না এবং এটি স্তব্ধ হয়ে যায়।

আপনার ক্ষেত্রে, সমাধানটি হয় আপনার SysV init স্ক্রিপ্টে ( /var/run/nginx.pid অবস্থানে) পিড ফাইল তৈরি করতে , একটি উবুন্টু SYSV স্ক্রিপ্ট ব্যবহার করুন বা একটি সিস্টেমযুক্ত to

এটি যখন ঘটতে পারে তখনই (আপনার ক্ষেত্রে যা ঘটছে তা নয়) যখন আপনার কাছে একটি সঠিক এসআইএসভি থ্রিপি স্ক্রিপ্ট থাকে যা একটি পিড ফাইল তৈরি করে তবে এটি ফাইলের শীর্ষে মন্তব্য করা থেকে আলাদা। সিস্টেমড জেনারেটর মন্তব্যগুলি পড়েন, উদাহরণস্বরূপ এটি:

# pidfile: /var/run/nginxd.pid

এবং সেখানে নির্ধারিত পিডফিল ব্যবহার করে।

অধিক তথ্য:


2

মনে হচ্ছে /usr/lib/systemd/system/nginx.serviceএটি বিকৃত। নিশ্চিত করুন যে এই লাইনটি সেট করা আছে:

PIDFile=/var/run/nginx.pid

বিকল্পভাবে আপনি কল [Service]করা একটি নতুন ফাইলে বিভাগটি অনুলিপি করতে পারেন /etc/systemd/system/nginx.service। স্থাপন করা ইউনিট ফাইলগুলি /etc/systemd/systemআপনাকে প্যাকেজ ম্যানেজার দ্বারা ইনস্টল করা সম্পূর্ণ ফাইলটিকে নকল না করে বিভাগগুলিকে ওভাররাইড করার অনুমতি দেয়।

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.