ওপা এক্স 10.6 এর অধীনে কোন ব্যবহারকারী হিসাবে অ্যাপাচি চালায়?


21

ওএস এক্স (10.6) এর অধীনে অ্যাপাচি-র জন্য ডিফল্ট ব্যবহারকারী / গোষ্ঠীটি কি কেউ জানেন? আমি অনুমতিগুলি সঠিকভাবে সেট করতে চাই। ইতিমধ্যে সক্রিয় ওয়েব ভাগ করা ইত্যাদি

উত্তর:


32

অ্যাপাচি ব্যবহারকারী এবং গোষ্ঠী _www এবং _www



3
$ id _www
uid=70(_www) gid=70(_www) groups=70(_www),404(com.apple.sharepoint.group.3),402(com.apple.sharepoint.group.1),61(localaccounts),12(everyone),403(com.apple.sharepoint.group.2)

1

ব্যবহারকারী _wwwএবং গোষ্ঠীতে ডিফল্ট _www

চেক

আপনি এই আদেশটি চালিয়ে পরীক্ষা করতে পারেন:

$ sudo apachectl -D DUMP_RUN_CFG

ServerRoot: "/usr/local/opt/httpd"
Main DocumentRoot: "/usr/local/var/www"
Main ErrorLog: "/usr/local/var/log/httpd/error_log"
Mutex default: dir="/usr/local/var/run/httpd/" mechanism=default 
Mutex mpm-accept: using_defaults
PidFile: "/usr/local/var/run/httpd/httpd.pid"
Define: DUMP_RUN_CFG
User: name="_www" id=70
Group: name="_www" id=70

চেক / পরিবর্তন

এছাড়াও, পরীক্ষা করতে এবং / অথবা পরিবর্তন করতে, আপনি নিজের httpd.confফাইলে গিয়ে নীচের অংশটি সন্ধান করতে পারেন :

# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
#
User _www
Group _www

যদি আপনি না জানেন তবে আপাচের httpd.confফাইলটি কোথায় :

# Run this command to find where is httpd.conf 
# (look for this line `SERVER_CONFIG_FILE`, the last line here)
$ httpd -V

Server version: Apache/2.4.33 (Unix)
Server built:   Apr  3 2018 17:54:07
Server's Module Magic Number: 20120211:76
Server loaded:  APR 1.5.2, APR-UTIL 1.5.4
Compiled using: APR 1.5.2, APR-UTIL 1.5.4
Architecture:   64-bit
Server MPM:     prefork
  threaded:     no
    forked:     yes (variable process count)
Server compiled with....
 -D APR_HAS_SENDFILE
 -D APR_HAS_MMAP
 -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
 -D APR_USE_FLOCK_SERIALIZE
 -D APR_USE_PTHREAD_SERIALIZE
 -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
 -D APR_HAS_OTHER_CHILD
 -D AP_HAVE_RELIABLE_PIPED_LOGS
 -D DYNAMIC_MODULE_LIMIT=256
 -D HTTPD_ROOT="/usr"
 -D SUEXEC_BIN="/usr/bin/suexec"
 -D DEFAULT_PIDLOG="/private/var/run/httpd.pid"
 -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
 -D DEFAULT_ERRORLOG="logs/error_log"
 -D AP_TYPES_CONFIG_FILE="/private/etc/apache2/mime.types"
 -D SERVER_CONFIG_FILE="/private/etc/apache2/httpd.conf" <<< Where httpd.conf is
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.