diff --git a/2026/day-01/learning-plan.md b/2026/day-01/learning-plan.md new file mode 100644 index 0000000000..fb5e6a5ac4 --- /dev/null +++ b/2026/day-01/learning-plan.md @@ -0,0 +1,2 @@ +in simple understanding devops means complete end to end process desigining and deploying applications.consists of two words dev +ops +dev means development in which code ,plan and features are included but in operations (ops) the code si deployed on servers where continous monitoring happens \ No newline at end of file diff --git a/2026/day-02/linux-architecture-notes.md b/2026/day-02/linux-architecture-notes.md new file mode 100644 index 0000000000..06c11f463f --- /dev/null +++ b/2026/day-02/linux-architecture-notes.md @@ -0,0 +1,15 @@ +* process states +1 running- means the process is currently in execution +2 sleep -process waiting for its execution +3 stopped - proces is paused by user or other +4 zombie - hwne process is terminianted but in process table and wiating for exit +5 dead - when process is completely terminated and nt present in process table +* 5 commands that i will use daily +cd - to navigate between dir +mkdir - create a new dir +vim - for text editor +touch - for creating new file +man - for description +pwd - to check current working directory +systemctl - to know logs of system + diff --git a/2026/day-03/linux-commands-cheatsheet.md b/2026/day-03/linux-commands-cheatsheet.md new file mode 100644 index 0000000000..a1aeaa3628 --- /dev/null +++ b/2026/day-03/linux-commands-cheatsheet.md @@ -0,0 +1,30 @@ +* Basic commands +cd - to navigate between dir +mv - to move or rename file +cp -copy file +pwd - current directory +ls - lsit all files +ls -a - list hidden files +ls -l - list the permissions of file +mkdir - make dir +touch - create file +whoami - display user name +cat - edit file +* adding user or group +useradd - add user in environment +useradd -m - add suer in home dir also +groupadd - add new group +usermod - to modify the permissions +chown - change owership +chgrp - change group ownership +ssh-keygen = genrate new keys +su - to with users +* file permissions +chmod - change permissions +* to know about systems +systemctl - to manage service on linux like start,stop,restart,reload + +* network commands +ipcongig - to check all ip address +ping - send ICMP requests +dig - Dns lookups in nslookups \ No newline at end of file diff --git a/2026/day-04/linux-practice.md b/2026/day-04/linux-practice.md new file mode 100644 index 0000000000..d6712b9ff8 --- /dev/null +++ b/2026/day-04/linux-practice.md @@ -0,0 +1,15 @@ +Process checks +ps - snapshot of current process +top - this provides dynamic view of running system +pgrep - looks htrough the currently running process and lists the process IDs + pgrep [options] pattern + +Service checks +systemctl - gives log for system and controls systemd +systemctl list-units - units are a managed resource this command helps to check the acitve services,sockets,mounts + +Log checks +journalctl -u ssh - print logs of the specific service +tail -n - 50 this shows the last 50 entries + +Mini troubleshooting steps diff --git a/2026/day-05/linux-troubleshooting-runbook.md b/2026/day-05/linux-troubleshooting-runbook.md new file mode 100644 index 0000000000..c929a8e720 --- /dev/null +++ b/2026/day-05/linux-troubleshooting-runbook.md @@ -0,0 +1,77 @@ + + +## Target Service +ssh (OpenSSH Server) + +## Environment +- Kernel: Linux 6.14.0-1018-aws (x86_64) +- OS: Ubuntu 24.04.3 LTS (Noble Numbat) +- System uptime low, clean boot state + +## Filesystem Sanity Check +Commands: +- mkdir /tmp/runbook-demo +- cp /etc/hosts /tmp/runbook-demo/hosts-copy + +Observations: +- Temporary directory created successfully +- File copy succeeded with normal permissions +- Filesystem is writable and healthy + +## CPU & Memory +Commands: +- top- this provide the list fo processes +- free -h - this display the storage in human readable format + +Observations: +- CPU is 99% idle, load average near zero +- No high CPU processes observed +- Memory usage is low with ~510MB available +- No swap usage or memory pressure + +## Disk & IO +Commands: +- df -h- This display file system usage in 1000 powers +- du -sh /var/log + +Observations: +- Root filesystem only 36% utilized +- /var/log size is ~35MB +- No disk space or IO concerns + +## Network +Commands: +- ss -tulpn +- ping -c 3 localhost + +Observations: +- sshd listening on port 22 (IPv4 and IPv6) +- Localhost connectivity is healthy +- No packet loss or latency issues + +--- + +## Logs Reviewed +Commands: +- journalctl -u ssh -n 50 +- tail -n 50 /var/log/auth.log + +Observations: +- SSH service starts cleanly after reboot +- Successful key-based logins observed +- No authentication errors or service crashes +- Log entries appear normal and expected + +--- + +## Quick Findings +- System resources are healthy +- SSH service is stable and responsive +- No indicators of CPU, memory, disk, or network issues +- Logs show normal operational behavior + +--- + +## If This Worsens (Next Steps) +1. Restart ssh service gracefully using systemctl and monitor logs +2. Investigate failed login attempts and review firewall or security group rules \ No newline at end of file diff --git a/2026/day-06/file-io-practice.md b/2026/day-06/file-io-practice.md new file mode 100644 index 0000000000..5e4fec9f88 --- /dev/null +++ b/2026/day-06/file-io-practice.md @@ -0,0 +1,39 @@ +root@Asus:/mnt/c/users/# cd documents +root@Asus:/mnt/c/users/documents# touch name.txt +root@Asus:/mnt/c/users/documents# cat "hello my name is " > name.txt +cat: 'hello my name is ': No such file or directory +root@Asus:/mnt/c/users/documents# man cat +root@Asus:/mnt/c/users/documents# man touch +root@Asus:/mnt/c/users/documents# mv name.txt notes.txt +root@Asus:/mnt/c/users/documents# echo "hello my name si :" > notes.txt +root@Asus:/mnt/c/users/documents# echo "hi everyone" >> notes.txt +root@Asus:/mnt/c/users/documents# echo "I am student of batch 10 " >> notes.txt +root@Asus:/mnt/c/users/documents# cat notes.txt +hello my name si : +hi everyone +I am student of batch 10 +root@Asus:/mnt/c/users/documents# head notes.txt +hello my name si : +hi everyone +I am student of batch 10 +root@Asus:/mnt/c/users/documents# man head +root@Asus:/mnt/c/users/documents# head -n 2 notes.txt +hello my name si : +hi everyone +root@Asus:/mnt/c/users/documents# tail -n 2 notes.txt +hi everyone +I am student of batch 10 +root@Asus:/mnt/c/users/documents# tee "hello" >notes.txt +hello +my name is +i am student of batch 10 +^C +root@Asus:/mnt/c/users/documents# cat notes.txt +hello +my name is +i am student of batch 10 +root@Asus:/mnt/c/users/documents# tee hello +hello +hello +i am +i am \ No newline at end of file diff --git a/2026/day-07/README.md b/2026/day-07/README.md index 613b241332..379331d87c 100644 --- a/2026/day-07/README.md +++ b/2026/day-07/README.md @@ -116,7 +116,7 @@ Write at least 4 commands in order. - Then check: What do the logs say? - Finally check: Is it enabled to start on boot? -**Commands to explore:** `systemctl status myapp`, `systemctl is-enabled myapp`, `journalctl -u myapp -n 50` +**Commands to explore:** `systemctl status myapp`, ` myapp`, `journalctl -u myapp -n 50`systemctl is-enabled **Resource:** Review Day 04 (Process and Services practice) diff --git a/2026/day-07/day-07-linux-fs-and-scenarios.md b/2026/day-07/day-07-linux-fs-and-scenarios.md new file mode 100644 index 0000000000..55426bfa15 --- /dev/null +++ b/2026/day-07/day-07-linux-fs-and-scenarios.md @@ -0,0 +1,51 @@ +### Part 1: Linux File System Hierarchy +- '/' (root) - This contains the boot files of system +- '/home' - this conatisn file configurations and users +- `/root' - This is subdirectory inside '/' which has full user access +- 'etc' - this contains editable configurations files +- '/var/log' - This contains the log of system +- '/tmp' - these are created for short term uses and they got deleted when system reboots + +### Part 2: Scenario-Based Practice +**Scenario 1: Service Not Starting** +Step 1: systemctl status +Why: This will display the status +s +Step 2: journalctl +why :this will display recent logs + +Step 3: systemctl start my-app +Why: this will again start the application + +step 4: systemctl is-enabled +why : to check is service is enabled + +**Scenario 2: High CPU Usage** +step 1: top +why : this will display the top processes executing / htop has interactive display + +step 2: htop +why : htop has interactive display where i can scroll also + +step 3 : ps aux --sort=-%cpu | head -10 +why : this will sort the process and then print first 10 processes + +**Scenario 3: Finding Service Logs** +step 1 : journalctl -u docker.io +why : this will display the logs of docker + +step 2 :journalctl -u docker.service -n 50 +why : this will show last 50 lines + +step 3: journalctl -u docker.service -f +why : this will show me the docker logs in real time + +**Scenario 4: File Permissions Issue** +step 1 : ls -l +why : firstly check the permsission of file + +Step 2 : chmod u+x file_name.sh +why : then give execute perimission to user + +step 3: ls-l +why :rwxr--r-- this means owner got permission to execute diff --git a/2026/day-08/day-08-cloud-deployment.md b/2026/day-08/day-08-cloud-deployment.md new file mode 100644 index 0000000000..a6bf643bdb --- /dev/null +++ b/2026/day-08/day-08-cloud-deployment.md @@ -0,0 +1,37 @@ +## Commands Used +step 1: connecting with instance using ssh +command : ssh -i "keyname"ubuntu@"public_dns" + +step 2: update ubunut +command : sudo apt update + +step 3: install nginx +command : sudo apt install nginx + +step 4 :then to confirm if its starting +command : systemctl status nginx + +step 5: check server logs +command : journalctl -u nginx + +step 6: chekc nginx logs + +command : var/log/nginx +this gives me two files +access.log +error.log + +step 7: then copy the nginx logs and saev into a new file into home directory +cp access.log ~/nginx-log.txt + +step 8 : then i download this using scp in my local machine +scp -i "keyname"ubuntu@"instanceip":"file_path" . +scp -secure copy it gets downloaded form remote server to local machine and . is used for current folder + +## Challenges Faced +i got challanges during cp as i got confused between home directory then i see the linux hirarchy and then i faced challenges in scp as i am running this on instance as then i search about this command and run on my windows termianl + +## What I Learned +i get used to ssh and got easy in connecting instance to my server +i learn about the scp command +i learn about creating inbound rules to check service on web \ No newline at end of file diff --git a/2026/day-08/nginx-logs.txt b/2026/day-08/nginx-logs.txt new file mode 100644 index 0000000000..1af14631a5 --- /dev/null +++ b/2026/day-08/nginx-logs.txt @@ -0,0 +1,4 @@ +115.70.62.21 - - [10/Feb/2026:10:32:37 +0000] "GET / HTTP/1.1" 200 409 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" +115.70.62.21 - - [10/Feb/2026:10:32:37 +0000] "GET /favicon.ico HTTP/1.1" 404 196 "http://16.26.213.32/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" +146.190.26.148 - - [10/Feb/2026:10:33:08 +0000] "GET / HTTP/1.1" 200 409 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" +146.190.26.148 - - [10/Feb/2026:10:33:09 +0000] "GET /favicon.ico HTTP/1.1" 404 196 "http://16.26.213.32/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" diff --git a/2026/day-08/nginx-webpage.png.png b/2026/day-08/nginx-webpage.png.png new file mode 100644 index 0000000000..4f42a70ace Binary files /dev/null and b/2026/day-08/nginx-webpage.png.png differ diff --git a/2026/day-08/ssh-connection.png.png b/2026/day-08/ssh-connection.png.png new file mode 100644 index 0000000000..c6432cf16e Binary files /dev/null and b/2026/day-08/ssh-connection.png.png differ diff --git a/2026/day-09/README.md b/2026/day-09/README.md index 67aea03d24..db303760e3 100644 --- a/2026/day-09/README.md +++ b/2026/day-09/README.md @@ -121,7 +121,7 @@ Create `day-09-user-management.md`: **User can't access directory?** - Check group: `groups username` - Check permissions: `ls -ld /path` - +cd --- ## Submission diff --git a/2026/day-09/day-09-user-management.md b/2026/day-09/day-09-user-management.md new file mode 100644 index 0000000000..2afbe99e5c --- /dev/null +++ b/2026/day-09/day-09-user-management.md @@ -0,0 +1,30 @@ +# Day 09 Challenge +## Users & Groups Created +- Users: tokyo, berlin, professor, nairobi +- Groups: developers, admins, project-team + +## Group Assignments +tokyo:x:1001: +berlin:x:1002: +professor:x:1003: +developers:x:1004:tokyo,berlin +admins:x:1005:berlin,professor +nairobai:x:1006: +project-team:x:1007:nairobai,tokyo + +## Directories Created +drwxrwsr-x 2 root developers 4096 Feb 11 10:43 dev-project +drwxrwxr-x 2 root project-team 4096 Feb 11 10:51 team-workspace + +## Commands Used +useradd -m : for creating users in home also +addgroup : for creating group +usermod -aG : for adding user to group +mkdir - for creating directory +chown :group_name directory : for changing ownership of group only +chmod 775 directory + +## What I Learned +i learned about creating groups and users +i learned about giving permissions and adding users to the groups +i learned about changing ownerships and groups diff --git a/2026/day-10/day-10-file-permissions.md b/2026/day-10/day-10-file-permissions.md new file mode 100644 index 0000000000..24f660fa4a --- /dev/null +++ b/2026/day-10/day-10-file-permissions.md @@ -0,0 +1,30 @@ +# Day 10 Challenge + +## Files Created +devops.txt +notes.txt +script.sh + +## Permission Changes +before +-rw-rw-r-- 1 ubuntu ubuntu 0 Feb 12 10:15 devops.txt +-rw-rw-r-- 1 ubuntu ubuntu 60 Feb 12 10:16 notes.txt +-rw-rw-r-- 1 ubuntu ubuntu 21 Feb 12 10:16 sript.sh + +after +-r--r--r-- 1 ubuntu ubuntu 0 Feb 12 10:15 devops.txt +-rw-r----- 1 ubuntu ubuntu 60 Feb 12 10:16 notes.txt +-rwxrw-r-- 1 ubuntu ubuntu 21 Feb 12 10:16 script.sh + +## Commands Used +touch +cat +chmod +head +tail +vim + +## What I Learned +i learned about creating file +editing file +permissions of files diff --git a/2026/day-10/files.png b/2026/day-10/files.png new file mode 100644 index 0000000000..62e6352eac Binary files /dev/null and b/2026/day-10/files.png differ diff --git a/2026/day-14/day-14-networking.md b/2026/day-14/day-14-networking.md new file mode 100644 index 0000000000..9e8adefa1a --- /dev/null +++ b/2026/day-14/day-14-networking.md @@ -0,0 +1,28 @@ +### OSI Model vs TCP/IP Stack +The OSI (Open Systems Interconnection) model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven distinct layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application. Each layer serves a specific purpose and interacts with the layers directly above and below it. +The TCP/IP (Transmission Control Protocol/Internet Protocol) stack, on the other hand, is a more practical and widely used model that consists of four layers: Link, Internet, Transport, and Application. The TCP/IP stack is designed to be simpler and more efficient for real-world networking. +- **Link Layer**: Corresponds to the OSI's Physical and Data Link layers. It handles the physical transmission of data over a network and manages the hardware addressing (MAC addresses)and DNS resolution for local network communication. +- **Internet Layer**: Corresponds to the OSI's Network layer. It is responsible for logical addressing (IP addresses) and routing of data packets across networks. +- **Transport Layer**: Corresponds to the OSI's Transport layer. It manages end-to-end communication, error checking, and flow control. This is where TCP (Transmission Control Protocol) and UDP (User Datagram Protocol) operate. +- **Application Layer**: Corresponds to the OSI's Session, Presentation, and Application layers. It provides protocols for specific applications, such as HTTP/HTTPS for web traffic, DNS for domain name resolution, and FTP for file transfers. + +### Hands-on Checklist +- **Identity:** `hostname -I` (or `ip addr show`) — shows th e IP address(es) assigned to the host. +- **Reachability:** `ping ` — tests the reachability of a target host and measures the round-trip time for messages sent from the originating host to a destination computer. +- **Path:** `traceroute ` (or `tracepath`) — displays the route and measures transit delays of packets across an IP network. +- **Ports:** `ss -tulpn` (or `netstat -tulpn`) — lists all listening ports and the associated services. +- **Name resolution:** `dig ` or `nslookup ` — queries DNS servers to resolve domain names to IP addresses. +- **HTTP check:** `curl -I ` — retrieves the HTTP headers from the specified URL, showing the HTTP status code and other metadata. +- **Connections snapshot:** `netstat -an | head` — provides a snapshot of current network connections, showing the state of each connection (e.g., ESTABLISHED, LISTENING). + +### Mini Task: Port Probe & Interpret +i have tested on port no 80 its succesfull +(test.png) +## Reflection (add to your markdown) +- Which command gives you the fastest signal when something is broken? +curl -I as it will shows me the HTTP status code and headers. +- What layer (OSI/TCP-IP) would you inspect next if DNS fails? If HTTP 500 shows up? +applica1tion layer for both cases, as DNS is part of the application layer in the TCP/IP stack, and HTTP 500 is an error code that indicates a server-side issue, which also falls under the application layer. +- Two follow-up checks you’d run in a real incident. +dns failure, I would check the DNS server configuration and logs to identify any issues. +Ports `ss -tulpn` to check if the DNS service is running and listening on the correct port (usually port 53). \ No newline at end of file diff --git a/2026/day-14/ports.png b/2026/day-14/ports.png new file mode 100644 index 0000000000..fd5913d08a Binary files /dev/null and b/2026/day-14/ports.png differ diff --git a/2026/day-14/test.png b/2026/day-14/test.png new file mode 100644 index 0000000000..e57048a455 Binary files /dev/null and b/2026/day-14/test.png differ diff --git a/2026/day-15/day-15-networking-concepts.md b/2026/day-15/day-15-networking-concepts.md new file mode 100644 index 0000000000..314a87f4e3 --- /dev/null +++ b/2026/day-15/day-15-networking-concepts.md @@ -0,0 +1,151 @@ +### Task 1: DNS – How Names Become IPs + +1. Explain in 3–4 lines: what happens when you type `google.com` in a browser? + +DNS recursor will start checking if it knows the IP. Then Root name server converts human text to readable IP. +TLD nameserver check for a specific IP. It hosts the last portion of IP like .com +then authoritative nameserver acts as specific rack of IPs finally browser uses this ip to connect to googles server. + +2. What are these record types? Write one line each: + - `A`, `AAAA`, `CNAME`, `MX`, `NS` + + - `A` - it contains the IPv4 address like for www-> 172.0.0.0 + - `AAAA` - it contains the record in IPv6 form like for www->2640:4444: + - `CNAME` (host to host) - this maps one hostname to another hostname (host-to-host). This reduces administrative overhead because multiple aliases (like ftp, mail, www) can point to the same canonical name. Updating the canonical hostname automatically updates all the aliases. + - `MX` - it is a mail exchange record that direct mail to the correct mail server for a domain + - `NS` - this stores the history of records + +3. Run: `dig google.com` — identify the A record and TTL from the output. + +google.com. 227 IN A 192.178.187.102 +google.com. 227 IN A 192.178.187.138 +google.com. 227 IN A 192.178.187.101 +google.com. 227 IN A 192.178.187.100 +google.com. 227 IN A 192.178.187.113 +google.com. 227 IN A 192.178.187.139 +TTl -227 + +### Task 2: IP Addressing + +1. What is an IPv4 address? How is it structured? (e.g., `192.168.1.10`) + +IP- it is a 32 -bit numerical label assigned to devices on a network , used to identify the devices and enable communication over the internet. +192.168.1.10. this is divided into 4 octets with values form (0-255) + +2. Difference between **public** and **private** IPs — give one example of each + +Public IP: +An IP address that can be accessed over the Internet by anyone. +Assigned by ISP and is unique across the Internet. +Example: 203.0.113.5 + +Private IP: +An IP address used within a local network (LAN) and cannot be accessed directly from the Internet. +Helps devices communicate inside a home or office network. +Examples: 172.16.0.1\ + +3. What are the private IP ranges? + +These IPs are reserved for use within private networks and cannot be routed on the public Internet: + +Range Notes +10.0.0.0 – 10.255.255.255 Large private network +172.16.0.0 – 172.31.255.255 Medium private network +192.168.0.0 – 192.168.255.255 Small private network, common in home LANs + +4. Run: `ip addr show` — identify which of your IPs are private + +ubuntu@ip-172-31-27-220:~$ ip addr show +1: lo: mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 + link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 + inet 127.0.0.1/8 scope host lo + valid_lft forever preferred_lft forever + inet6 ::1/128 scope host noprefixroute + valid_lft forever preferred_lft forever +2: ens5: mtu 9001 qdisc mq state UP group default qlen 1000 + link/ether 06:8a:5f:f8:3f:31 brd ff:ff:ff:ff:ff:ff + inet 172.31.27.220/20 metric 100 brd 172.31.31.255 scope global dynamic ens5 + valid_lft 3408sec preferred_lft 3408sec + inet6 fe80::48a:5fff:fef8:3f31/64 scope link + valid_lft forever preferred_lft forever + +inet 127.0.0.1/8 +inet 172.31.27.220/20 + +### Task 3: CIDR & Subnetting + +1. What does `/24` mean in `192.168.1.0/24`? + +The first 24 bits of the IP address are the network portion. +The remaining 8 bits are for hosts, which determines how many devices can be connected. +usable hosts = 2^(hostbits) -2 + +2. How many usable hosts in a `/24`? A `/16`? A `/28`? + +/24 - 254 +/16 - 65,534 +/28 - 14 + +3. Explain in your own words: why do we subnet? + +Subnetting divides a large network into smaller, manageable networks. + +It helps organize devices, reduce broadcast traffic, and improve security. + +4. Quick exercise — fill in: + +| CIDR | Subnet Mask | Total IPs | Usable Hosts | +|------|--------------- |-----------|--------------| +| /24 | 255.255.255.0 | 256 | 254 | +| /16 | 255.255.0.0 | 65536 | 65534 | +| /28 | 255.255.255.240 | 16 | 14 | + + +### Task 4: Ports – The Doors to Services + +1. What is a port? Why do we need them? + +A port is like a door where each application uses its own door to send and recieve data they helps which app should get the data. +we need them as we can run differents app or service on same ip address. + +2. Document these common ports: + +| Port | Service | +|------|---------| +| 22 | SSH | +| 80 | HTTP | +| 443 | HTTPS | +| 53 |DNS | +| 3306 | MYSQL | +| 6379 | REDIS | +| 27017| MONGODB | +ubuntu@ip-172-31-27-220:~$ ss -tulpn +Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process +udp UNCONN 0 0 127.0.0.54:53 0.0.0.0:* +udp UNCONN 0 0 127.0.0.53%lo:53 0.0.0.0:* +udp UNCONN 0 0 172.31.27.220%ens5:68 0.0.0.0:* +udp UNCONN 0 0 127.0.0.1:323 0.0.0.0:* +udp UNCONN 0 0 [::1]:323 [::]:* +tcp LISTEN 0 4096 127.0.0.53%lo:53 0.0.0.0:* +tcp LISTEN 0 4096 127.0.0.54:53 0.0.0.0:* +tcp LISTEN 0 511 0.0.0.0:80 0.0.0.0:* +tcp LISTEN 0 4096 0.0.0.0:22 0.0.0.0:* +tcp LISTEN 0 511 [::]:80 [::]:* +tcp LISTEN 0 4096 [::]:22 [::]:* +ubuntu@ip-172-31-27-220:~$ + +### Task 5: Putting It Together + +Answer in 2–3 lines each: +- You run `curl http://myapp.com:8080` — what networking concepts from today are involved? + +curl is a client tool that sends a request to a server. DNS translates myapp.com to an IP, and port 8080 tells the system which application/service to connect to. The request uses TCP/IP to reach the server. + +- Your app can8't reach a database at `10.0.1.50:3306` — what would you check first? + +First, check if the IP is reachable (network rules). Then check port 3306 accessibility and database permissions. Knowing it’s private or public is important for network access. + +### what i learned +i learned about DNS +i learned how to check ports what are ports +i learned about what us curl ,dig ,IP addresses,CIDR diff --git a/2026/day-16/day-16-shell-scripting.md b/2026/day-16/day-16-shell-scripting.md new file mode 100644 index 0000000000..1f5d1f1443 --- /dev/null +++ b/2026/day-16/day-16-shell-scripting.md @@ -0,0 +1,157 @@ +## Challenge Tasks + +### Task 1: Your First Script +### hello.sh i create variables inside this +#!/bin/bash + +echo "Hello, Devops" + +NAME="AKASH" +ROLE="DEVOPS ENGINEER" +echo "with '' " +echo 'Hello, I am $NAME and I am a $ROLE' + +### output +ubuntu@ip-172-31-27-220:~$ vim hello.sh +"hello.sh" [New] 4L, 35B written +ubuntu@ip-172-31-27-220:~$ chmod +x hello.sh +ubuntu@ip-172-31-27-220:~$ ./hello.sh +Hello, Devops +ubuntu@ip-172-31-27-220:~$ + + +**Document:** What happens if you remove the shebang line? +it still runs because this has .sh as when we execute the file it throws format error bash detect this error ENOEXEC and runs the file itself + +### Task 2: Variables + +### hello.sh i create variables inside this +#!/bin/bash + +echo "Hello, Devops" + +NAME="AKASH" +ROLE="DEVOPS ENGINEER" +echo "with '' " +echo 'Hello, I am $NAME and I am a $ROLE' + +### output +## with double quotes +ubuntu@ip-172-31-27-220:~$ ./hello.sh +Hello, Devops +Hello, I am AKASH and I am a DEVOPS ENGINEER + + + ## with singe quote +ubuntu@ip-172-31-27-220:~$ ./hello.sh +Hello, Devops +with '' +Hello, I am $NAME and I am a $ROLE +ubuntu@ip-172-31-27-220:~$ + +The difference in both quotes is in single it read as line and $ variable and do not print its value + +### Task 3: User Input with read +### greet.sh +#!/bin/bash +read -p "Enter your name :" Name +read -p "what is your favourote tool:" tool +echo "Hello $Name , your favourite tool is $tool" + +### output +ubuntu@ip-172-31-27-220:~$ vim greet.sh +ubuntu@ip-172-31-27-220:~$ ./greet.sh +Enter your name :akash +what is your favourote tool:docker +Hello akash , your favourite tool is docker +ubuntu@ip-172-31-27-220:~$ + +### Task 4: If-Else Conditions + +1. Create `check_number.sh` that: +### check_numeber.sh + +#!/bin/bash +read -p "Enter a number: " Num + +if [ "$Num" -gt 0 ]; then + echo "Positive" +elif [ "$Num" -lt 0 ]; then + echo "Negative" +else + echo "Zero" +fi + +### output +ubuntu@ip-172-31-27-220:~$ vim check_number.sh +ubuntu@ip-172-31-27-220:~$ 10L, 162B written +ubuntu@ip-172-31-27-220:~$ ./check_number.sh +Enter a number: 23 +Positive +ubuntu@ip-172-31-27-220:~$ ./check_number.sh +Enter a number: 0 +Zero +ubuntu@ip-172-31-27-220:~$ ./check_number.sh +Enter a number: -9 +Negative +ubuntu@ip-172-31-27-220:~$ + +2. Create `file_check.sh` that: +### file_check.sh +#!/bin/bash +read -p "enter filename : " file +if [ -f $file ]; then + echo "file exists" +else + echo "file not present" +fi + +### output +ubuntu@ip-172-31-27-220:~$ ls +0 bank-heist devops-file.txt greet.sh hello.sh prac project-config.yaml +app-logs check_number.sh file_check.sh heist-project nginx-logs.txt prace team-notes.txt +ubuntu@ip-172-31-27-220:~$ ./file_check.sh +enter filename : devops-file.txt +file exists +ubuntu@ip-172-31-27-220:~$ ./file_check.sh +enter filename : deo +file not present +ubuntu@ip-172-31-27-220:~$ + +### Task 5: Combine It All +### server_check.sh + +Name="nginx" +read -p "Do you want to check the status? (y/n)" Ans +if [ $Ans = 'y' ]; then + echo "systemctl status $Name" + STATUS=$(systemctl is-active nginx) + + if [ "$STATUS" = "active" ]; then + echo "Nginx is running" + fi +else + echo "Skipped" + +fi + +### output +ubuntu@ip-172-31-27-220:~$ ./server_check.sh +Do you want to check the status? (y/n)y +systemctl status nginx +Nginx is running +ubuntu@ip-172-31-27-220:~$ +ubuntu@ip-172-31-27-220:~$ vim server_check.sh +ubuntu@ip-172-31-27-220:~$ ./server_check.sh +Do you want to check the status? (y/n)y +systemctl status nginx +Nginx is running +ubuntu@ip-172-31-27-220:~$ ./server_check.sh +Do you want to check the status? (y/n)n +Skipped +ubuntu@ip-172-31-27-220:~$ + + +i larned about shell commands +i learned about if else conditions +i learned about checking files and server by writing scripts \ No newline at end of file diff --git a/2026/day-17/day-17-scripting.md b/2026/day-17/day-17-scripting.md new file mode 100644 index 0000000000..bac17dc5c6 --- /dev/null +++ b/2026/day-17/day-17-scripting.md @@ -0,0 +1,169 @@ +### Task 1: For Loop +1 `for_loop.sh`file + +#!/bin/bash + +for i in apple banana orange pinapple kiwi +do + echo "$i" +done + +`output` + +ubuntu@ip-172-31-27-220:~$ ./for_loop.sh +apple +banana +orange +pinapple +kiwi + +2 `count.sh` +#!/bin/bash + +for i in {1..10}; +do + echo "$i" +done + +~ +~ +~ +`output` +ubuntu@ip-172-31-27-220:~$ ./count.sh +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +ubuntu@ip-172-31-27-220:~$ + +### Task 2: While Loop + +#!/bin/bash + +read -p "number" num + +while [ $num -ge 0 ] +do + echo "$num" + let num-- +done +echo "Done!" + +`output` +ubuntu@ip-172-31-27-220:~$ ./countdown.sh +number10 +10 +9 +8 +7 +6 +5 +4 +3 +2 +1 +0 +Done! + +### Task 3: Command-Line Arguments +#!/bin/bash + +if [ $# -eq 0 ]; +then + echo "usage: ./greet.sh " + exit 1 +fi + +echo "Hello, $1 !" +`output` +ubuntu@ip-172-31-27-220:~$ ./greet.sh akash +Hello, akash ! +ubuntu@ip-172-31-27-220:~$ ./greet.sh +usage: ./greet.sh +ubuntu@ip-172-31-27-220:~$ + +2. Create `args_demo.sh` that: +#!/bin/bash + +echo "$#" + +echo "$@" + +echo "$0" + +`output` +ubuntu@ip-172-31-27-220:~$ ./args_demo.sh akash tws +2 +akash tws +./args_demo.sh +ubuntu@ip-172-31-27-220:~$ ./args_demo.sh akash +1 +akash +./args_demo.sh +ubuntu@ip-172-31-27-220:~$ + +### Task 4: Install Packages via Script +#!/bin/bash + +sudo apt update &>/dev/null + +for i in nginx curl wget +do + sudo apt install $i -y &>/dev/null +done + +echo "Checking installation status..." + +for i in nginx curl wget +do + if dpkg -s $i &>/dev/null + then + echo "$i is installed" + else + echo "$i is NOT installed" + fi +done + +`output` + +ubuntu@ip-172-31-27-220:~$ ./install_packages.sh +Checking installation status... +nginx is installed +curl is installed +wget is installed +ubuntu@ip-172-31-27-220:~$ + +### Task 5: Error Handling +#!/bin/bash +set -e + +mkdir /tmp/devops &>/dev/null || echo "Directory already exists" +cd /tmp/devops +touch new_file.txt + +echo "production work" + +`output` + +ubuntu@ip-172-31-27-220:~$ vim safe-script.sh +ubuntu@ip-172-31-27-220:~$ ./safe-script.sh +mkdir: cannot create directory ‘/tmp/devops’: File exists +Directory already exists +production work +ubuntu@ip-172-31-27-220:~$ vim safe-script.sh +ubuntu@ip-172-31-27-220:~$ +ubuntu@ip-172-31-27-220:~$ ./safe-script.sh +Directory already exists +production work +ubuntu@ip-172-31-27-220:~$ ./safe-script.sh +production work +ubuntu@ip-172-31-27-220:~$ cd /tmp/devops +ubuntu@ip-172-31-27-220:/tmp/devops$ ls +new_file.txt +ubuntu@ip-172-31-27-220:/tmp/devops$ \ No newline at end of file diff --git a/2026/day-18/day-18-scripting.md b/2026/day-18/day-18-scripting.md new file mode 100644 index 0000000000..ece1439274 --- /dev/null +++ b/2026/day-18/day-18-scripting.md @@ -0,0 +1,212 @@ +### Task 1: Basic Functions +#!/bin/bash + +greet () { + echo "Hello $1 !i " +} +add () { + echo "sum is :" $(($1 + $2)) +} +greet "akash" +add 2 5 + +`output` +ubuntu@ip-172-31-27-220:~$ ./functions.sh +Hello akash !i +sum is : 7 + +### Task 2: Functions with Return Values +#!/bin/bash + + +check_disk (){ + df -h | awk 'NR==2 {print $4}' +} + + +check_memory (){ + free -h | awk 'NR==2 {print $4}' +} +check_disk +check_memory + + +~ +`output` +ubuntu@ip-172-31-27-220:~$ ./disk_check.sh +4.3G +219Mi +ubuntu@ip-172-31-27-220:~$ + +### Task 3: Strict Mode — `set -euo pipefail` +#!/bin/bash +set -euo pipefail + +echo "Testing set -u" +# echo "$num" + +echo "Testing set -e" + +# mkdir he +# mkdir he + +echo "Testing pipefail" +#false | true +true | true +echo "Script completed successfully" + +`output` +ubuntu@ip-172-31-27-220:~$ ./strict_demo.sh +./strict_demo.sh: line 5: num: unbound variable +ubuntu@ip-172-31-27-220:~$ vim strict_demo.sh +ubuntu@ip-172-31-27-220:~$ ./strict_demo.sh +Testing set -u +./strict_demo.sh: line 5: num: unbound variable +ubuntu@ip-172-31-27-220:~$ ./strict_demo.sh +Testing set -u +./strict_demo.sh: line 5: num: unbound variable +ubuntu@ip-172-31-27-220:~$ vim strict_demo.sh + 14L, 195B written +ubuntu@ip-172-31-27-220:~$ ./strict_demo.sh +Testing set -u +Testing set -e +mkdir: cannot create directory ‘he’: File exists +ubuntu@ip-172-31-27-220:~$ vim strict_demo.sh +ubuntu@ip-172-31-27-220:~$ ./strict_demo.sh +Testing set -u +Testing set -e +Testing pipefail +ubuntu@ip-172-31-27-220:~$ vim strict_demo.sh +ubuntu@ip-172-31-27-220:~$ ./strict_demo.sh +Testing set -u +Testing set -e +Testing pipefail +Script completed successfully +ubuntu@ip-172-31-27-220:~$ ./strict_demo.sh + +**Document:** +- `set -e` → exits when got the error +- `set -u` → produces error when anything is undefined +- `set -o pipefail` → produces error when | fails like `true | false ` means 0 | 1 ->0 so pipe fails in this case + +## Task 4: Local Variables +#!/bin/bash +set -u +#a=10 + +check_localvalue () { + local a=20 + echo "$a" + +} +check_localvalue +echo "$a" + +`output` +ubuntu@ip-172-31-27-220:~$ ./local_demo.sh +10 +ubuntu@ip-172-31-27-220:~$ vim local_demo.sh +ubuntu@ip-172-31-27-220:~$ ./local_demo.sh +20 +10 +ubuntu@ip-172-31-27-220:~$ vim local_demo.sh +ubuntu@ip-172-31-27-220:~$ ./local_demo.sh +20 + +ubuntu@ip-172-31-27-220:~$ vim local_demo.sh +ubuntu@ip-172-31-27-220:~$ ./local_demo.sh +20 +./local_demo.sh: line 11: a: unbound variable +ubuntu@ip-172-31-27-220:~$ + +### Task 5: Build a Script — System Info Reporter +#!/bin/bash +set -euo pipefail + +# Function to print hostname and OS info +host_name() { + echo "Hostname: $(hostname)" + echo "OS Info:" + grep -E '^(NAME|VERSION|VERSION_CODENAME|ID)' /etc/os-release + echo +} + +# Function to print uptime +up_time() { + echo "Uptime:" + uptime -p + echo +} + +# Function to print top 5 disk usage +disk_usage() { + echo "Top 5 Disk Usage:" + df -h | sort -k5 -hr | head -6 + echo +} + +# Function to print memory usage +memory_usage() { + echo "Memory Usage:" + free -h | awk 'NR==2 {print "Used: "$3", Free: "$4}' + echo +} + +# Function to print top 5 CPU-consuming processes +top_processes() { + echo "Top 5 CPU-Consuming Processes:" + ps -eo pid,ppid,cmd,%cpu --sort=-%cpu | head -6 + echo +} + +# Main function +main() { + host_name + up_time + disk_usage + memory_usage + top_processes +} + +# Call main +main + +`output` +ubuntu@ip-172-31-27-220:~$ ./system_info.sh +Hostname: ip-172-31-27-220 +OS Info: +NAME="Ubuntu" +VERSION_ID="24.04" +VERSION="24.04.3 LTS (Noble Numbat)" +VERSION_CODENAME=noble +ID=ubuntu +ID_LIKE=debian + +Uptime: +up 1 day, 19 minutes + +Top 5 Disk Usage: +/dev/root 6.8G 2.5G 4.3G 37% / +/dev/nvme0n1p16 881M 156M 663M 20% /boot +/dev/nvme0n1p15 105M 6.2M 99M 6% /boot/efi +efivarfs 128K 4.1K 119K 4% /sys/firmware/efi/efivars +tmpfs 183M 916K 182M 1% /run +tmpfs 92M 12K 92M 1% /run/user/1000 + +Memory Usage: +Used: 403Mi, Free: 100Mi + +Top 5 CPU-Consuming Processes: + PID PPID CMD %CPU + 24481 24367 sshd: ubuntu@pts/0 0.1 + 25396 2 [kworker/u8:3-events_unboun 0.0 + 24363 2 [kworker/0:1-events] 0.0 + 24354 2 [kworker/1:0-events] 0.0 + 189 1 /sbin/multipathd -d -s 0.0 + +ubuntu@ip-172-31-27-220:~$ + +***What you learned (3 key points)*** +i learned about the set -euo +i leanred about the fucntions +i learned about the collecting commands in one function \ No newline at end of file diff --git a/2026/day-19/day-19-project.md b/2026/day-19/day-19-project.md new file mode 100644 index 0000000000..8af012a672 --- /dev/null +++ b/2026/day-19/day-19-project.md @@ -0,0 +1,150 @@ +## Challenge Tasks + +### Task 1: Log Rotation Script +if [ $# -ne 1 ];then + display_usage +fi +if [ ! -d "${source_dir}" ];then + echo "directory does not exists" + exit 1 +fi +COUNT=$(find "$1" -type f -name "*.log" -mtime +7 | wc -l ) +if [ "$COUNT" -gt 0 ]; then + find "$1" -type f -name "*.log" -mtime +7 -exec gzip {} \; +fi + +COUNT2=$(find "$1" -type f -name "*.gz" -mtime +30 | wc -l ) +if [ "$COUNT2" -gt 0 ];then + find "$1" -type f -name "*.gz" -mtime +30 -exec rm {} \; +fi + +echo "Log Rotation Summary:" +echo "Compressed files: $COUNT" +echo "Deleted files: $COUNT2" + +`output` + +ubuntu@ip-172-31-27-220:~$ cat /var/log/myapp +cat: /var/log/myapp: Is a directory +ubuntu@ip-172-31-27-220:~$ ls -l /var/log/myapp +total 0 +-rw-r--r-- 1 root root 0 Feb 15 11:12 test.log +ubuntu@ip-172-31-27-220:~$ sudo ./log_rotate.sh /var/log/myapp +Log Rotation Summary: +Compressed files: 1 +Deleted files: 0 +ubuntu@ip-172-31-27-220:~$ ls -l /var/log/myapp +total 4 +-rw-r--r-- 1 root root 29 Feb 15 11:12 test.log.gz +ubuntu@ip-172-31-27-220:~$ +### Task 2: Server Backup Script +#!/bin/bash +set -e + +# Arguments +source_dir="$1" +backup_dir="$2" +timestamp=$(date '+%Y-%m-%d-%H-%M-%S') + +# Check if source directory exists +if [ ! -d "$source_dir" ]; then + echo "Error: Source directory '$source_dir' does not exist." + exit 1 +fi + +# Create backup directory if it doesn't exist +mkdir -p "$backup_dir" + +# Archive name and path +archive_name="backup +archive_path="${backup_dir}/${archive_name}" + +# Create the backup +tar -czf "$archive_path" -C "$source_dir" + +# Verify archive creation +if [ -f "$archive_path" ]; then + archive_size=$(du -h "$archive_path" | cut -f1) + echo "Backup created successfully: $archive_name" + echo "Size: $archive_size" +else + echo "Error: Backup failed!" + exit 1 +fi + +# Delete backups older than 14 days +find "$backup_dir" -name "backup-*.tar.gz" -type f -mtime +14 -exec rm -f {} \; + +echo "Old backups deleted (older than 14 days)." + +~ +`output` +ubuntu@ip-172-31-27-220:~$ ./backup.sh /home/ubuntu/data /home/ubuntu/backups +Backup created successfully: backup-2026-02-26-12-05-47.tar.gz +Size: 4.0K +Old backups deleted (older than 14 days). +ubuntu@ip-172-31-27-220:~$ ls -lh /home/ubuntu/backups +total 12K +-rw-rw-r-- 1 ubuntu ubuntu 111 Feb 25 12:30 backup-2026-02-25-12-30-35.tar.gz +-rw-rw-r-- 1 ubuntu ubuntu 215 Feb 25 12:31 backup-2026-02-25-12-31-13.tar.gz +-rw-rw-r-- 1 ubuntu ubuntu 215 Feb 26 12:05 backup-2026-02-26-12-05-47.tar.gz +ubuntu@ip-172-31-27-220:~$ + +### Task 4: Combine — Scheduled Maintenance Script +#!/bin/bash + +LOG_FILE="/var/log/maintenance.log" +LOG_DIR="/home/ubuntu/logs" +SOURCE_DIR="/home/ubuntu/data" +BACKUP_DIR="/home/ubuntu/backups" + +log() { + echo "[$(date '+%Y-%m-%d %H:%M:%S')] $1" >> "$LOG_FILE" +} + +log "===== Maintenance Started =====" + +# Run Log Rotation (pass log directory) +if /usr/bin/bash /home/ubuntu/log_rotate.sh "$LOG_DIR" >> "$LOG_FILE" 2>&1; then + log "Log rotation completed successfully." +else + log "Log rotation failed!" +fi + +# Run Backup +if /usr/bin/bash /home/ubuntu/backup.sh "$SOURCE_DIR" "$BACKUP_DIR" >> "$LOG_FILE" 2>&1; then + log "Backup completed successfully." +else + log "Backup failed!" +fi + +log "===== Maintenance Finished =====" +log "" +~ +~ +`output` +ubuntu@ip-172-31-27-220:~$ sudo ./maintenance.sh +sudo cat /var/log/maintenance.log +[2026-02-26 12:15:02] ===== Maintenance Started ===== + +[2026-02-26 12:15:02] Log rotation failed! +/home/ubuntu/backup.sh: line 38: syntax error near unexpected token `(' +[2026-02-26 12:15:02] Backup failed! +[2026-02-26 12:15:02] ===== Maintenance Finished ===== +[2026-02-26 12:15:02] +[2026-02-26 12:17:36] ===== Maintenance Started ===== + +[2026-02-26 12:17:36] Log rotation failed! +Backup created successfully: backup-2026-02-26-12-17-36.tar.gz +Size: 4.0K +Old backups deleted (older than 14 days). +[2026-02-26 12:17:36] Backup completed successfully. +[2026-02-26 12:17:36] ===== Maintenance Finished ===== +[2026-02-26 12:17:36] +[2026-02-26 12:20:07] ===== Maintenance Started ===== +Usage: /home/ubuntu/log_rotate.sh +[2026-02-26 12:20:07] Log rotation failed! +Backup created successfully: backup-2026-02-26-12-20-07.tar.gz +Size: 4.0K +Old backups deleted (older than 14 days). +[2026-02-26 12:20:07] Backup completed successfully. \ No newline at end of file diff --git a/2026/day-20/day-20-solution.md b/2026/day-20/day-20-solution.md new file mode 100644 index 0000000000..7229a576e7 --- /dev/null +++ b/2026/day-20/day-20-solution.md @@ -0,0 +1,1465 @@ +`script` +#!/bin/bash + +# Check arguments +if [ $# -ne 1 ]; then + echo "Usage: $0 " + exit 1 +fi + +log_file="$1" + +# Check if file exists +if [ ! -f "$log_file" ]; then + echo "Error: File does not exist." + exit 1 +fi + +# Get date +current_date=$(date +%Y-%m-%d) + +# Report file name +report_file="log_report_${current_date}.txt" + +# Generate report +{ +echo "===== Log Summary Report =====" +echo "Date of Analysis: $current_date" +echo "Log File: $log_file" +echo "Total Lines Processed: $(wc -l < "$log_file")" +echo "Total Error Count: $(grep -c '\[error\]' "$log_file")" +echo +echo "--- Top 5 Error Messages ---" +grep '\[error\]' "$log_file" | cut -d']' -f3 | sort | uniq -c | sort -rn | head -5 +echo "--- Critical Events (with line numbers) ---" +} > "$report_file:" + +echo "Report generated: $report_file" + +`output` +ubuntu@ip-172-31-27-220:~$ cat log_report_2026-03-01.txt: +===== Log Summary Report ===== +Date of Analysis: 2026-03-01 +Log File: /home/ubuntu/day-20.log +Total Lines Processed: 2000 +Total Error Count: 595 + +--- Top 5 Error Messages --- + 369 mod_jk child workerEnv in error state 6 + 101 mod_jk child workerEnv in error state 7 + 44 mod_jk child workerEnv in error state 8 + 20 mod_jk child workerEnv in error state 9 + 12 mod_jk child init 1 -2 + +--- Critical Events (with line numbers) --- +1:[Sun Dec 04 04:47:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +3:[Sun Dec 04 04:51:08 2005] [notice] jk2_init() Found child 6725 in scoreboard slot 10 +4:[Sun Dec 04 04:51:09 2005] [notice] jk2_init() Found child 6726 in scoreboard slot 8 +5:[Sun Dec 04 04:51:09 2005] [notice] jk2_init() Found child 6728 in scoreboard slot 6 +6:[Sun Dec 04 04:51:14 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +7:[Sun Dec 04 04:51:14 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +8:[Sun Dec 04 04:51:14 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +12:[Sun Dec 04 04:51:37 2005] [notice] jk2_init() Found child 6736 in scoreboard slot 10 +13:[Sun Dec 04 04:51:38 2005] [notice] jk2_init() Found child 6733 in scoreboard slot 7 +14:[Sun Dec 04 04:51:38 2005] [notice] jk2_init() Found child 6734 in scoreboard slot 9 +15:[Sun Dec 04 04:51:52 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +16:[Sun Dec 04 04:51:52 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +18:[Sun Dec 04 04:52:04 2005] [notice] jk2_init() Found child 6738 in scoreboard slot 6 +19:[Sun Dec 04 04:52:04 2005] [notice] jk2_init() Found child 6741 in scoreboard slot 9 +20:[Sun Dec 04 04:52:05 2005] [notice] jk2_init() Found child 6740 in scoreboard slot 7 +21:[Sun Dec 04 04:52:05 2005] [notice] jk2_init() Found child 6737 in scoreboard slot 8 +22:[Sun Dec 04 04:52:12 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +23:[Sun Dec 04 04:52:12 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +24:[Sun Dec 04 04:52:12 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +28:[Sun Dec 04 04:52:36 2005] [notice] jk2_init() Found child 6748 in scoreboard slot 6 +29:[Sun Dec 04 04:52:36 2005] [notice] jk2_init() Found child 6744 in scoreboard slot 10 +30:[Sun Dec 04 04:52:36 2005] [notice] jk2_init() Found child 6745 in scoreboard slot 8 +31:[Sun Dec 04 04:52:49 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +32:[Sun Dec 04 04:52:49 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +35:[Sun Dec 04 04:53:05 2005] [notice] jk2_init() Found child 6750 in scoreboard slot 7 +36:[Sun Dec 04 04:53:05 2005] [notice] jk2_init() Found child 6751 in scoreboard slot 9 +37:[Sun Dec 04 04:53:05 2005] [notice] jk2_init() Found child 6752 in scoreboard slot 10 +38:[Sun Dec 04 04:53:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +39:[Sun Dec 04 04:53:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +42:[Sun Dec 04 04:53:29 2005] [notice] jk2_init() Found child 6754 in scoreboard slot 8 +43:[Sun Dec 04 04:53:29 2005] [notice] jk2_init() Found child 6755 in scoreboard slot 6 +44:[Sun Dec 04 04:53:40 2005] [notice] jk2_init() Found child 6756 in scoreboard slot 7 +45:[Sun Dec 04 04:53:51 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +47:[Sun Dec 04 04:54:15 2005] [notice] jk2_init() Found child 6763 in scoreboard slot 10 +48:[Sun Dec 04 04:54:15 2005] [notice] jk2_init() Found child 6766 in scoreboard slot 6 +49:[Sun Dec 04 04:54:15 2005] [notice] jk2_init() Found child 6767 in scoreboard slot 7 +50:[Sun Dec 04 04:54:15 2005] [notice] jk2_init() Found child 6765 in scoreboard slot 8 +51:[Sun Dec 04 04:54:18 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +52:[Sun Dec 04 04:54:18 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +53:[Sun Dec 04 04:54:18 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +54:[Sun Dec 04 04:54:18 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +59:[Sun Dec 04 04:54:20 2005] [notice] jk2_init() Found child 6768 in scoreboard slot 9 +60:[Sun Dec 04 04:54:20 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +62:[Sun Dec 04 04:56:52 2005] [notice] jk2_init() Found child 8527 in scoreboard slot 10 +63:[Sun Dec 04 04:56:52 2005] [notice] jk2_init() Found child 8533 in scoreboard slot 8 +64:[Sun Dec 04 04:56:57 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +65:[Sun Dec 04 04:56:57 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +68:[Sun Dec 04 04:57:20 2005] [notice] jk2_init() Found child 8536 in scoreboard slot 6 +69:[Sun Dec 04 04:57:20 2005] [notice] jk2_init() Found child 8539 in scoreboard slot 7 +70:[Sun Dec 04 04:57:24 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +71:[Sun Dec 04 04:57:24 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +74:[Sun Dec 04 04:57:49 2005] [notice] jk2_init() Found child 8541 in scoreboard slot 9 +75:[Sun Dec 04 04:58:11 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +77:[Sun Dec 04 04:58:45 2005] [notice] jk2_init() Found child 8547 in scoreboard slot 10 +78:[Sun Dec 04 04:58:57 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +80:[Sun Dec 04 04:59:28 2005] [notice] jk2_init() Found child 8554 in scoreboard slot 6 +81:[Sun Dec 04 04:59:27 2005] [notice] jk2_init() Found child 8553 in scoreboard slot 8 +82:[Sun Dec 04 04:59:35 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +83:[Sun Dec 04 04:59:35 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +86:[Sun Dec 04 05:00:03 2005] [notice] jk2_init() Found child 8560 in scoreboard slot 7 +87:[Sun Dec 04 05:00:09 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +89:[Sun Dec 04 05:00:13 2005] [notice] jk2_init() Found child 8565 in scoreboard slot 9 +90:[Sun Dec 04 05:00:13 2005] [notice] jk2_init() Found child 8573 in scoreboard slot 10 +91:[Sun Dec 04 05:00:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +93:[Sun Dec 04 05:00:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +95:[Sun Dec 04 05:01:20 2005] [notice] jk2_init() Found child 8584 in scoreboard slot 7 +96:[Sun Dec 04 05:01:20 2005] [notice] jk2_init() Found child 8587 in scoreboard slot 9 +97:[Sun Dec 04 05:02:14 2005] [notice] jk2_init() Found child 8603 in scoreboard slot 10 +98:[Sun Dec 04 05:02:14 2005] [notice] jk2_init() Found child 8605 in scoreboard slot 8 +99:[Sun Dec 04 05:04:03 2005] [notice] jk2_init() Found child 8764 in scoreboard slot 10 +100:[Sun Dec 04 05:04:03 2005] [notice] jk2_init() Found child 8765 in scoreboard slot 11 +101:[Sun Dec 04 05:04:03 2005] [notice] jk2_init() Found child 8763 in scoreboard slot 9 +102:[Sun Dec 04 05:04:03 2005] [notice] jk2_init() Found child 8744 in scoreboard slot 8 +103:[Sun Dec 04 05:04:03 2005] [notice] jk2_init() Found child 8743 in scoreboard slot 7 +104:[Sun Dec 04 05:04:03 2005] [notice] jk2_init() Found child 8738 in scoreboard slot 6 +105:[Sun Dec 04 05:04:03 2005] [notice] jk2_init() Found child 8766 in scoreboard slot 12 +106:[Sun Dec 04 05:04:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +108:[Sun Dec 04 05:04:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +110:[Sun Dec 04 05:04:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +112:[Sun Dec 04 05:04:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +114:[Sun Dec 04 05:04:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +116:[Sun Dec 04 05:04:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +118:[Sun Dec 04 05:04:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +120:[Sun Dec 04 05:11:51 2005] [notice] jk2_init() Found child 25792 in scoreboard slot 6 +121:[Sun Dec 04 05:12:07 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +123:[Sun Dec 04 05:12:26 2005] [notice] jk2_init() Found child 25798 in scoreboard slot 7 +124:[Sun Dec 04 05:12:26 2005] [notice] jk2_init() Found child 25803 in scoreboard slot 8 +125:[Sun Dec 04 05:12:28 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +127:[Sun Dec 04 05:12:28 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +129:[Sun Dec 04 05:12:30 2005] [notice] jk2_init() Found child 25805 in scoreboard slot 9 +130:[Sun Dec 04 05:12:30 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +133:[Sun Dec 04 05:15:13 2005] [notice] jk2_init() Found child 1000 in scoreboard slot 10 +134:[Sun Dec 04 05:15:16 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +136:[Sun Dec 04 06:01:00 2005] [notice] jk2_init() Found child 32347 in scoreboard slot 6 +137:[Sun Dec 04 06:01:00 2005] [notice] jk2_init() Found child 32348 in scoreboard slot 7 +138:[Sun Dec 04 06:01:21 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +139:[Sun Dec 04 06:01:21 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +141:[Sun Dec 04 06:01:42 2005] [notice] jk2_init() Found child 32352 in scoreboard slot 9 +142:[Sun Dec 04 06:01:42 2005] [notice] jk2_init() Found child 32353 in scoreboard slot 10 +143:[Sun Dec 04 06:01:42 2005] [notice] jk2_init() Found child 32354 in scoreboard slot 6 +144:[Sun Dec 04 06:02:01 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +146:[Sun Dec 04 06:02:05 2005] [notice] jk2_init() Found child 32359 in scoreboard slot 9 +147:[Sun Dec 04 06:02:05 2005] [notice] jk2_init() Found child 32360 in scoreboard slot 11 +148:[Sun Dec 04 06:02:05 2005] [notice] jk2_init() Found child 32358 in scoreboard slot 8 +149:[Sun Dec 04 06:02:05 2005] [notice] jk2_init() Found child 32355 in scoreboard slot 7 +150:[Sun Dec 04 06:02:07 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +152:[Sun Dec 04 06:02:07 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +154:[Sun Dec 04 06:02:07 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +156:[Sun Dec 04 06:02:07 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +158:[Sun Dec 04 06:06:00 2005] [notice] jk2_init() Found child 32388 in scoreboard slot 8 +159:[Sun Dec 04 06:06:00 2005] [notice] jk2_init() Found child 32387 in scoreboard slot 7 +160:[Sun Dec 04 06:06:00 2005] [notice] jk2_init() Found child 32386 in scoreboard slot 6 +161:[Sun Dec 04 06:06:10 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +162:[Sun Dec 04 06:06:11 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +165:[Sun Dec 04 06:06:20 2005] [notice] jk2_init() Found child 32389 in scoreboard slot 9 +166:[Sun Dec 04 06:06:24 2005] [notice] jk2_init() Found child 32391 in scoreboard slot 10 +167:[Sun Dec 04 06:06:24 2005] [notice] jk2_init() Found child 32390 in scoreboard slot 8 +168:[Sun Dec 04 06:06:24 2005] [notice] jk2_init() Found child 32392 in scoreboard slot 6 +169:[Sun Dec 04 06:06:26 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +171:[Sun Dec 04 06:06:26 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +173:[Sun Dec 04 06:06:26 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +175:[Sun Dec 04 06:06:26 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +177:[Sun Dec 04 06:11:11 2005] [notice] jk2_init() Found child 32410 in scoreboard slot 7 +178:[Sun Dec 04 06:11:11 2005] [notice] jk2_init() Found child 32411 in scoreboard slot 9 +179:[Sun Dec 04 06:12:31 2005] [notice] jk2_init() Found child 32423 in scoreboard slot 9 +180:[Sun Dec 04 06:12:31 2005] [notice] jk2_init() Found child 32422 in scoreboard slot 8 +181:[Sun Dec 04 06:12:31 2005] [notice] jk2_init() Found child 32419 in scoreboard slot 6 +182:[Sun Dec 04 06:12:31 2005] [notice] jk2_init() Found child 32421 in scoreboard slot 11 +183:[Sun Dec 04 06:12:31 2005] [notice] jk2_init() Found child 32420 in scoreboard slot 7 +184:[Sun Dec 04 06:12:31 2005] [notice] jk2_init() Found child 32424 in scoreboard slot 10 +185:[Sun Dec 04 06:12:37 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +186:[Sun Dec 04 06:12:37 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +187:[Sun Dec 04 06:12:37 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +188:[Sun Dec 04 06:12:37 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +189:[Sun Dec 04 06:12:37 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +195:[Sun Dec 04 06:12:59 2005] [notice] jk2_init() Found child 32425 in scoreboard slot 6 +196:[Sun Dec 04 06:13:01 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +198:[Sun Dec 04 06:16:10 2005] [notice] jk2_init() Found child 32432 in scoreboard slot 7 +199:[Sun Dec 04 06:16:10 2005] [notice] jk2_init() Found child 32434 in scoreboard slot 9 +200:[Sun Dec 04 06:16:10 2005] [notice] jk2_init() Found child 32433 in scoreboard slot 8 +201:[Sun Dec 04 06:16:21 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +202:[Sun Dec 04 06:16:21 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +205:[Sun Dec 04 06:16:21 2005] [notice] jk2_init() Found child 32435 in scoreboard slot 10 +206:[Sun Dec 04 06:16:21 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +208:[Sun Dec 04 06:16:37 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +210:[Sun Dec 04 06:16:51 2005] [notice] jk2_init() Found child 32436 in scoreboard slot 6 +211:[Sun Dec 04 06:16:51 2005] [notice] jk2_init() Found child 32437 in scoreboard slot 7 +212:[Sun Dec 04 06:17:02 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +213:[Sun Dec 04 06:17:02 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +215:[Sun Dec 04 06:17:06 2005] [notice] jk2_init() Found child 32438 in scoreboard slot 8 +216:[Sun Dec 04 06:17:18 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +218:[Sun Dec 04 06:17:23 2005] [notice] jk2_init() Found child 32440 in scoreboard slot 10 +219:[Sun Dec 04 06:17:23 2005] [notice] jk2_init() Found child 32439 in scoreboard slot 9 +220:[Sun Dec 04 06:17:23 2005] [notice] jk2_init() Found child 32441 in scoreboard slot 6 +221:[Sun Dec 04 06:17:33 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +222:[Sun Dec 04 06:17:33 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +225:[Sun Dec 04 06:17:55 2005] [notice] jk2_init() Found child 32442 in scoreboard slot 7 +226:[Sun Dec 04 06:17:55 2005] [notice] jk2_init() Found child 32443 in scoreboard slot 8 +227:[Sun Dec 04 06:17:55 2005] [notice] jk2_init() Found child 32444 in scoreboard slot 9 +228:[Sun Dec 04 06:18:08 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +229:[Sun Dec 04 06:18:08 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +232:[Sun Dec 04 06:18:12 2005] [notice] jk2_init() Found child 32445 in scoreboard slot 10 +233:[Sun Dec 04 06:18:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +235:[Sun Dec 04 06:18:41 2005] [notice] jk2_init() Found child 32447 in scoreboard slot 7 +236:[Sun Dec 04 06:18:39 2005] [notice] jk2_init() Found child 32446 in scoreboard slot 6 +237:[Sun Dec 04 06:18:40 2005] [notice] jk2_init() Found child 32448 in scoreboard slot 8 +238:[Sun Dec 04 06:18:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +239:[Sun Dec 04 06:18:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +242:[Sun Dec 04 06:19:05 2005] [notice] jk2_init() Found child 32449 in scoreboard slot 9 +243:[Sun Dec 04 06:19:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +244:[Sun Dec 04 06:19:19 2005] [notice] jk2_init() Found child 32450 in scoreboard slot 10 +246:[Sun Dec 04 06:19:19 2005] [notice] jk2_init() Found child 32452 in scoreboard slot 7 +247:[Sun Dec 04 06:19:19 2005] [notice] jk2_init() Found child 32451 in scoreboard slot 6 +248:[Sun Dec 04 06:19:31 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +249:[Sun Dec 04 06:19:31 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +252:[Sun Dec 04 06:19:56 2005] [notice] jk2_init() Found child 32454 in scoreboard slot 7 +253:[Sun Dec 04 06:19:56 2005] [notice] jk2_init() Found child 32453 in scoreboard slot 8 +254:[Sun Dec 04 06:19:56 2005] [notice] jk2_init() Found child 32455 in scoreboard slot 9 +255:[Sun Dec 04 06:20:30 2005] [notice] jk2_init() Found child 32467 in scoreboard slot 9 +256:[Sun Dec 04 06:20:30 2005] [notice] jk2_init() Found child 32464 in scoreboard slot 8 +257:[Sun Dec 04 06:20:30 2005] [notice] jk2_init() Found child 32465 in scoreboard slot 7 +258:[Sun Dec 04 06:20:30 2005] [notice] jk2_init() Found child 32466 in scoreboard slot 11 +259:[Sun Dec 04 06:20:30 2005] [notice] jk2_init() Found child 32457 in scoreboard slot 6 +260:[Sun Dec 04 06:20:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +261:[Sun Dec 04 06:20:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +262:[Sun Dec 04 06:20:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +266:[Sun Dec 04 06:22:18 2005] [notice] jk2_init() Found child 32475 in scoreboard slot 8 +267:[Sun Dec 04 06:22:48 2005] [notice] jk2_init() Found child 32478 in scoreboard slot 11 +268:[Sun Dec 04 06:22:48 2005] [notice] jk2_init() Found child 32477 in scoreboard slot 10 +269:[Sun Dec 04 06:22:48 2005] [notice] jk2_init() Found child 32479 in scoreboard slot 6 +270:[Sun Dec 04 06:22:48 2005] [notice] jk2_init() Found child 32480 in scoreboard slot 8 +271:[Sun Dec 04 06:22:48 2005] [notice] jk2_init() Found child 32476 in scoreboard slot 7 +272:[Sun Dec 04 06:22:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +273:[Sun Dec 04 06:22:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +274:[Sun Dec 04 06:22:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +275:[Sun Dec 04 06:22:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +276:[Sun Dec 04 06:22:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +282:[Sun Dec 04 06:23:12 2005] [notice] jk2_init() Found child 32483 in scoreboard slot 7 +283:[Sun Dec 04 06:23:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +285:[Sun Dec 04 06:30:41 2005] [notice] jk2_init() Found child 32507 in scoreboard slot 9 +286:[Sun Dec 04 06:30:43 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +288:[Sun Dec 04 06:36:07 2005] [notice] jk2_init() Found child 32529 in scoreboard slot 6 +289:[Sun Dec 04 06:36:07 2005] [notice] jk2_init() Found child 32528 in scoreboard slot 10 +290:[Sun Dec 04 06:36:10 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +292:[Sun Dec 04 06:36:10 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +294:[Sun Dec 04 06:40:54 2005] [notice] jk2_init() Found child 32548 in scoreboard slot 9 +295:[Sun Dec 04 06:40:54 2005] [notice] jk2_init() Found child 32546 in scoreboard slot 8 +296:[Sun Dec 04 06:40:55 2005] [notice] jk2_init() Found child 32547 in scoreboard slot 7 +297:[Sun Dec 04 06:41:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +298:[Sun Dec 04 06:41:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +299:[Sun Dec 04 06:41:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +303:[Sun Dec 04 06:41:29 2005] [notice] jk2_init() Found child 32549 in scoreboard slot 10 +304:[Sun Dec 04 06:41:29 2005] [notice] jk2_init() Found child 32550 in scoreboard slot 6 +305:[Sun Dec 04 06:41:45 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +306:[Sun Dec 04 06:41:45 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +309:[Sun Dec 04 06:42:11 2005] [notice] jk2_init() Found child 32551 in scoreboard slot 8 +310:[Sun Dec 04 06:42:11 2005] [notice] jk2_init() Found child 32552 in scoreboard slot 7 +311:[Sun Dec 04 06:42:25 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +312:[Sun Dec 04 06:42:23 2005] [notice] jk2_init() Found child 32554 in scoreboard slot 10 +313:[Sun Dec 04 06:42:25 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +314:[Sun Dec 04 06:42:23 2005] [notice] jk2_init() Found child 32553 in scoreboard slot 9 +317:[Sun Dec 04 06:42:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +318:[Sun Dec 04 06:42:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +321:[Sun Dec 04 06:43:20 2005] [notice] jk2_init() Found child 32556 in scoreboard slot 8 +322:[Sun Dec 04 06:43:20 2005] [notice] jk2_init() Found child 32555 in scoreboard slot 6 +323:[Sun Dec 04 06:43:20 2005] [notice] jk2_init() Found child 32557 in scoreboard slot 7 +324:[Sun Dec 04 06:43:34 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +325:[Sun Dec 04 06:43:34 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +326:[Sun Dec 04 06:43:34 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +329:[Sun Dec 04 06:43:56 2005] [notice] jk2_init() Found child 32558 in scoreboard slot 9 +330:[Sun Dec 04 06:44:18 2005] [notice] jk2_init() Found child 32560 in scoreboard slot 6 +331:[Sun Dec 04 06:44:18 2005] [notice] jk2_init() Found child 32561 in scoreboard slot 8 +332:[Sun Dec 04 06:44:39 2005] [notice] jk2_init() Found child 32563 in scoreboard slot 9 +333:[Sun Dec 04 06:44:39 2005] [notice] jk2_init() Found child 32564 in scoreboard slot 10 +334:[Sun Dec 04 06:44:39 2005] [notice] jk2_init() Found child 32565 in scoreboard slot 11 +335:[Sun Dec 04 06:45:32 2005] [notice] jk2_init() Found child 32575 in scoreboard slot 6 +336:[Sun Dec 04 06:45:32 2005] [notice] jk2_init() Found child 32576 in scoreboard slot 7 +337:[Sun Dec 04 06:45:32 2005] [notice] jk2_init() Found child 32569 in scoreboard slot 9 +338:[Sun Dec 04 06:45:32 2005] [notice] jk2_init() Found child 32572 in scoreboard slot 10 +339:[Sun Dec 04 06:45:32 2005] [notice] jk2_init() Found child 32577 in scoreboard slot 11 +340:[Sun Dec 04 06:45:50 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +341:[Sun Dec 04 06:45:50 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +343:[Sun Dec 04 06:46:13 2005] [notice] jk2_init() Found child 32578 in scoreboard slot 8 +344:[Sun Dec 04 06:46:13 2005] [notice] jk2_init() Found child 32580 in scoreboard slot 6 +345:[Sun Dec 04 06:46:12 2005] [notice] jk2_init() Found child 32581 in scoreboard slot 7 +346:[Sun Dec 04 06:46:13 2005] [notice] jk2_init() Found child 32579 in scoreboard slot 9 +347:[Sun Dec 04 06:46:30 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +348:[Sun Dec 04 06:46:30 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +351:[Sun Dec 04 06:46:32 2005] [notice] jk2_init() Found child 32582 in scoreboard slot 10 +352:[Sun Dec 04 06:46:32 2005] [notice] jk2_init() Found child 32584 in scoreboard slot 9 +353:[Sun Dec 04 06:46:32 2005] [notice] jk2_init() Found child 32583 in scoreboard slot 8 +354:[Sun Dec 04 06:46:33 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +356:[Sun Dec 04 06:46:34 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +358:[Sun Dec 04 06:46:34 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +360:[Sun Dec 04 06:47:19 2005] [notice] jk2_init() Found child 32585 in scoreboard slot 6 +361:[Sun Dec 04 06:47:30 2005] [notice] jk2_init() Found child 32587 in scoreboard slot 10 +362:[Sun Dec 04 06:47:30 2005] [notice] jk2_init() Found child 32586 in scoreboard slot 7 +363:[Sun Dec 04 06:47:34 2005] [notice] jk2_init() Found child 32588 in scoreboard slot 8 +364:[Sun Dec 04 06:47:38 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +365:[Sun Dec 04 06:47:39 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +366:[Sun Dec 04 06:47:39 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +368:[Sun Dec 04 06:48:09 2005] [notice] jk2_init() Found child 32592 in scoreboard slot 10 +369:[Sun Dec 04 06:48:09 2005] [notice] jk2_init() Found child 32591 in scoreboard slot 7 +370:[Sun Dec 04 06:48:22 2005] [notice] jk2_init() Found child 32594 in scoreboard slot 6 +371:[Sun Dec 04 06:48:22 2005] [notice] jk2_init() Found child 32593 in scoreboard slot 8 +372:[Sun Dec 04 06:48:48 2005] [notice] jk2_init() Found child 32597 in scoreboard slot 10 +373:[Sun Dec 04 06:49:06 2005] [notice] jk2_init() Found child 32600 in scoreboard slot 9 +374:[Sun Dec 04 06:49:06 2005] [notice] jk2_init() Found child 32601 in scoreboard slot 7 +375:[Sun Dec 04 06:49:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +377:[Sun Dec 04 06:49:40 2005] [notice] jk2_init() Found child 32605 in scoreboard slot 9 +378:[Sun Dec 04 06:49:40 2005] [notice] jk2_init() Found child 32604 in scoreboard slot 6 +379:[Sun Dec 04 06:51:13 2005] [notice] jk2_init() Found child 32622 in scoreboard slot 7 +380:[Sun Dec 04 06:51:14 2005] [notice] jk2_init() Found child 32623 in scoreboard slot 11 +381:[Sun Dec 04 06:51:13 2005] [notice] jk2_init() Found child 32624 in scoreboard slot 8 +382:[Sun Dec 04 06:51:13 2005] [notice] jk2_init() Found child 32621 in scoreboard slot 9 +383:[Sun Dec 04 06:51:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +385:[Sun Dec 04 06:51:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +387:[Sun Dec 04 06:51:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +389:[Sun Dec 04 06:51:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +391:[Sun Dec 04 06:51:25 2005] [notice] jk2_init() Found child 32626 in scoreboard slot 6 +392:[Sun Dec 04 06:51:26 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +394:[Sun Dec 04 06:52:07 2005] [notice] jk2_init() Found child 32627 in scoreboard slot 9 +395:[Sun Dec 04 06:52:08 2005] [notice] jk2_init() Found child 32628 in scoreboard slot 7 +396:[Sun Dec 04 06:52:13 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +397:[Sun Dec 04 06:52:14 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +400:[Sun Dec 04 06:52:27 2005] [notice] jk2_init() Found child 32630 in scoreboard slot 8 +401:[Sun Dec 04 06:52:27 2005] [notice] jk2_init() Found child 32629 in scoreboard slot 10 +402:[Sun Dec 04 06:52:39 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +403:[Sun Dec 04 06:52:39 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +406:[Sun Dec 04 06:53:04 2005] [notice] jk2_init() Found child 32633 in scoreboard slot 9 +407:[Sun Dec 04 06:53:04 2005] [notice] jk2_init() Found child 32634 in scoreboard slot 11 +408:[Sun Dec 04 06:53:04 2005] [notice] jk2_init() Found child 32632 in scoreboard slot 7 +409:[Sun Dec 04 06:53:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +411:[Sun Dec 04 06:53:38 2005] [notice] jk2_init() Found child 32636 in scoreboard slot 6 +412:[Sun Dec 04 06:53:37 2005] [notice] jk2_init() Found child 32637 in scoreboard slot 7 +413:[Sun Dec 04 06:53:37 2005] [notice] jk2_init() Found child 32638 in scoreboard slot 9 +414:[Sun Dec 04 06:54:04 2005] [notice] jk2_init() Found child 32640 in scoreboard slot 8 +415:[Sun Dec 04 06:54:04 2005] [notice] jk2_init() Found child 32641 in scoreboard slot 6 +416:[Sun Dec 04 06:54:04 2005] [notice] jk2_init() Found child 32642 in scoreboard slot 7 +417:[Sun Dec 04 06:54:35 2005] [notice] jk2_init() Found child 32646 in scoreboard slot 6 +418:[Sun Dec 04 06:55:00 2005] [notice] jk2_init() Found child 32648 in scoreboard slot 9 +419:[Sun Dec 04 06:55:00 2005] [notice] jk2_init() Found child 32652 in scoreboard slot 7 +420:[Sun Dec 04 06:55:00 2005] [notice] jk2_init() Found child 32649 in scoreboard slot 10 +421:[Sun Dec 04 06:55:00 2005] [notice] jk2_init() Found child 32651 in scoreboard slot 6 +422:[Sun Dec 04 06:55:00 2005] [notice] jk2_init() Found child 32650 in scoreboard slot 8 +423:[Sun Dec 04 06:55:19 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +424:[Sun Dec 04 06:55:19 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +425:[Sun Dec 04 06:55:19 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +429:[Sun Dec 04 06:55:55 2005] [notice] jk2_init() Found child 32660 in scoreboard slot 6 +430:[Sun Dec 04 06:55:54 2005] [notice] jk2_init() Found child 32658 in scoreboard slot 10 +431:[Sun Dec 04 06:55:54 2005] [notice] jk2_init() Found child 32659 in scoreboard slot 8 +432:[Sun Dec 04 06:55:54 2005] [notice] jk2_init() Found child 32657 in scoreboard slot 9 +433:[Sun Dec 04 06:56:10 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +435:[Sun Dec 04 06:56:37 2005] [notice] jk2_init() Found child 32663 in scoreboard slot 10 +436:[Sun Dec 04 06:56:37 2005] [notice] jk2_init() Found child 32664 in scoreboard slot 8 +437:[Sun Dec 04 06:57:19 2005] [notice] jk2_init() Found child 32670 in scoreboard slot 6 +438:[Sun Dec 04 06:57:19 2005] [notice] jk2_init() Found child 32667 in scoreboard slot 9 +439:[Sun Dec 04 06:57:19 2005] [notice] jk2_init() Found child 32668 in scoreboard slot 10 +440:[Sun Dec 04 06:57:19 2005] [notice] jk2_init() Found child 32669 in scoreboard slot 8 +441:[Sun Dec 04 06:57:19 2005] [notice] jk2_init() Found child 32671 in scoreboard slot 7 +442:[Sun Dec 04 06:57:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +443:[Sun Dec 04 06:57:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +446:[Sun Dec 04 06:57:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +448:[Sun Dec 04 06:57:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +450:[Sun Dec 04 06:57:24 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +452:[Sun Dec 04 06:58:12 2005] [notice] jk2_init() Found child 32674 in scoreboard slot 8 +453:[Sun Dec 04 06:58:13 2005] [notice] jk2_init() Found child 32672 in scoreboard slot 9 +454:[Sun Dec 04 06:58:13 2005] [notice] jk2_init() Found child 32673 in scoreboard slot 10 +455:[Sun Dec 04 06:58:27 2005] [notice] jk2_init() Found child 32675 in scoreboard slot 6 +456:[Sun Dec 04 06:58:28 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +457:[Sun Dec 04 06:58:28 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +460:[Sun Dec 04 06:58:51 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +462:[Sun Dec 04 06:58:54 2005] [notice] jk2_init() Found child 32677 in scoreboard slot 7 +463:[Sun Dec 04 06:58:54 2005] [notice] jk2_init() Found child 32676 in scoreboard slot 9 +464:[Sun Dec 04 06:58:54 2005] [notice] jk2_init() Found child 32678 in scoreboard slot 10 +465:[Sun Dec 04 06:59:28 2005] [notice] jk2_init() Found child 32679 in scoreboard slot 8 +466:[Sun Dec 04 06:59:28 2005] [notice] jk2_init() Found child 32680 in scoreboard slot 6 +467:[Sun Dec 04 06:59:34 2005] [notice] jk2_init() Found child 32681 in scoreboard slot 9 +468:[Sun Dec 04 06:59:34 2005] [notice] jk2_init() Found child 32682 in scoreboard slot 7 +469:[Sun Dec 04 06:59:38 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +471:[Sun Dec 04 06:59:45 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +472:[Sun Dec 04 06:59:45 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +475:[Sun Dec 04 06:59:59 2005] [notice] jk2_init() Found child 32683 in scoreboard slot 10 +476:[Sun Dec 04 07:00:06 2005] [notice] jk2_init() Found child 32685 in scoreboard slot 6 +477:[Sun Dec 04 07:00:32 2005] [notice] jk2_init() Found child 32688 in scoreboard slot 11 +478:[Sun Dec 04 07:00:32 2005] [notice] jk2_init() Found child 32695 in scoreboard slot 8 +479:[Sun Dec 04 07:00:32 2005] [notice] jk2_init() Found child 32696 in scoreboard slot 6 +480:[Sun Dec 04 07:01:25 2005] [notice] jk2_init() Found child 32701 in scoreboard slot 10 +481:[Sun Dec 04 07:01:26 2005] [notice] jk2_init() Found child 32702 in scoreboard slot 11 +482:[Sun Dec 04 07:01:55 2005] [notice] jk2_init() Found child 32711 in scoreboard slot 10 +483:[Sun Dec 04 07:01:55 2005] [notice] jk2_init() Found child 32708 in scoreboard slot 7 +484:[Sun Dec 04 07:01:55 2005] [notice] jk2_init() Found child 32710 in scoreboard slot 9 +485:[Sun Dec 04 07:01:55 2005] [notice] jk2_init() Found child 32709 in scoreboard slot 8 +486:[Sun Dec 04 07:01:57 2005] [notice] jk2_init() Found child 32712 in scoreboard slot 6 +487:[Sun Dec 04 07:02:01 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +488:[Sun Dec 04 07:02:01 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +489:[Sun Dec 04 07:02:01 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +490:[Sun Dec 04 07:02:01 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +491:[Sun Dec 04 07:02:01 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +497:[Sun Dec 04 07:02:52 2005] [notice] jk2_init() Found child 32713 in scoreboard slot 7 +498:[Sun Dec 04 07:03:23 2005] [notice] jk2_init() Found child 32717 in scoreboard slot 10 +499:[Sun Dec 04 07:03:48 2005] [notice] jk2_init() Found child 32720 in scoreboard slot 8 +500:[Sun Dec 04 07:04:27 2005] [notice] jk2_init() Found child 32726 in scoreboard slot 8 +501:[Sun Dec 04 07:04:55 2005] [notice] jk2_init() Found child 32730 in scoreboard slot 7 +502:[Sun Dec 04 07:04:55 2005] [notice] jk2_init() Found child 32729 in scoreboard slot 6 +503:[Sun Dec 04 07:04:55 2005] [notice] jk2_init() Found child 32731 in scoreboard slot 8 +504:[Sun Dec 04 07:05:44 2005] [notice] jk2_init() Found child 32739 in scoreboard slot 7 +505:[Sun Dec 04 07:05:44 2005] [notice] jk2_init() Found child 32740 in scoreboard slot 8 +506:[Sun Dec 04 07:06:11 2005] [notice] jk2_init() Found child 32742 in scoreboard slot 10 +507:[Sun Dec 04 07:07:23 2005] [notice] jk2_init() Found child 32758 in scoreboard slot 7 +508:[Sun Dec 04 07:07:23 2005] [notice] jk2_init() Found child 32755 in scoreboard slot 8 +509:[Sun Dec 04 07:07:23 2005] [notice] jk2_init() Found child 32754 in scoreboard slot 11 +510:[Sun Dec 04 07:07:30 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +511:[Sun Dec 04 07:07:30 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +512:[Sun Dec 04 07:07:30 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +516:[Sun Dec 04 07:08:02 2005] [notice] jk2_init() Found child 32761 in scoreboard slot 6 +517:[Sun Dec 04 07:08:02 2005] [notice] jk2_init() Found child 32762 in scoreboard slot 9 +518:[Sun Dec 04 07:08:02 2005] [notice] jk2_init() Found child 32763 in scoreboard slot 10 +519:[Sun Dec 04 07:08:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +521:[Sun Dec 04 07:08:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +523:[Sun Dec 04 07:08:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +525:[Sun Dec 04 07:10:54 2005] [notice] jk2_init() Found child 308 in scoreboard slot 8 +526:[Sun Dec 04 07:11:04 2005] [notice] jk2_init() Found child 310 in scoreboard slot 6 +527:[Sun Dec 04 07:11:04 2005] [notice] jk2_init() Found child 309 in scoreboard slot 7 +528:[Sun Dec 04 07:11:05 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +530:[Sun Dec 04 07:11:13 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +531:[Sun Dec 04 07:11:13 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +534:[Sun Dec 04 07:11:49 2005] [notice] jk2_init() Found child 311 in scoreboard slot 9 +535:[Sun Dec 04 07:12:05 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +537:[Sun Dec 04 07:12:22 2005] [notice] jk2_init() Found child 312 in scoreboard slot 10 +538:[Sun Dec 04 07:12:22 2005] [notice] jk2_init() Found child 313 in scoreboard slot 8 +539:[Sun Dec 04 07:12:40 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +540:[Sun Dec 04 07:12:40 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +543:[Sun Dec 04 07:13:09 2005] [notice] jk2_init() Found child 314 in scoreboard slot 7 +544:[Sun Dec 04 07:13:09 2005] [notice] jk2_init() Found child 315 in scoreboard slot 6 +545:[Sun Dec 04 07:13:10 2005] [notice] jk2_init() Found child 316 in scoreboard slot 9 +546:[Sun Dec 04 07:13:36 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +547:[Sun Dec 04 07:13:36 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +548:[Sun Dec 04 07:13:36 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +551:[Sun Dec 04 07:14:07 2005] [notice] jk2_init() Found child 319 in scoreboard slot 7 +552:[Sun Dec 04 07:14:07 2005] [notice] jk2_init() Found child 317 in scoreboard slot 10 +553:[Sun Dec 04 07:14:08 2005] [notice] jk2_init() Found child 318 in scoreboard slot 8 +554:[Sun Dec 04 07:14:21 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +556:[Sun Dec 04 07:14:47 2005] [notice] jk2_init() Found child 321 in scoreboard slot 9 +557:[Sun Dec 04 07:15:09 2005] [notice] jk2_init() Found child 324 in scoreboard slot 11 +558:[Sun Dec 04 07:15:09 2005] [notice] jk2_init() Found child 323 in scoreboard slot 8 +559:[Sun Dec 04 07:17:56 2005] [notice] jk2_init() Found child 350 in scoreboard slot 9 +560:[Sun Dec 04 07:17:56 2005] [notice] jk2_init() Found child 353 in scoreboard slot 12 +561:[Sun Dec 04 07:17:56 2005] [notice] jk2_init() Found child 352 in scoreboard slot 11 +562:[Sun Dec 04 07:17:56 2005] [notice] jk2_init() Found child 349 in scoreboard slot 8 +563:[Sun Dec 04 07:17:56 2005] [notice] jk2_init() Found child 348 in scoreboard slot 7 +564:[Sun Dec 04 07:17:56 2005] [notice] jk2_init() Found child 347 in scoreboard slot 6 +565:[Sun Dec 04 07:17:56 2005] [notice] jk2_init() Found child 351 in scoreboard slot 10 +566:[Sun Dec 04 07:18:00 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +568:[Sun Dec 04 07:18:00 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +570:[Sun Dec 04 07:18:00 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +572:[Sun Dec 04 07:18:00 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +574:[Sun Dec 04 07:18:00 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +576:[Sun Dec 04 07:18:00 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +578:[Sun Dec 04 07:18:00 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +592:[Sun Dec 04 16:24:03 2005] [notice] jk2_init() Found child 1219 in scoreboard slot 6 +594:[Sun Dec 04 16:24:06 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +596:[Sun Dec 04 16:31:07 2005] [notice] jk2_init() Found child 1248 in scoreboard slot 7 +597:[Sun Dec 04 16:32:37 2005] [notice] jk2_init() Found child 1253 in scoreboard slot 9 +598:[Sun Dec 04 16:32:56 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +600:[Sun Dec 04 16:32:58 2005] [notice] jk2_init() Found child 1254 in scoreboard slot 7 +601:[Sun Dec 04 16:32:58 2005] [notice] jk2_init() Found child 1256 in scoreboard slot 6 +602:[Sun Dec 04 16:32:58 2005] [notice] jk2_init() Found child 1255 in scoreboard slot 8 +603:[Sun Dec 04 16:32:58 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +605:[Sun Dec 04 16:32:58 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +607:[Sun Dec 04 16:32:58 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +609:[Sun Dec 04 16:35:49 2005] [notice] jk2_init() Found child 1262 in scoreboard slot 9 +610:[Sun Dec 04 16:35:52 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +612:[Sun Dec 04 16:41:15 2005] [notice] jk2_init() Found child 1275 in scoreboard slot 6 +613:[Sun Dec 04 16:41:16 2005] [notice] jk2_init() Found child 1276 in scoreboard slot 9 +614:[Sun Dec 04 16:41:22 2005] [notice] jk2_init() Found child 1277 in scoreboard slot 7 +615:[Sun Dec 04 16:41:22 2005] [notice] jk2_init() Found child 1278 in scoreboard slot 8 +616:[Sun Dec 04 16:41:22 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +617:[Sun Dec 04 16:41:22 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +618:[Sun Dec 04 16:41:22 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +619:[Sun Dec 04 16:41:22 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +624:[Sun Dec 04 16:45:52 2005] [notice] jk2_init() Found child 1283 in scoreboard slot 6 +625:[Sun Dec 04 16:45:52 2005] [notice] jk2_init() Found child 1284 in scoreboard slot 9 +626:[Sun Dec 04 16:46:09 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +628:[Sun Dec 04 16:46:45 2005] [notice] jk2_init() Found child 1288 in scoreboard slot 9 +629:[Sun Dec 04 16:47:11 2005] [notice] jk2_init() Found child 1291 in scoreboard slot 6 +630:[Sun Dec 04 16:47:59 2005] [notice] jk2_init() Found child 1296 in scoreboard slot 6 +631:[Sun Dec 04 16:47:59 2005] [notice] jk2_init() Found child 1300 in scoreboard slot 10 +632:[Sun Dec 04 16:47:59 2005] [notice] jk2_init() Found child 1298 in scoreboard slot 8 +633:[Sun Dec 04 16:47:59 2005] [notice] jk2_init() Found child 1297 in scoreboard slot 7 +634:[Sun Dec 04 16:47:59 2005] [notice] jk2_init() Found child 1299 in scoreboard slot 9 +635:[Sun Dec 04 16:48:01 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +637:[Sun Dec 04 16:48:01 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +639:[Sun Dec 04 16:48:01 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +641:[Sun Dec 04 16:48:01 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +643:[Sun Dec 04 16:48:01 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +645:[Sun Dec 04 16:50:53 2005] [notice] jk2_init() Found child 1308 in scoreboard slot 6 +646:[Sun Dec 04 16:50:53 2005] [notice] jk2_init() Found child 1309 in scoreboard slot 7 +647:[Sun Dec 04 16:51:26 2005] [notice] jk2_init() Found child 1313 in scoreboard slot 6 +648:[Sun Dec 04 16:51:26 2005] [notice] jk2_init() Found child 1312 in scoreboard slot 10 +649:[Sun Dec 04 16:52:34 2005] [notice] jk2_init() Found child 1320 in scoreboard slot 8 +650:[Sun Dec 04 16:52:45 2005] [notice] jk2_init() Found child 1321 in scoreboard slot 9 +651:[Sun Dec 04 16:52:45 2005] [notice] jk2_init() Found child 1322 in scoreboard slot 10 +652:[Sun Dec 04 16:52:45 2005] [notice] jk2_init() Found child 1323 in scoreboard slot 6 +653:[Sun Dec 04 16:52:46 2005] [notice] jk2_init() Found child 1324 in scoreboard slot 7 +654:[Sun Dec 04 16:52:46 2005] [notice] jk2_init() Found child 1325 in scoreboard slot 8 +655:[Sun Dec 04 16:52:49 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +656:[Sun Dec 04 16:52:49 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +657:[Sun Dec 04 16:52:49 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +658:[Sun Dec 04 16:52:49 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +659:[Sun Dec 04 16:52:49 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +665:[Sun Dec 04 16:55:54 2005] [notice] jk2_init() Found child 1331 in scoreboard slot 10 +666:[Sun Dec 04 16:56:25 2005] [notice] jk2_init() Found child 1338 in scoreboard slot 7 +667:[Sun Dec 04 16:56:25 2005] [notice] jk2_init() Found child 1334 in scoreboard slot 8 +668:[Sun Dec 04 16:56:25 2005] [notice] jk2_init() Found child 1336 in scoreboard slot 10 +669:[Sun Dec 04 16:56:25 2005] [notice] jk2_init() Found child 1337 in scoreboard slot 6 +670:[Sun Dec 04 16:56:25 2005] [notice] jk2_init() Found child 1335 in scoreboard slot 9 +671:[Sun Dec 04 16:56:27 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +673:[Sun Dec 04 16:56:27 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +675:[Sun Dec 04 16:56:27 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +677:[Sun Dec 04 16:56:27 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +679:[Sun Dec 04 16:56:27 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +681:[Sun Dec 04 17:01:43 2005] [notice] jk2_init() Found child 1358 in scoreboard slot 8 +682:[Sun Dec 04 17:01:43 2005] [notice] jk2_init() Found child 1356 in scoreboard slot 6 +683:[Sun Dec 04 17:01:43 2005] [notice] jk2_init() Found child 1354 in scoreboard slot 9 +684:[Sun Dec 04 17:01:43 2005] [notice] jk2_init() Found child 1357 in scoreboard slot 7 +685:[Sun Dec 04 17:01:43 2005] [notice] jk2_init() Found child 1355 in scoreboard slot 10 +686:[Sun Dec 04 17:01:47 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +688:[Sun Dec 04 17:01:47 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +690:[Sun Dec 04 17:01:47 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +692:[Sun Dec 04 17:01:47 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +694:[Sun Dec 04 17:01:47 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +696:[Sun Dec 04 17:05:45 2005] [notice] jk2_init() Found child 1375 in scoreboard slot 9 +697:[Sun Dec 04 17:05:45 2005] [notice] jk2_init() Found child 1376 in scoreboard slot 10 +698:[Sun Dec 04 17:05:45 2005] [notice] jk2_init() Found child 1377 in scoreboard slot 6 +699:[Sun Dec 04 17:05:48 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +700:[Sun Dec 04 17:05:48 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +701:[Sun Dec 04 17:05:48 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +705:[Sun Dec 04 17:11:23 2005] [notice] jk2_init() Found child 1387 in scoreboard slot 7 +706:[Sun Dec 04 17:11:37 2005] [notice] jk2_init() Found child 1390 in scoreboard slot 10 +707:[Sun Dec 04 17:11:37 2005] [notice] jk2_init() Found child 1388 in scoreboard slot 8 +708:[Sun Dec 04 17:11:37 2005] [notice] jk2_init() Found child 1389 in scoreboard slot 9 +709:[Sun Dec 04 17:12:42 2005] [notice] jk2_init() Found child 1393 in scoreboard slot 8 +710:[Sun Dec 04 17:12:50 2005] [notice] jk2_init() Found child 1395 in scoreboard slot 10 +711:[Sun Dec 04 17:12:50 2005] [notice] jk2_init() Found child 1396 in scoreboard slot 6 +712:[Sun Dec 04 17:12:50 2005] [notice] jk2_init() Found child 1394 in scoreboard slot 9 +713:[Sun Dec 04 17:12:54 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +714:[Sun Dec 04 17:12:54 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +715:[Sun Dec 04 17:12:54 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +716:[Sun Dec 04 17:12:54 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +721:[Sun Dec 04 17:12:56 2005] [notice] jk2_init() Found child 1397 in scoreboard slot 7 +722:[Sun Dec 04 17:12:57 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +724:[Sun Dec 04 17:17:07 2005] [notice] jk2_init() Found child 1414 in scoreboard slot 7 +725:[Sun Dec 04 17:17:07 2005] [notice] jk2_init() Found child 1412 in scoreboard slot 10 +726:[Sun Dec 04 17:17:07 2005] [notice] jk2_init() Found child 1413 in scoreboard slot 6 +727:[Sun Dec 04 17:20:38 2005] [notice] jk2_init() Found child 1448 in scoreboard slot 6 +728:[Sun Dec 04 17:20:38 2005] [notice] jk2_init() Found child 1439 in scoreboard slot 7 +729:[Sun Dec 04 17:20:38 2005] [notice] jk2_init() Found child 1441 in scoreboard slot 9 +730:[Sun Dec 04 17:20:38 2005] [notice] jk2_init() Found child 1450 in scoreboard slot 11 +731:[Sun Dec 04 17:20:39 2005] [notice] jk2_init() Found child 1449 in scoreboard slot 10 +732:[Sun Dec 04 17:20:39 2005] [notice] jk2_init() Found child 1440 in scoreboard slot 8 +733:[Sun Dec 04 17:20:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +734:[Sun Dec 04 17:20:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +735:[Sun Dec 04 17:20:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +736:[Sun Dec 04 17:20:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +737:[Sun Dec 04 17:20:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +743:[Sun Dec 04 17:21:01 2005] [notice] jk2_init() Found child 1452 in scoreboard slot 7 +744:[Sun Dec 04 17:21:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +746:[Sun Dec 04 17:26:04 2005] [notice] jk2_init() Found child 1461 in scoreboard slot 8 +747:[Sun Dec 04 17:26:39 2005] [notice] jk2_init() Found child 1462 in scoreboard slot 6 +748:[Sun Dec 04 17:27:13 2005] [notice] jk2_init() Found child 1466 in scoreboard slot 8 +749:[Sun Dec 04 17:28:00 2005] [notice] jk2_init() Found child 1470 in scoreboard slot 7 +750:[Sun Dec 04 17:28:42 2005] [notice] jk2_init() Found child 1477 in scoreboard slot 6 +751:[Sun Dec 04 17:28:41 2005] [notice] jk2_init() Found child 1476 in scoreboard slot 8 +752:[Sun Dec 04 17:31:00 2005] [notice] jk2_init() Found child 1501 in scoreboard slot 7 +753:[Sun Dec 04 17:31:00 2005] [notice] jk2_init() Found child 1502 in scoreboard slot 6 +754:[Sun Dec 04 17:31:00 2005] [notice] jk2_init() Found child 1498 in scoreboard slot 8 +755:[Sun Dec 04 17:31:00 2005] [notice] jk2_init() Found child 1499 in scoreboard slot 11 +756:[Sun Dec 04 17:31:10 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +757:[Sun Dec 04 17:31:10 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +758:[Sun Dec 04 17:31:10 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +759:[Sun Dec 04 17:31:11 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +764:[Sun Dec 04 17:31:43 2005] [notice] jk2_init() Found child 1503 in scoreboard slot 9 +765:[Sun Dec 04 17:31:43 2005] [notice] jk2_init() Found child 1504 in scoreboard slot 8 +766:[Sun Dec 04 17:31:45 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +767:[Sun Dec 04 17:31:45 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +770:[Sun Dec 04 17:34:52 2005] [notice] jk2_init() Found child 1507 in scoreboard slot 10 +771:[Sun Dec 04 17:34:57 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +774:[Sun Dec 04 17:36:14 2005] [notice] jk2_init() Found child 1512 in scoreboard slot 7 +775:[Sun Dec 04 17:36:14 2005] [notice] jk2_init() Found child 1513 in scoreboard slot 6 +776:[Sun Dec 04 17:37:08 2005] [notice] jk2_init() Found child 1517 in scoreboard slot 7 +777:[Sun Dec 04 17:37:08 2005] [notice] jk2_init() Found child 1518 in scoreboard slot 6 +778:[Sun Dec 04 17:37:47 2005] [notice] jk2_init() Found child 1520 in scoreboard slot 8 +779:[Sun Dec 04 17:37:47 2005] [notice] jk2_init() Found child 1521 in scoreboard slot 10 +780:[Sun Dec 04 17:39:00 2005] [notice] jk2_init() Found child 1529 in scoreboard slot 9 +781:[Sun Dec 04 17:39:01 2005] [notice] jk2_init() Found child 1530 in scoreboard slot 8 +782:[Sun Dec 04 17:39:00 2005] [notice] jk2_init() Found child 1528 in scoreboard slot 7 +783:[Sun Dec 04 17:39:00 2005] [notice] jk2_init() Found child 1527 in scoreboard slot 6 +784:[Sun Dec 04 17:43:08 2005] [notice] jk2_init() Found child 1565 in scoreboard slot 9 +786:[Sun Dec 04 17:43:08 2005] [notice] jk2_init() Found child 1561 in scoreboard slot 6 +787:[Sun Dec 04 17:43:08 2005] [notice] jk2_init() Found child 1563 in scoreboard slot 8 +788:[Sun Dec 04 17:43:08 2005] [notice] jk2_init() Found child 1562 in scoreboard slot 7 +790:[Sun Dec 04 17:43:08 2005] [notice] jk2_init() Found child 1568 in scoreboard slot 13 +791:[Sun Dec 04 17:43:12 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +793:[Sun Dec 04 17:43:12 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +795:[Sun Dec 04 17:43:12 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +797:[Sun Dec 04 17:43:12 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +799:[Sun Dec 04 17:43:12 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +801:[Sun Dec 04 17:43:12 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +803:[Sun Dec 04 17:43:12 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +807:[Sun Dec 04 19:25:51 2005] [notice] jk2_init() Found child 1763 in scoreboard slot 6 +808:[Sun Dec 04 19:25:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +810:[Sun Dec 04 19:32:20 2005] [notice] jk2_init() Found child 1786 in scoreboard slot 8 +811:[Sun Dec 04 19:32:20 2005] [notice] jk2_init() Found child 1787 in scoreboard slot 9 +812:[Sun Dec 04 19:32:32 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +814:[Sun Dec 04 19:32:34 2005] [notice] jk2_init() Found child 1788 in scoreboard slot 6 +815:[Sun Dec 04 19:32:34 2005] [notice] jk2_init() Found child 1790 in scoreboard slot 8 +816:[Sun Dec 04 19:32:34 2005] [notice] jk2_init() Found child 1789 in scoreboard slot 7 +817:[Sun Dec 04 19:32:34 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +819:[Sun Dec 04 19:32:34 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +821:[Sun Dec 04 19:32:34 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +823:[Sun Dec 04 19:35:58 2005] [notice] jk2_init() Found child 1797 in scoreboard slot 9 +824:[Sun Dec 04 19:35:58 2005] [notice] jk2_init() Found child 1798 in scoreboard slot 6 +825:[Sun Dec 04 19:35:58 2005] [notice] jk2_init() Found child 1799 in scoreboard slot 7 +826:[Sun Dec 04 19:35:58 2005] [notice] jk2_init() Found child 1800 in scoreboard slot 10 +827:[Sun Dec 04 19:35:58 2005] [notice] jk2_init() Found child 1801 in scoreboard slot 12 +829:[Sun Dec 04 19:36:07 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +831:[Sun Dec 04 19:36:07 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +833:[Sun Dec 04 19:36:07 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +835:[Sun Dec 04 19:36:07 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +837:[Sun Dec 04 19:36:07 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +839:[Sun Dec 04 19:41:20 2005] [notice] jk2_init() Found child 1816 in scoreboard slot 9 +840:[Sun Dec 04 19:41:20 2005] [notice] jk2_init() Found child 1814 in scoreboard slot 7 +841:[Sun Dec 04 19:41:20 2005] [notice] jk2_init() Found child 1813 in scoreboard slot 6 +842:[Sun Dec 04 19:41:20 2005] [notice] jk2_init() Found child 1815 in scoreboard slot 8 +843:[Sun Dec 04 19:41:21 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +845:[Sun Dec 04 19:41:21 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +847:[Sun Dec 04 19:41:21 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +849:[Sun Dec 04 19:41:21 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +851:[Sun Dec 04 19:46:04 2005] [notice] jk2_init() Found child 1821 in scoreboard slot 6 +852:[Sun Dec 04 19:46:04 2005] [notice] jk2_init() Found child 1822 in scoreboard slot 7 +853:[Sun Dec 04 19:46:13 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +854:[Sun Dec 04 19:46:13 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +857:[Sun Dec 04 19:46:16 2005] [notice] jk2_init() Found child 1823 in scoreboard slot 8 +858:[Sun Dec 04 19:46:19 2005] [notice] jk2_init() Found child 1824 in scoreboard slot 9 +859:[Sun Dec 04 19:46:20 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +861:[Sun Dec 04 19:46:20 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +863:[Sun Dec 04 19:50:39 2005] [notice] jk2_init() Found child 1833 in scoreboard slot 7 +864:[Sun Dec 04 19:50:39 2005] [notice] jk2_init() Found child 1832 in scoreboard slot 6 +865:[Sun Dec 04 19:50:51 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +866:[Sun Dec 04 19:50:51 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +868:[Sun Dec 04 19:50:57 2005] [notice] jk2_init() Found child 1834 in scoreboard slot 8 +870:[Sun Dec 04 19:51:16 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +872:[Sun Dec 04 19:51:43 2005] [notice] jk2_init() Found child 1835 in scoreboard slot 9 +873:[Sun Dec 04 19:51:52 2005] [notice] jk2_init() Found child 1836 in scoreboard slot 6 +874:[Sun Dec 04 19:51:52 2005] [notice] jk2_init() Found child 1837 in scoreboard slot 7 +875:[Sun Dec 04 19:51:54 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +877:[Sun Dec 04 19:51:54 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +879:[Sun Dec 04 19:51:54 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +881:[Sun Dec 04 19:56:51 2005] [notice] jk2_init() Found child 1851 in scoreboard slot 6 +882:[Sun Dec 04 19:56:51 2005] [notice] jk2_init() Found child 1852 in scoreboard slot 9 +883:[Sun Dec 04 19:56:51 2005] [notice] jk2_init() Found child 1853 in scoreboard slot 7 +884:[Sun Dec 04 19:56:51 2005] [notice] jk2_init() Found child 1850 in scoreboard slot 8 +885:[Sun Dec 04 19:56:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +887:[Sun Dec 04 19:56:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +889:[Sun Dec 04 19:56:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +891:[Sun Dec 04 19:56:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +893:[Sun Dec 04 20:01:00 2005] [notice] jk2_init() Found child 1861 in scoreboard slot 8 +894:[Sun Dec 04 20:01:00 2005] [notice] jk2_init() Found child 1862 in scoreboard slot 6 +895:[Sun Dec 04 20:01:30 2005] [notice] jk2_init() Found child 1867 in scoreboard slot 8 +896:[Sun Dec 04 20:01:30 2005] [notice] jk2_init() Found child 1864 in scoreboard slot 7 +897:[Sun Dec 04 20:01:30 2005] [notice] jk2_init() Found child 1868 in scoreboard slot 6 +898:[Sun Dec 04 20:01:30 2005] [notice] jk2_init() Found child 1863 in scoreboard slot 9 +899:[Sun Dec 04 20:01:37 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +900:[Sun Dec 04 20:01:37 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +901:[Sun Dec 04 20:01:37 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +902:[Sun Dec 04 20:01:37 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +907:[Sun Dec 04 20:05:55 2005] [notice] jk2_init() Found child 1887 in scoreboard slot 8 +908:[Sun Dec 04 20:05:55 2005] [notice] jk2_init() Found child 1885 in scoreboard slot 9 +909:[Sun Dec 04 20:05:55 2005] [notice] jk2_init() Found child 1888 in scoreboard slot 6 +910:[Sun Dec 04 20:05:55 2005] [notice] jk2_init() Found child 1886 in scoreboard slot 7 +911:[Sun Dec 04 20:05:58 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +913:[Sun Dec 04 20:05:59 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +915:[Sun Dec 04 20:05:59 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +917:[Sun Dec 04 20:05:59 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +919:[Sun Dec 04 20:11:09 2005] [notice] jk2_init() Found child 1899 in scoreboard slot 7 +920:[Sun Dec 04 20:11:09 2005] [notice] jk2_init() Found child 1900 in scoreboard slot 8 +921:[Sun Dec 04 20:11:09 2005] [notice] jk2_init() Found child 1901 in scoreboard slot 6 +922:[Sun Dec 04 20:11:09 2005] [notice] jk2_init() Found child 1898 in scoreboard slot 9 +923:[Sun Dec 04 20:11:14 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +925:[Sun Dec 04 20:11:14 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +927:[Sun Dec 04 20:11:14 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +929:[Sun Dec 04 20:11:14 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +931:[Sun Dec 04 20:16:10 2005] [notice] jk2_init() Found child 1912 in scoreboard slot 9 +932:[Sun Dec 04 20:16:10 2005] [notice] jk2_init() Found child 1915 in scoreboard slot 6 +933:[Sun Dec 04 20:16:10 2005] [notice] jk2_init() Found child 1913 in scoreboard slot 7 +934:[Sun Dec 04 20:16:10 2005] [notice] jk2_init() Found child 1914 in scoreboard slot 8 +935:[Sun Dec 04 20:16:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +936:[Sun Dec 04 20:16:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +937:[Sun Dec 04 20:16:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +938:[Sun Dec 04 20:16:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +943:[Sun Dec 04 20:20:57 2005] [notice] jk2_init() Found child 1931 in scoreboard slot 7 +944:[Sun Dec 04 20:21:09 2005] [notice] jk2_init() Found child 1932 in scoreboard slot 8 +945:[Sun Dec 04 20:21:08 2005] [notice] jk2_init() Found child 1933 in scoreboard slot 6 +946:[Sun Dec 04 20:21:21 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +947:[Sun Dec 04 20:21:31 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +948:[Sun Dec 04 20:21:31 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +949:[Sun Dec 04 20:21:37 2005] [notice] jk2_init() Found child 1934 in scoreboard slot 9 +951:[Sun Dec 04 20:22:09 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +952:[Sun Dec 04 20:22:12 2005] [notice] jk2_init() Found child 1936 in scoreboard slot 8 +953:[Sun Dec 04 20:22:12 2005] [notice] jk2_init() Found child 1935 in scoreboard slot 7 +954:[Sun Dec 04 20:22:49 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +956:[Sun Dec 04 20:22:57 2005] [notice] jk2_init() Found child 1937 in scoreboard slot 6 +957:[Sun Dec 04 20:23:12 2005] [notice] jk2_init() Found child 1938 in scoreboard slot 9 +958:[Sun Dec 04 20:24:45 2005] [notice] jk2_init() Found child 1950 in scoreboard slot 9 +959:[Sun Dec 04 20:24:45 2005] [notice] jk2_init() Found child 1951 in scoreboard slot 7 +960:[Sun Dec 04 20:24:45 2005] [notice] jk2_init() Found child 1949 in scoreboard slot 6 +961:[Sun Dec 04 20:24:45 2005] [notice] jk2_init() Found child 1948 in scoreboard slot 8 +962:[Sun Dec 04 20:24:49 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +964:[Sun Dec 04 20:24:49 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +966:[Sun Dec 04 20:24:49 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +968:[Sun Dec 04 20:24:49 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +970:[Sun Dec 04 20:26:10 2005] [notice] jk2_init() Found child 1957 in scoreboard slot 8 +971:[Sun Dec 04 20:26:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +973:[Sun Dec 04 20:26:58 2005] [notice] jk2_init() Found child 1959 in scoreboard slot 9 +974:[Sun Dec 04 20:26:58 2005] [notice] jk2_init() Found child 1958 in scoreboard slot 6 +975:[Sun Dec 04 20:27:43 2005] [notice] jk2_init() Found child 1961 in scoreboard slot 8 +976:[Sun Dec 04 20:28:00 2005] [notice] jk2_init() Found child 1962 in scoreboard slot 6 +977:[Sun Dec 04 20:28:00 2005] [notice] jk2_init() Found child 1963 in scoreboard slot 9 +978:[Sun Dec 04 20:28:26 2005] [notice] jk2_init() Found child 1964 in scoreboard slot 7 +979:[Sun Dec 04 20:28:39 2005] [notice] jk2_init() Found child 1966 in scoreboard slot 6 +980:[Sun Dec 04 20:28:39 2005] [notice] jk2_init() Found child 1967 in scoreboard slot 9 +981:[Sun Dec 04 20:28:39 2005] [notice] jk2_init() Found child 1965 in scoreboard slot 8 +982:[Sun Dec 04 20:29:34 2005] [notice] jk2_init() Found child 1970 in scoreboard slot 6 +983:[Sun Dec 04 20:30:59 2005] [notice] jk2_init() Found child 1984 in scoreboard slot 10 +984:[Sun Dec 04 20:31:35 2005] [notice] jk2_init() Found child 1990 in scoreboard slot 9 +985:[Sun Dec 04 20:32:37 2005] [notice] jk2_init() Found child 1999 in scoreboard slot 6 +986:[Sun Dec 04 20:32:37 2005] [notice] jk2_init() Found child 2000 in scoreboard slot 7 +987:[Sun Dec 04 20:32:37 2005] [notice] jk2_init() Found child 1998 in scoreboard slot 9 +988:[Sun Dec 04 20:32:50 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +989:[Sun Dec 04 20:32:50 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +990:[Sun Dec 04 20:32:50 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +994:[Sun Dec 04 20:33:35 2005] [notice] jk2_init() Found child 2002 in scoreboard slot 8 +995:[Sun Dec 04 20:33:35 2005] [notice] jk2_init() Found child 2001 in scoreboard slot 9 +996:[Sun Dec 04 20:33:47 2005] [notice] jk2_init() Found child 2005 in scoreboard slot 7 +997:[Sun Dec 04 20:33:47 2005] [notice] jk2_init() Found child 2004 in scoreboard slot 6 +998:[Sun Dec 04 20:34:13 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1000:[Sun Dec 04 20:34:20 2005] [notice] jk2_init() Found child 2007 in scoreboard slot 8 +1001:[Sun Dec 04 20:34:20 2005] [notice] jk2_init() Found child 2006 in scoreboard slot 9 +1002:[Sun Dec 04 20:34:21 2005] [notice] jk2_init() Found child 2008 in scoreboard slot 6 +1003:[Sun Dec 04 20:34:25 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1005:[Sun Dec 04 20:34:25 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1007:[Sun Dec 04 20:34:25 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1009:[Sun Dec 04 20:37:29 2005] [notice] jk2_init() Found child 2028 in scoreboard slot 9 +1010:[Sun Dec 04 20:37:29 2005] [notice] jk2_init() Found child 2027 in scoreboard slot 7 +1011:[Sun Dec 04 20:37:29 2005] [notice] jk2_init() Found child 2029 in scoreboard slot 8 +1012:[Sun Dec 04 20:37:46 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1013:[Sun Dec 04 20:37:46 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1016:[Sun Dec 04 20:38:10 2005] [notice] jk2_init() Found child 2030 in scoreboard slot 6 +1017:[Sun Dec 04 20:38:10 2005] [notice] jk2_init() Found child 2031 in scoreboard slot 7 +1018:[Sun Dec 04 20:38:11 2005] [notice] jk2_init() Found child 2032 in scoreboard slot 9 +1019:[Sun Dec 04 20:38:14 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1020:[Sun Dec 04 20:38:14 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1021:[Sun Dec 04 20:38:14 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1025:[Sun Dec 04 20:41:12 2005] [notice] jk2_init() Found child 2042 in scoreboard slot 8 +1026:[Sun Dec 04 20:41:47 2005] [notice] jk2_init() Found child 2045 in scoreboard slot 9 +1027:[Sun Dec 04 20:42:42 2005] [notice] jk2_init() Found child 2051 in scoreboard slot 8 +1028:[Sun Dec 04 20:44:29 2005] [notice] jk2_init() Found child 2059 in scoreboard slot 7 +1029:[Sun Dec 04 20:44:29 2005] [notice] jk2_init() Found child 2060 in scoreboard slot 9 +1030:[Sun Dec 04 20:44:30 2005] [notice] jk2_init() Found child 2061 in scoreboard slot 8 +1031:[Sun Dec 04 20:47:16 2005] [notice] jk2_init() Found child 2081 in scoreboard slot 6 +1033:[Sun Dec 04 20:47:16 2005] [notice] jk2_init() Found child 2083 in scoreboard slot 8 +1034:[Sun Dec 04 20:47:16 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1036:[Sun Dec 04 20:47:16 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1038:[Sun Dec 04 20:47:16 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1041:[Sun Dec 04 20:47:17 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1044:[Sun Dec 04 20:47:17 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1047:[Sun Dec 04 20:47:17 2005] [notice] jk2_init() Found child 2084 in scoreboard slot 9 +1048:[Sun Dec 04 20:47:17 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1050:[Sun Dec 04 20:47:17 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1054:[Mon Dec 05 03:21:00 2005] [notice] jk2_init() Found child 2760 in scoreboard slot 6 +1055:[Mon Dec 05 03:21:02 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1057:[Mon Dec 05 03:23:21 2005] [notice] jk2_init() Found child 2763 in scoreboard slot 7 +1058:[Mon Dec 05 03:23:24 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1061:[Mon Dec 05 03:25:44 2005] [notice] jk2_init() Found child 2773 in scoreboard slot 6 +1062:[Mon Dec 05 03:25:46 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1064:[Mon Dec 05 03:36:51 2005] [notice] jk2_init() Found child 2813 in scoreboard slot 7 +1065:[Mon Dec 05 03:36:51 2005] [notice] jk2_init() Found child 2815 in scoreboard slot 8 +1066:[Mon Dec 05 03:36:51 2005] [notice] jk2_init() Found child 2812 in scoreboard slot 6 +1067:[Mon Dec 05 03:36:51 2005] [notice] jk2_init() Found child 2811 in scoreboard slot 9 +1068:[Mon Dec 05 03:36:57 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1069:[Mon Dec 05 03:36:57 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1070:[Mon Dec 05 03:36:57 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1071:[Mon Dec 05 03:36:57 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1076:[Mon Dec 05 03:40:46 2005] [notice] jk2_init() Found child 2823 in scoreboard slot 9 +1077:[Mon Dec 05 03:40:55 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1079:[Mon Dec 05 03:44:50 2005] [notice] jk2_init() Found child 2824 in scoreboard slot 10 +1081:[Mon Dec 05 03:44:50 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1083:[Mon Dec 05 03:46:38 2005] [notice] jk2_init() Found child 2838 in scoreboard slot 10 +1084:[Mon Dec 05 03:46:38 2005] [notice] jk2_init() Found child 2836 in scoreboard slot 9 +1085:[Mon Dec 05 03:46:38 2005] [notice] jk2_init() Found child 2837 in scoreboard slot 6 +1086:[Mon Dec 05 03:46:50 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1087:[Mon Dec 05 03:47:02 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1088:[Mon Dec 05 03:47:19 2005] [notice] jk2_init() Found child 2840 in scoreboard slot 8 +1089:[Mon Dec 05 03:47:19 2005] [notice] jk2_init() Found child 2841 in scoreboard slot 6 +1090:[Mon Dec 05 03:47:19 2005] [notice] jk2_init() Found child 2842 in scoreboard slot 9 +1091:[Mon Dec 05 03:47:53 2005] [notice] jk2_init() Found child 2846 in scoreboard slot 9 +1092:[Mon Dec 05 03:47:53 2005] [notice] jk2_init() Found child 2843 in scoreboard slot 7 +1093:[Mon Dec 05 03:47:53 2005] [notice] jk2_init() Found child 2844 in scoreboard slot 8 +1094:[Mon Dec 05 03:47:53 2005] [notice] jk2_init() Found child 2845 in scoreboard slot 6 +1095:[Mon Dec 05 03:47:54 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1097:[Mon Dec 05 03:47:54 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1099:[Mon Dec 05 03:47:54 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1101:[Mon Dec 05 03:47:54 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1103:[Mon Dec 05 03:50:49 2005] [notice] jk2_init() Found child 2857 in scoreboard slot 9 +1104:[Mon Dec 05 03:50:50 2005] [notice] jk2_init() Found child 2854 in scoreboard slot 7 +1105:[Mon Dec 05 03:50:49 2005] [notice] jk2_init() Found child 2855 in scoreboard slot 8 +1106:[Mon Dec 05 03:50:49 2005] [notice] jk2_init() Found child 2856 in scoreboard slot 6 +1107:[Mon Dec 05 03:50:59 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1108:[Mon Dec 05 03:50:59 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1109:[Mon Dec 05 03:50:59 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1110:[Mon Dec 05 03:50:59 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1115:[Mon Dec 05 03:56:12 2005] [notice] jk2_init() Found child 2866 in scoreboard slot 7 +1116:[Mon Dec 05 03:56:12 2005] [notice] jk2_init() Found child 2867 in scoreboard slot 8 +1117:[Mon Dec 05 03:56:12 2005] [notice] jk2_init() Found child 2865 in scoreboard slot 9 +1118:[Mon Dec 05 03:56:12 2005] [notice] jk2_init() Found child 2864 in scoreboard slot 6 +1119:[Mon Dec 05 03:56:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1121:[Mon Dec 05 03:56:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1123:[Mon Dec 05 03:56:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1125:[Mon Dec 05 03:56:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1127:[Mon Dec 05 04:00:55 2005] [notice] jk2_init() Found child 2877 in scoreboard slot 10 +1128:[Mon Dec 05 04:01:18 2005] [notice] jk2_init() Found child 2883 in scoreboard slot 9 +1129:[Mon Dec 05 04:01:18 2005] [notice] jk2_init() Found child 2878 in scoreboard slot 7 +1130:[Mon Dec 05 04:01:18 2005] [notice] jk2_init() Found child 2880 in scoreboard slot 8 +1131:[Mon Dec 05 04:01:18 2005] [notice] jk2_init() Found child 2879 in scoreboard slot 6 +1132:[Mon Dec 05 04:01:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1134:[Mon Dec 05 04:01:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1136:[Mon Dec 05 04:01:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1138:[Mon Dec 05 04:01:23 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1140:[Mon Dec 05 04:06:19 2005] [notice] jk2_init() Found child 3667 in scoreboard slot 7 +1141:[Mon Dec 05 04:06:19 2005] [notice] jk2_init() Found child 3669 in scoreboard slot 6 +1142:[Mon Dec 05 04:06:27 2005] [notice] jk2_init() Found child 3670 in scoreboard slot 8 +1143:[Mon Dec 05 04:06:43 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1144:[Mon Dec 05 04:06:43 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1147:[Mon Dec 05 04:07:23 2005] [notice] jk2_init() Found child 3672 in scoreboard slot 7 +1148:[Mon Dec 05 04:07:37 2005] [notice] jk2_init() Found child 3673 in scoreboard slot 6 +1149:[Mon Dec 05 04:07:48 2005] [notice] jk2_init() Found child 3675 in scoreboard slot 9 +1150:[Mon Dec 05 04:07:48 2005] [notice] jk2_init() Found child 3674 in scoreboard slot 8 +1151:[Mon Dec 05 04:08:37 2005] [notice] jk2_init() Found child 3678 in scoreboard slot 8 +1152:[Mon Dec 05 04:08:37 2005] [notice] jk2_init() Found child 3681 in scoreboard slot 6 +1153:[Mon Dec 05 04:08:37 2005] [notice] jk2_init() Found child 3679 in scoreboard slot 9 +1154:[Mon Dec 05 04:08:37 2005] [notice] jk2_init() Found child 3680 in scoreboard slot 7 +1155:[Mon Dec 05 04:08:57 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1156:[Mon Dec 05 04:09:32 2005] [notice] jk2_init() Found child 3685 in scoreboard slot 6 +1157:[Mon Dec 05 04:10:47 2005] [notice] jk2_init() Found child 3698 in scoreboard slot 9 +1158:[Mon Dec 05 04:10:47 2005] [notice] jk2_init() Found child 3690 in scoreboard slot 6 +1159:[Mon Dec 05 04:10:47 2005] [notice] jk2_init() Found child 3691 in scoreboard slot 8 +1160:[Mon Dec 05 04:13:54 2005] [notice] jk2_init() Found child 3744 in scoreboard slot 6 +1161:[Mon Dec 05 04:13:54 2005] [notice] jk2_init() Found child 3747 in scoreboard slot 8 +1162:[Mon Dec 05 04:13:54 2005] [notice] jk2_init() Found child 3754 in scoreboard slot 12 +1163:[Mon Dec 05 04:13:54 2005] [notice] jk2_init() Found child 3755 in scoreboard slot 13 +1164:[Mon Dec 05 04:13:54 2005] [notice] jk2_init() Found child 3753 in scoreboard slot 10 +1165:[Mon Dec 05 04:13:54 2005] [notice] jk2_init() Found child 3752 in scoreboard slot 9 +1166:[Mon Dec 05 04:13:54 2005] [notice] jk2_init() Found child 3746 in scoreboard slot 7 +1167:[Mon Dec 05 04:14:00 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1168:[Mon Dec 05 04:14:00 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1170:[Mon Dec 05 04:14:00 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1172:[Mon Dec 05 04:14:00 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1174:[Mon Dec 05 04:14:00 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1176:[Mon Dec 05 04:14:00 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1178:[Mon Dec 05 04:14:00 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1181:[Mon Dec 05 05:06:42 2005] [notice] jk2_init() Found child 4596 in scoreboard slot 8 +1182:[Mon Dec 05 05:06:42 2005] [notice] jk2_init() Found child 4595 in scoreboard slot 7 +1183:[Mon Dec 05 05:06:42 2005] [notice] jk2_init() Found child 4594 in scoreboard slot 6 +1184:[Mon Dec 05 05:06:47 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1185:[Mon Dec 05 05:06:47 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1186:[Mon Dec 05 05:06:47 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1190:[Mon Dec 05 05:11:04 2005] [notice] jk2_init() Found child 4609 in scoreboard slot 7 +1191:[Mon Dec 05 05:11:04 2005] [notice] jk2_init() Found child 4608 in scoreboard slot 6 +1192:[Mon Dec 05 05:11:34 2005] [notice] jk2_init() Found child 4611 in scoreboard slot 9 +1193:[Mon Dec 05 05:11:54 2005] [notice] jk2_init() Found child 4613 in scoreboard slot 7 +1194:[Mon Dec 05 05:11:54 2005] [notice] jk2_init() Found child 4612 in scoreboard slot 6 +1195:[Mon Dec 05 05:12:32 2005] [notice] jk2_init() Found child 4615 in scoreboard slot 9 +1196:[Mon Dec 05 05:12:56 2005] [notice] jk2_init() Found child 4616 in scoreboard slot 6 +1197:[Mon Dec 05 05:12:56 2005] [notice] jk2_init() Found child 4617 in scoreboard slot 7 +1198:[Mon Dec 05 05:12:56 2005] [notice] jk2_init() Found child 4618 in scoreboard slot 8 +1199:[Mon Dec 05 05:15:29 2005] [notice] jk2_init() Found child 4634 in scoreboard slot 6 +1200:[Mon Dec 05 05:15:29 2005] [notice] jk2_init() Found child 4637 in scoreboard slot 7 +1201:[Mon Dec 05 05:15:29 2005] [notice] jk2_init() Found child 4631 in scoreboard slot 9 +1202:[Mon Dec 05 05:15:29 2005] [notice] jk2_init() Found child 4630 in scoreboard slot 8 +1203:[Mon Dec 05 05:15:33 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1205:[Mon Dec 05 05:15:33 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1207:[Mon Dec 05 05:15:33 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1209:[Mon Dec 05 05:15:33 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1211:[Mon Dec 05 06:35:27 2005] [notice] jk2_init() Found child 4820 in scoreboard slot 8 +1212:[Mon Dec 05 06:35:27 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1214:[Mon Dec 05 06:36:58 2005] [notice] jk2_init() Found child 4821 in scoreboard slot 10 +1215:[Mon Dec 05 06:36:58 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1218:[Mon Dec 05 07:16:00 2005] [notice] jk2_init() Found child 4893 in scoreboard slot 7 +1219:[Mon Dec 05 07:16:00 2005] [notice] jk2_init() Found child 4892 in scoreboard slot 6 +1220:[Mon Dec 05 07:16:03 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1222:[Mon Dec 05 07:16:03 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1224:[Mon Dec 05 07:21:03 2005] [notice] jk2_init() Found child 4907 in scoreboard slot 6 +1225:[Mon Dec 05 07:21:02 2005] [notice] jk2_init() Found child 4906 in scoreboard slot 9 +1226:[Mon Dec 05 07:21:02 2005] [notice] jk2_init() Found child 4905 in scoreboard slot 8 +1227:[Mon Dec 05 07:21:09 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1228:[Mon Dec 05 07:21:09 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1231:[Mon Dec 05 07:21:09 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1233:[Mon Dec 05 07:25:55 2005] [notice] jk2_init() Found child 4916 in scoreboard slot 8 +1234:[Mon Dec 05 07:25:55 2005] [notice] jk2_init() Found child 4917 in scoreboard slot 9 +1235:[Mon Dec 05 07:25:55 2005] [notice] jk2_init() Found child 4915 in scoreboard slot 7 +1236:[Mon Dec 05 07:25:59 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1237:[Mon Dec 05 07:25:59 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1238:[Mon Dec 05 07:25:59 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1242:[Mon Dec 05 07:31:22 2005] [notice] jk2_init() Found child 4932 in scoreboard slot 6 +1243:[Mon Dec 05 07:32:03 2005] [notice] jk2_init() Found child 4938 in scoreboard slot 8 +1244:[Mon Dec 05 07:32:03 2005] [notice] jk2_init() Found child 4935 in scoreboard slot 9 +1245:[Mon Dec 05 07:32:03 2005] [notice] jk2_init() Found child 4936 in scoreboard slot 6 +1246:[Mon Dec 05 07:32:03 2005] [notice] jk2_init() Found child 4937 in scoreboard slot 7 +1247:[Mon Dec 05 07:32:06 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1249:[Mon Dec 05 07:32:06 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1251:[Mon Dec 05 07:32:06 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1253:[Mon Dec 05 07:32:06 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1255:[Mon Dec 05 07:36:19 2005] [notice] jk2_init() Found child 4950 in scoreboard slot 7 +1256:[Mon Dec 05 07:37:47 2005] [notice] jk2_init() Found child 4961 in scoreboard slot 6 +1257:[Mon Dec 05 07:37:48 2005] [notice] jk2_init() Found child 4962 in scoreboard slot 7 +1258:[Mon Dec 05 07:37:48 2005] [notice] jk2_init() Found child 4960 in scoreboard slot 9 +1259:[Mon Dec 05 07:37:48 2005] [notice] jk2_init() Found child 4959 in scoreboard slot 8 +1260:[Mon Dec 05 07:37:58 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1261:[Mon Dec 05 07:37:58 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1262:[Mon Dec 05 07:37:58 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1263:[Mon Dec 05 07:37:58 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1268:[Mon Dec 05 07:41:07 2005] [notice] jk2_init() Found child 4974 in scoreboard slot 9 +1269:[Mon Dec 05 07:41:35 2005] [notice] jk2_init() Found child 4975 in scoreboard slot 6 +1270:[Mon Dec 05 07:41:50 2005] [notice] jk2_init() Found child 4977 in scoreboard slot 8 +1271:[Mon Dec 05 07:41:50 2005] [notice] jk2_init() Found child 4976 in scoreboard slot 7 +1272:[Mon Dec 05 07:43:07 2005] [notice] jk2_init() Found child 4984 in scoreboard slot 7 +1273:[Mon Dec 05 07:43:08 2005] [notice] jk2_init() Found child 4985 in scoreboard slot 10 +1274:[Mon Dec 05 07:43:07 2005] [notice] jk2_init() Found child 4983 in scoreboard slot 6 +1275:[Mon Dec 05 07:43:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1277:[Mon Dec 05 07:43:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1279:[Mon Dec 05 07:43:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1281:[Mon Dec 05 07:43:19 2005] [notice] jk2_init() Found child 4986 in scoreboard slot 8 +1282:[Mon Dec 05 07:43:19 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1284:[Mon Dec 05 07:46:01 2005] [notice] jk2_init() Found child 4991 in scoreboard slot 6 +1285:[Mon Dec 05 07:46:01 2005] [notice] jk2_init() Found child 4992 in scoreboard slot 7 +1286:[Mon Dec 05 07:46:46 2005] [notice] jk2_init() Found child 4996 in scoreboard slot 7 +1287:[Mon Dec 05 07:46:46 2005] [notice] jk2_init() Found child 4995 in scoreboard slot 6 +1288:[Mon Dec 05 07:47:13 2005] [notice] jk2_init() Found child 4998 in scoreboard slot 8 +1289:[Mon Dec 05 07:47:13 2005] [notice] jk2_init() Found child 4999 in scoreboard slot 6 +1290:[Mon Dec 05 07:47:21 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1291:[Mon Dec 05 07:47:21 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1292:[Mon Dec 05 07:47:21 2005] [notice] jk2_init() Found child 5000 in scoreboard slot 7 +1294:[Mon Dec 05 07:47:21 2005] [notice] jk2_init() Found child 5001 in scoreboard slot 9 +1296:[Mon Dec 05 07:47:36 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1297:[Mon Dec 05 07:47:36 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1300:[Mon Dec 05 07:48:04 2005] [notice] jk2_init() Found child 5002 in scoreboard slot 8 +1301:[Mon Dec 05 07:48:04 2005] [notice] jk2_init() Found child 5003 in scoreboard slot 6 +1302:[Mon Dec 05 07:48:46 2005] [notice] jk2_init() Found child 5005 in scoreboard slot 9 +1303:[Mon Dec 05 07:48:46 2005] [notice] jk2_init() Found child 5006 in scoreboard slot 8 +1304:[Mon Dec 05 07:48:55 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1305:[Mon Dec 05 07:48:55 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1308:[Mon Dec 05 07:48:56 2005] [notice] jk2_init() Found child 5007 in scoreboard slot 6 +1309:[Mon Dec 05 07:48:56 2005] [notice] jk2_init() Found child 5008 in scoreboard slot 7 +1310:[Mon Dec 05 07:48:56 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1312:[Mon Dec 05 07:48:56 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1314:[Mon Dec 05 07:50:54 2005] [notice] jk2_init() Found child 5017 in scoreboard slot 8 +1315:[Mon Dec 05 07:50:54 2005] [notice] jk2_init() Found child 5016 in scoreboard slot 9 +1316:[Mon Dec 05 07:51:22 2005] [notice] jk2_init() Found child 5018 in scoreboard slot 6 +1317:[Mon Dec 05 07:51:20 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1319:[Mon Dec 05 07:51:39 2005] [notice] jk2_init() Found child 5020 in scoreboard slot 9 +1320:[Mon Dec 05 07:51:39 2005] [notice] jk2_init() Found child 5019 in scoreboard slot 7 +1321:[Mon Dec 05 07:51:56 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1322:[Mon Dec 05 07:51:56 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1325:[Mon Dec 05 07:52:29 2005] [notice] jk2_init() Found child 5021 in scoreboard slot 8 +1326:[Mon Dec 05 07:52:29 2005] [notice] jk2_init() Found child 5022 in scoreboard slot 6 +1327:[Mon Dec 05 07:52:56 2005] [notice] jk2_init() Found child 5024 in scoreboard slot 9 +1328:[Mon Dec 05 07:52:56 2005] [notice] jk2_init() Found child 5023 in scoreboard slot 7 +1329:[Mon Dec 05 07:52:55 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1331:[Mon Dec 05 07:53:24 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1332:[Mon Dec 05 07:54:01 2005] [notice] jk2_init() Found child 5029 in scoreboard slot 8 +1333:[Mon Dec 05 07:54:02 2005] [notice] jk2_init() Found child 5030 in scoreboard slot 6 +1334:[Mon Dec 05 07:54:48 2005] [notice] jk2_init() Found child 5033 in scoreboard slot 8 +1335:[Mon Dec 05 07:54:48 2005] [notice] jk2_init() Found child 5032 in scoreboard slot 9 +1336:[Mon Dec 05 07:55:00 2005] [notice] jk2_init() Found child 5035 in scoreboard slot 7 +1337:[Mon Dec 05 07:55:00 2005] [notice] jk2_init() Found child 5034 in scoreboard slot 6 +1338:[Mon Dec 05 07:55:07 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1340:[Mon Dec 05 07:55:07 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1342:[Mon Dec 05 07:55:07 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1344:[Mon Dec 05 07:55:13 2005] [notice] jk2_init() Found child 5036 in scoreboard slot 9 +1345:[Mon Dec 05 07:57:01 2005] [notice] jk2_init() Found child 5050 in scoreboard slot 8 +1346:[Mon Dec 05 07:57:01 2005] [notice] jk2_init() Found child 5049 in scoreboard slot 7 +1347:[Mon Dec 05 07:57:01 2005] [notice] jk2_init() Found child 5048 in scoreboard slot 6 +1348:[Mon Dec 05 07:57:02 2005] [notice] jk2_init() Found child 5051 in scoreboard slot 9 +1351:[Mon Dec 05 07:57:02 2005] [notice] jk2_init() Found child 5052 in scoreboard slot 10 +1352:[Mon Dec 05 07:57:02 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1354:[Mon Dec 05 07:57:02 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1356:[Mon Dec 05 07:57:02 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1358:[Mon Dec 05 07:57:02 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1360:[Mon Dec 05 07:57:02 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1362:[Mon Dec 05 07:57:02 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1364:[Mon Dec 05 07:57:02 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1367:[Mon Dec 05 09:36:13 2005] [notice] jk2_init() Found child 5271 in scoreboard slot 7 +1368:[Mon Dec 05 09:36:13 2005] [notice] jk2_init() Found child 5270 in scoreboard slot 6 +1369:[Mon Dec 05 09:36:14 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1371:[Mon Dec 05 09:36:14 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1373:[Mon Dec 05 09:55:21 2005] [notice] jk2_init() Found child 5295 in scoreboard slot 8 +1374:[Mon Dec 05 09:55:21 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1376:[Mon Dec 05 10:10:32 2005] [notice] jk2_init() Found child 5330 in scoreboard slot 9 +1377:[Mon Dec 05 10:10:33 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1379:[Mon Dec 05 10:16:20 2005] [notice] jk2_init() Found child 5344 in scoreboard slot 7 +1380:[Mon Dec 05 10:16:52 2005] [notice] jk2_init() Found child 5347 in scoreboard slot 6 +1381:[Mon Dec 05 10:16:53 2005] [notice] jk2_init() Found child 5348 in scoreboard slot 7 +1382:[Mon Dec 05 10:17:45 2005] [notice] jk2_init() Found child 5350 in scoreboard slot 9 +1383:[Mon Dec 05 10:17:45 2005] [notice] jk2_init() Found child 5349 in scoreboard slot 8 +1384:[Mon Dec 05 10:17:49 2005] [notice] jk2_init() Found child 5352 in scoreboard slot 7 +1385:[Mon Dec 05 10:17:50 2005] [notice] jk2_init() Found child 5351 in scoreboard slot 6 +1386:[Mon Dec 05 10:17:51 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1387:[Mon Dec 05 10:17:51 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1388:[Mon Dec 05 10:17:51 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1389:[Mon Dec 05 10:17:51 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1394:[Mon Dec 05 10:21:05 2005] [notice] jk2_init() Found child 5366 in scoreboard slot 9 +1395:[Mon Dec 05 10:21:05 2005] [notice] jk2_init() Found child 5365 in scoreboard slot 8 +1396:[Mon Dec 05 10:21:05 2005] [notice] jk2_init() Found child 5367 in scoreboard slot 6 +1397:[Mon Dec 05 10:21:07 2005] [notice] jk2_init() Found child 5368 in scoreboard slot 7 +1398:[Mon Dec 05 10:21:13 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1399:[Mon Dec 05 10:21:13 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1400:[Mon Dec 05 10:21:13 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1401:[Mon Dec 05 10:21:13 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1406:[Mon Dec 05 10:26:26 2005] [notice] jk2_init() Found child 5384 in scoreboard slot 7 +1407:[Mon Dec 05 10:26:26 2005] [notice] jk2_init() Found child 5385 in scoreboard slot 8 +1408:[Mon Dec 05 10:26:25 2005] [notice] jk2_init() Found child 5386 in scoreboard slot 9 +1409:[Mon Dec 05 10:26:25 2005] [notice] jk2_init() Found child 5387 in scoreboard slot 6 +1410:[Mon Dec 05 10:26:31 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1412:[Mon Dec 05 10:26:31 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1414:[Mon Dec 05 10:26:31 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1416:[Mon Dec 05 10:26:31 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1418:[Mon Dec 05 10:26:36 2005] [notice] jk2_init() Found child 5388 in scoreboard slot 10 +1419:[Mon Dec 05 10:26:36 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1423:[Mon Dec 05 10:31:40 2005] [notice] jk2_init() Found child 5404 in scoreboard slot 8 +1424:[Mon Dec 05 10:31:40 2005] [notice] jk2_init() Found child 5405 in scoreboard slot 9 +1425:[Mon Dec 05 10:33:41 2005] [notice] jk2_init() Found child 5418 in scoreboard slot 6 +1426:[Mon Dec 05 10:33:41 2005] [notice] jk2_init() Found child 5419 in scoreboard slot 7 +1427:[Mon Dec 05 10:33:41 2005] [notice] jk2_init() Found child 5417 in scoreboard slot 9 +1428:[Mon Dec 05 10:33:41 2005] [notice] jk2_init() Found child 5416 in scoreboard slot 8 +1429:[Mon Dec 05 10:33:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1431:[Mon Dec 05 10:33:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1433:[Mon Dec 05 10:33:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1435:[Mon Dec 05 10:33:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1437:[Mon Dec 05 10:36:10 2005] [notice] jk2_init() Found child 5426 in scoreboard slot 6 +1438:[Mon Dec 05 10:36:10 2005] [notice] jk2_init() Found child 5425 in scoreboard slot 9 +1439:[Mon Dec 05 10:36:58 2005] [notice] jk2_init() Found child 5428 in scoreboard slot 8 +1440:[Mon Dec 05 10:37:27 2005] [notice] jk2_init() Found child 5429 in scoreboard slot 9 +1441:[Mon Dec 05 10:37:27 2005] [notice] jk2_init() Found child 5430 in scoreboard slot 6 +1442:[Mon Dec 05 10:38:00 2005] [notice] jk2_init() Found child 5434 in scoreboard slot 6 +1443:[Mon Dec 05 10:38:00 2005] [notice] jk2_init() Found child 5433 in scoreboard slot 9 +1444:[Mon Dec 05 10:38:00 2005] [notice] jk2_init() Found child 5435 in scoreboard slot 7 +1445:[Mon Dec 05 10:38:00 2005] [notice] jk2_init() Found child 5432 in scoreboard slot 8 +1446:[Mon Dec 05 10:38:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1448:[Mon Dec 05 10:38:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1450:[Mon Dec 05 10:38:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1452:[Mon Dec 05 10:38:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1454:[Mon Dec 05 10:41:14 2005] [notice] jk2_init() Found child 5470 in scoreboard slot 9 +1455:[Mon Dec 05 10:41:14 2005] [notice] jk2_init() Found child 5469 in scoreboard slot 8 +1456:[Mon Dec 05 10:42:23 2005] [notice] jk2_init() Found child 5474 in scoreboard slot 9 +1457:[Mon Dec 05 10:42:23 2005] [notice] jk2_init() Found child 5475 in scoreboard slot 6 +1458:[Mon Dec 05 10:43:19 2005] [notice] jk2_init() Found child 5482 in scoreboard slot 9 +1459:[Mon Dec 05 10:43:19 2005] [notice] jk2_init() Found child 5480 in scoreboard slot 7 +1460:[Mon Dec 05 10:43:19 2005] [notice] jk2_init() Found child 5479 in scoreboard slot 6 +1461:[Mon Dec 05 10:43:19 2005] [notice] jk2_init() Found child 5481 in scoreboard slot 8 +1462:[Mon Dec 05 10:43:34 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1463:[Mon Dec 05 10:43:34 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1465:[Mon Dec 05 10:43:41 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1467:[Mon Dec 05 10:43:48 2005] [notice] jk2_init() Found child 5484 in scoreboard slot 7 +1468:[Mon Dec 05 10:43:48 2005] [notice] jk2_init() Found child 5483 in scoreboard slot 6 +1469:[Mon Dec 05 10:43:51 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1471:[Mon Dec 05 10:43:51 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1473:[Mon Dec 05 10:46:55 2005] [notice] jk2_init() Found child 5497 in scoreboard slot 7 +1474:[Mon Dec 05 10:46:55 2005] [notice] jk2_init() Found child 5495 in scoreboard slot 9 +1475:[Mon Dec 05 10:46:55 2005] [notice] jk2_init() Found child 5494 in scoreboard slot 8 +1476:[Mon Dec 05 10:46:55 2005] [notice] jk2_init() Found child 5496 in scoreboard slot 6 +1477:[Mon Dec 05 10:47:12 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1478:[Mon Dec 05 10:47:12 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1481:[Mon Dec 05 10:47:32 2005] [notice] jk2_init() Found child 5499 in scoreboard slot 9 +1482:[Mon Dec 05 10:47:33 2005] [notice] jk2_init() Found child 5498 in scoreboard slot 8 +1483:[Mon Dec 05 10:47:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1484:[Mon Dec 05 10:47:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1487:[Mon Dec 05 10:47:47 2005] [notice] jk2_init() Found child 5500 in scoreboard slot 6 +1488:[Mon Dec 05 10:47:47 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1490:[Mon Dec 05 10:48:43 2005] [notice] jk2_init() Found child 5503 in scoreboard slot 10 +1491:[Mon Dec 05 10:48:46 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1494:[Mon Dec 05 10:51:12 2005] [notice] jk2_init() Found child 5515 in scoreboard slot 7 +1495:[Mon Dec 05 10:51:12 2005] [notice] jk2_init() Found child 5516 in scoreboard slot 8 +1496:[Mon Dec 05 10:51:33 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1497:[Mon Dec 05 10:51:33 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1500:[Mon Dec 05 10:51:59 2005] [notice] jk2_init() Found child 5517 in scoreboard slot 6 +1501:[Mon Dec 05 10:52:00 2005] [notice] jk2_init() Found child 5518 in scoreboard slot 9 +1502:[Mon Dec 05 10:52:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1503:[Mon Dec 05 10:52:15 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1505:[Mon Dec 05 10:53:42 2005] [notice] jk2_init() Found child 5527 in scoreboard slot 7 +1506:[Mon Dec 05 10:53:42 2005] [notice] jk2_init() Found child 5526 in scoreboard slot 9 +1507:[Mon Dec 05 10:55:47 2005] [notice] jk2_init() Found child 5538 in scoreboard slot 9 +1508:[Mon Dec 05 10:59:25 2005] [notice] jk2_init() Found child 5565 in scoreboard slot 9 +1509:[Mon Dec 05 10:59:25 2005] [notice] jk2_init() Found child 5563 in scoreboard slot 7 +1510:[Mon Dec 05 10:59:25 2005] [notice] jk2_init() Found child 5562 in scoreboard slot 6 +1511:[Mon Dec 05 10:59:25 2005] [notice] jk2_init() Found child 5564 in scoreboard slot 8 +1512:[Mon Dec 05 10:59:25 2005] [notice] jk2_init() Found child 5567 in scoreboard slot 12 +1513:[Mon Dec 05 10:59:25 2005] [notice] jk2_init() Found child 5568 in scoreboard slot 13 +1514:[Mon Dec 05 10:59:25 2005] [notice] jk2_init() Found child 5566 in scoreboard slot 10 +1515:[Mon Dec 05 10:59:29 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1516:[Mon Dec 05 10:59:29 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1517:[Mon Dec 05 10:59:29 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1518:[Mon Dec 05 10:59:29 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1519:[Mon Dec 05 10:59:29 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1520:[Mon Dec 05 10:59:29 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1521:[Mon Dec 05 10:59:29 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1529:[Mon Dec 05 11:02:05 2005] [notice] jk2_init() Found child 5579 in scoreboard slot 6 +1530:[Mon Dec 05 11:04:16 2005] [notice] jk2_init() Found child 5592 in scoreboard slot 8 +1531:[Mon Dec 05 11:04:16 2005] [notice] jk2_init() Found child 5593 in scoreboard slot 9 +1532:[Mon Dec 05 11:06:50 2005] [notice] jk2_init() Found child 5616 in scoreboard slot 6 +1533:[Mon Dec 05 11:06:51 2005] [notice] jk2_init() Found child 5617 in scoreboard slot 7 +1534:[Mon Dec 05 11:06:51 2005] [notice] jk2_init() Found child 5618 in scoreboard slot 8 +1535:[Mon Dec 05 11:06:51 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1537:[Mon Dec 05 11:06:51 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1539:[Mon Dec 05 11:06:51 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1542:[Mon Dec 05 11:06:52 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1545:[Mon Dec 05 11:06:52 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1548:[Mon Dec 05 11:06:52 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1551:[Mon Dec 05 11:06:52 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1553:[Mon Dec 05 12:35:57 2005] [notice] jk2_init() Found child 5785 in scoreboard slot 6 +1554:[Mon Dec 05 12:35:57 2005] [notice] jk2_init() Found child 5786 in scoreboard slot 7 +1555:[Mon Dec 05 12:36:36 2005] [notice] jk2_init() Found child 5790 in scoreboard slot 7 +1556:[Mon Dec 05 12:36:36 2005] [notice] jk2_init() Found child 5788 in scoreboard slot 9 +1557:[Mon Dec 05 12:36:36 2005] [notice] jk2_init() Found child 5789 in scoreboard slot 6 +1558:[Mon Dec 05 12:36:36 2005] [notice] jk2_init() Found child 5787 in scoreboard slot 8 +1559:[Mon Dec 05 12:36:39 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1561:[Mon Dec 05 12:36:39 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1563:[Mon Dec 05 12:36:39 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1565:[Mon Dec 05 12:36:39 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1567:[Mon Dec 05 12:40:37 2005] [notice] jk2_init() Found child 5798 in scoreboard slot 8 +1568:[Mon Dec 05 12:40:38 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1570:[Mon Dec 05 12:50:42 2005] [notice] jk2_init() Found child 5811 in scoreboard slot 6 +1571:[Mon Dec 05 12:50:42 2005] [notice] jk2_init() Found child 5810 in scoreboard slot 9 +1572:[Mon Dec 05 12:50:43 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1573:[Mon Dec 05 12:50:43 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1576:[Mon Dec 05 12:55:48 2005] [notice] jk2_init() Found child 5817 in scoreboard slot 8 +1577:[Mon Dec 05 12:55:48 2005] [notice] jk2_init() Found child 5816 in scoreboard slot 7 +1578:[Mon Dec 05 12:55:49 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1580:[Mon Dec 05 12:55:49 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1582:[Mon Dec 05 13:00:33 2005] [notice] jk2_init() Found child 5825 in scoreboard slot 9 +1583:[Mon Dec 05 13:00:33 2005] [notice] jk2_init() Found child 5826 in scoreboard slot 6 +1584:[Mon Dec 05 13:00:34 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1586:[Mon Dec 05 13:00:34 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1588:[Mon Dec 05 13:05:24 2005] [notice] jk2_init() Found child 5845 in scoreboard slot 7 +1589:[Mon Dec 05 13:05:24 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1591:[Mon Dec 05 13:10:55 2005] [notice] jk2_init() Found child 5856 in scoreboard slot 8 +1592:[Mon Dec 05 13:10:59 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1594:[Mon Dec 05 13:16:27 2005] [notice] jk2_init() Found child 5877 in scoreboard slot 9 +1595:[Mon Dec 05 13:16:27 2005] [notice] jk2_init() Found child 5876 in scoreboard slot 8 +1596:[Mon Dec 05 13:16:27 2005] [notice] jk2_init() Found child 5878 in scoreboard slot 6 +1597:[Mon Dec 05 13:16:27 2005] [notice] jk2_init() Found child 5875 in scoreboard slot 7 +1598:[Mon Dec 05 13:16:29 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1600:[Mon Dec 05 13:16:29 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1602:[Mon Dec 05 13:16:29 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1604:[Mon Dec 05 13:16:29 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1606:[Mon Dec 05 13:21:35 2005] [notice] jk2_init() Found child 5893 in scoreboard slot 9 +1607:[Mon Dec 05 13:21:34 2005] [notice] jk2_init() Found child 5892 in scoreboard slot 8 +1608:[Mon Dec 05 13:22:45 2005] [notice] jk2_init() Found child 5901 in scoreboard slot 9 +1609:[Mon Dec 05 13:22:45 2005] [notice] jk2_init() Found child 5899 in scoreboard slot 7 +1610:[Mon Dec 05 13:22:45 2005] [notice] jk2_init() Found child 5900 in scoreboard slot 8 +1611:[Mon Dec 05 13:22:45 2005] [notice] jk2_init() Found child 5898 in scoreboard slot 6 +1612:[Mon Dec 05 13:22:48 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1614:[Mon Dec 05 13:22:48 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1616:[Mon Dec 05 13:22:48 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1618:[Mon Dec 05 13:22:48 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1620:[Mon Dec 05 13:26:03 2005] [notice] jk2_init() Found child 5912 in scoreboard slot 7 +1621:[Mon Dec 05 13:26:37 2005] [notice] jk2_init() Found child 5914 in scoreboard slot 9 +1622:[Mon Dec 05 13:26:37 2005] [notice] jk2_init() Found child 5915 in scoreboard slot 6 +1623:[Mon Dec 05 13:27:15 2005] [notice] jk2_init() Found child 5917 in scoreboard slot 8 +1624:[Mon Dec 05 13:27:14 2005] [notice] jk2_init() Found child 5916 in scoreboard slot 7 +1625:[Mon Dec 05 13:27:15 2005] [notice] jk2_init() Found child 5919 in scoreboard slot 6 +1626:[Mon Dec 05 13:27:15 2005] [notice] jk2_init() Found child 5918 in scoreboard slot 9 +1627:[Mon Dec 05 13:28:14 2005] [notice] jk2_init() Found child 5925 in scoreboard slot 8 +1628:[Mon Dec 05 13:28:14 2005] [notice] jk2_init() Found child 5923 in scoreboard slot 6 +1629:[Mon Dec 05 13:28:14 2005] [notice] jk2_init() Found child 5924 in scoreboard slot 7 +1630:[Mon Dec 05 13:28:14 2005] [notice] jk2_init() Found child 5922 in scoreboard slot 9 +1631:[Mon Dec 05 13:28:17 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1633:[Mon Dec 05 13:28:17 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1635:[Mon Dec 05 13:28:17 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1637:[Mon Dec 05 13:28:17 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1639:[Mon Dec 05 13:31:19 2005] [notice] jk2_init() Found child 5935 in scoreboard slot 9 +1640:[Mon Dec 05 13:31:19 2005] [notice] jk2_init() Found child 5936 in scoreboard slot 6 +1641:[Mon Dec 05 13:31:53 2005] [notice] jk2_init() Found child 5938 in scoreboard slot 8 +1642:[Mon Dec 05 13:31:53 2005] [notice] jk2_init() Found child 5937 in scoreboard slot 7 +1643:[Mon Dec 05 13:32:01 2005] [notice] jk2_init() Found child 5940 in scoreboard slot 6 +1644:[Mon Dec 05 13:32:01 2005] [notice] jk2_init() Found child 5939 in scoreboard slot 9 +1645:[Mon Dec 05 13:32:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1646:[Mon Dec 05 13:32:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1649:[Mon Dec 05 13:32:09 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1650:[Mon Dec 05 13:32:09 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1653:[Mon Dec 05 13:32:28 2005] [notice] jk2_init() Found child 5942 in scoreboard slot 8 +1654:[Mon Dec 05 13:32:28 2005] [notice] jk2_init() Found child 5941 in scoreboard slot 7 +1655:[Mon Dec 05 13:32:30 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1656:[Mon Dec 05 13:32:30 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1659:[Mon Dec 05 13:36:27 2005] [notice] jk2_init() Found child 5954 in scoreboard slot 7 +1660:[Mon Dec 05 13:36:27 2005] [notice] jk2_init() Found child 5953 in scoreboard slot 6 +1661:[Mon Dec 05 13:36:58 2005] [notice] jk2_init() Found child 5956 in scoreboard slot 9 +1662:[Mon Dec 05 13:36:58 2005] [notice] jk2_init() Found child 5957 in scoreboard slot 6 +1663:[Mon Dec 05 13:36:58 2005] [notice] jk2_init() Found child 5955 in scoreboard slot 8 +1664:[Mon Dec 05 13:37:47 2005] [notice] jk2_init() Found child 5961 in scoreboard slot 6 +1665:[Mon Dec 05 13:37:47 2005] [notice] jk2_init() Found child 5960 in scoreboard slot 9 +1666:[Mon Dec 05 13:38:52 2005] [notice] jk2_init() Found child 5968 in scoreboard slot 9 +1667:[Mon Dec 05 13:38:53 2005] [notice] jk2_init() Found child 5965 in scoreboard slot 6 +1668:[Mon Dec 05 13:38:52 2005] [notice] jk2_init() Found child 5967 in scoreboard slot 8 +1669:[Mon Dec 05 13:38:53 2005] [notice] jk2_init() Found child 5969 in scoreboard slot 10 +1670:[Mon Dec 05 13:38:52 2005] [notice] jk2_init() Found child 5966 in scoreboard slot 7 +1671:[Mon Dec 05 13:39:09 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1672:[Mon Dec 05 13:39:09 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1675:[Mon Dec 05 13:39:36 2005] [notice] jk2_init() Found child 5970 in scoreboard slot 6 +1676:[Mon Dec 05 13:39:36 2005] [notice] jk2_init() Found child 5971 in scoreboard slot 7 +1677:[Mon Dec 05 13:39:41 2005] [notice] jk2_init() Found child 5972 in scoreboard slot 8 +1678:[Mon Dec 05 13:39:41 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1679:[Mon Dec 05 13:39:41 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1680:[Mon Dec 05 13:39:41 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1684:[Mon Dec 05 13:41:11 2005] [notice] jk2_init() Found child 5981 in scoreboard slot 9 +1685:[Mon Dec 05 13:41:12 2005] [notice] jk2_init() Found child 5982 in scoreboard slot 6 +1686:[Mon Dec 05 13:41:58 2005] [notice] jk2_init() Found child 5984 in scoreboard slot 8 +1687:[Mon Dec 05 13:41:58 2005] [notice] jk2_init() Found child 5985 in scoreboard slot 9 +1688:[Mon Dec 05 13:43:27 2005] [notice] jk2_init() Found child 5992 in scoreboard slot 8 +1689:[Mon Dec 05 13:43:27 2005] [notice] jk2_init() Found child 5993 in scoreboard slot 9 +1690:[Mon Dec 05 13:43:27 2005] [notice] jk2_init() Found child 5990 in scoreboard slot 6 +1691:[Mon Dec 05 13:43:27 2005] [notice] jk2_init() Found child 5991 in scoreboard slot 7 +1692:[Mon Dec 05 13:43:43 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1693:[Mon Dec 05 13:43:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1694:[Mon Dec 05 13:43:43 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1698:[Mon Dec 05 13:44:18 2005] [notice] jk2_init() Found child 5995 in scoreboard slot 7 +1699:[Mon Dec 05 13:44:18 2005] [notice] jk2_init() Found child 5996 in scoreboard slot 8 +1700:[Mon Dec 05 13:44:32 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1701:[Mon Dec 05 13:44:35 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1704:[Mon Dec 05 13:44:53 2005] [notice] jk2_init() Found child 5997 in scoreboard slot 9 +1705:[Mon Dec 05 13:45:01 2005] [notice] jk2_init() Found child 5998 in scoreboard slot 6 +1706:[Mon Dec 05 13:45:01 2005] [notice] jk2_init() Found child 5999 in scoreboard slot 7 +1707:[Mon Dec 05 13:45:08 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1708:[Mon Dec 05 13:45:08 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1709:[Mon Dec 05 13:45:08 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1713:[Mon Dec 05 13:46:20 2005] [notice] jk2_init() Found child 6007 in scoreboard slot 7 +1714:[Mon Dec 05 13:46:20 2005] [notice] jk2_init() Found child 6006 in scoreboard slot 6 +1715:[Mon Dec 05 13:46:20 2005] [notice] jk2_init() Found child 6005 in scoreboard slot 9 +1716:[Mon Dec 05 13:46:50 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1717:[Mon Dec 05 13:47:06 2005] [notice] jk2_init() Found child 6008 in scoreboard slot 8 +1718:[Mon Dec 05 13:47:06 2005] [notice] jk2_init() Found child 6009 in scoreboard slot 9 +1719:[Mon Dec 05 13:47:09 2005] [notice] jk2_init() Found child 6011 in scoreboard slot 7 +1720:[Mon Dec 05 13:47:09 2005] [notice] jk2_init() Found child 6010 in scoreboard slot 6 +1721:[Mon Dec 05 13:47:11 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1722:[Mon Dec 05 13:47:11 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1723:[Mon Dec 05 13:47:11 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1724:[Mon Dec 05 13:47:11 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1729:[Mon Dec 05 13:51:17 2005] [notice] jk2_init() Found child 6028 in scoreboard slot 9 +1730:[Mon Dec 05 13:52:19 2005] [notice] jk2_init() Found child 6036 in scoreboard slot 9 +1731:[Mon Dec 05 13:52:19 2005] [notice] jk2_init() Found child 6033 in scoreboard slot 6 +1732:[Mon Dec 05 13:52:19 2005] [notice] jk2_init() Found child 6035 in scoreboard slot 8 +1733:[Mon Dec 05 13:52:19 2005] [notice] jk2_init() Found child 6034 in scoreboard slot 7 +1734:[Mon Dec 05 13:52:33 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1735:[Mon Dec 05 13:52:33 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1738:[Mon Dec 05 13:53:00 2005] [notice] jk2_init() Found child 6038 in scoreboard slot 7 +1739:[Mon Dec 05 13:53:00 2005] [notice] jk2_init() Found child 6037 in scoreboard slot 6 +1740:[Mon Dec 05 13:53:00 2005] [notice] jk2_init() Found child 6039 in scoreboard slot 10 +1741:[Mon Dec 05 13:53:31 2005] [notice] jk2_init() Found child 6043 in scoreboard slot 9 +1742:[Mon Dec 05 13:53:31 2005] [notice] jk2_init() Found child 6042 in scoreboard slot 7 +1743:[Mon Dec 05 13:53:31 2005] [notice] jk2_init() Found child 6041 in scoreboard slot 6 +1744:[Mon Dec 05 13:53:34 2005] [notice] jk2_init() Found child 6044 in scoreboard slot 8 +1745:[Mon Dec 05 13:53:35 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1746:[Mon Dec 05 13:53:35 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1747:[Mon Dec 05 13:53:35 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1748:[Mon Dec 05 13:53:35 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1753:[Mon Dec 05 13:56:21 2005] [notice] jk2_init() Found child 6052 in scoreboard slot 6 +1754:[Mon Dec 05 13:56:38 2005] [notice] jk2_init() Found child 6053 in scoreboard slot 7 +1755:[Mon Dec 05 13:57:07 2005] [notice] jk2_init() Found child 6054 in scoreboard slot 9 +1756:[Mon Dec 05 13:57:07 2005] [notice] jk2_init() Found child 6055 in scoreboard slot 8 +1757:[Mon Dec 05 13:58:31 2005] [notice] jk2_init() Found child 6063 in scoreboard slot 8 +1758:[Mon Dec 05 13:58:31 2005] [notice] jk2_init() Found child 6062 in scoreboard slot 9 +1759:[Mon Dec 05 13:59:43 2005] [notice] jk2_init() Found child 6069 in scoreboard slot 7 +1760:[Mon Dec 05 13:59:43 2005] [notice] jk2_init() Found child 6070 in scoreboard slot 9 +1761:[Mon Dec 05 13:59:43 2005] [notice] jk2_init() Found child 6071 in scoreboard slot 8 +1762:[Mon Dec 05 14:01:47 2005] [notice] jk2_init() Found child 6100 in scoreboard slot 7 +1763:[Mon Dec 05 14:01:47 2005] [notice] jk2_init() Found child 6101 in scoreboard slot 8 +1764:[Mon Dec 05 14:01:47 2005] [notice] jk2_init() Found child 6099 in scoreboard slot 6 +1765:[Mon Dec 05 14:01:48 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1767:[Mon Dec 05 14:01:48 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1769:[Mon Dec 05 14:01:48 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1771:[Mon Dec 05 14:11:40 2005] [notice] jk2_init() Found child 6115 in scoreboard slot 10 +1773:[Mon Dec 05 14:11:45 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1775:[Mon Dec 05 15:31:06 2005] [notice] jk2_init() Found child 6259 in scoreboard slot 6 +1776:[Mon Dec 05 15:31:06 2005] [notice] jk2_init() Found child 6260 in scoreboard slot 7 +1777:[Mon Dec 05 15:31:09 2005] [notice] jk2_init() Found child 6261 in scoreboard slot 8 +1778:[Mon Dec 05 15:31:10 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1780:[Mon Dec 05 15:31:10 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1782:[Mon Dec 05 15:31:10 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1784:[Mon Dec 05 15:40:59 2005] [notice] jk2_init() Found child 6277 in scoreboard slot 7 +1785:[Mon Dec 05 15:40:59 2005] [notice] jk2_init() Found child 6276 in scoreboard slot 6 +1786:[Mon Dec 05 15:41:32 2005] [notice] jk2_init() Found child 6280 in scoreboard slot 7 +1787:[Mon Dec 05 15:41:32 2005] [notice] jk2_init() Found child 6278 in scoreboard slot 8 +1788:[Mon Dec 05 15:41:32 2005] [notice] jk2_init() Found child 6279 in scoreboard slot 6 +1789:[Mon Dec 05 15:41:32 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1791:[Mon Dec 05 15:41:32 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1793:[Mon Dec 05 15:41:32 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1795:[Mon Dec 05 15:45:42 2005] [notice] jk2_init() Found child 6285 in scoreboard slot 8 +1796:[Mon Dec 05 15:45:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1798:[Mon Dec 05 15:50:53 2005] [notice] jk2_init() Found child 6293 in scoreboard slot 6 +1799:[Mon Dec 05 15:50:53 2005] [notice] jk2_init() Found child 6294 in scoreboard slot 7 +1800:[Mon Dec 05 15:51:18 2005] [notice] jk2_init() Found child 6297 in scoreboard slot 7 +1801:[Mon Dec 05 15:51:18 2005] [notice] jk2_init() Found child 6295 in scoreboard slot 8 +1802:[Mon Dec 05 15:51:18 2005] [notice] jk2_init() Found child 6296 in scoreboard slot 6 +1803:[Mon Dec 05 15:51:20 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1805:[Mon Dec 05 15:51:20 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1807:[Mon Dec 05 15:51:20 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1809:[Mon Dec 05 15:55:31 2005] [notice] jk2_init() Found child 6302 in scoreboard slot 8 +1810:[Mon Dec 05 15:55:32 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1812:[Mon Dec 05 16:01:17 2005] [notice] jk2_init() Found child 6310 in scoreboard slot 6 +1813:[Mon Dec 05 16:02:00 2005] [notice] jk2_init() Found child 6315 in scoreboard slot 6 +1814:[Mon Dec 05 16:02:00 2005] [notice] jk2_init() Found child 6316 in scoreboard slot 7 +1815:[Mon Dec 05 16:02:00 2005] [notice] jk2_init() Found child 6314 in scoreboard slot 8 +1816:[Mon Dec 05 16:02:02 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1817:[Mon Dec 05 16:02:02 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1818:[Mon Dec 05 16:02:02 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1822:[Mon Dec 05 16:06:07 2005] [notice] jk2_init() Found child 6333 in scoreboard slot 8 +1823:[Mon Dec 05 16:06:21 2005] [notice] jk2_init() Found child 6335 in scoreboard slot 7 +1824:[Mon Dec 05 16:07:08 2005] [notice] jk2_init() Found child 6339 in scoreboard slot 8 +1825:[Mon Dec 05 16:07:08 2005] [notice] jk2_init() Found child 6340 in scoreboard slot 6 +1826:[Mon Dec 05 16:07:08 2005] [notice] jk2_init() Found child 6338 in scoreboard slot 7 +1827:[Mon Dec 05 16:07:09 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1829:[Mon Dec 05 16:07:09 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1831:[Mon Dec 05 16:07:09 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1833:[Mon Dec 05 16:10:43 2005] [notice] jk2_init() Found child 6351 in scoreboard slot 8 +1834:[Mon Dec 05 16:10:43 2005] [notice] jk2_init() Found child 6350 in scoreboard slot 7 +1835:[Mon Dec 05 16:10:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1837:[Mon Dec 05 16:10:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1839:[Mon Dec 05 16:16:34 2005] [notice] jk2_init() Found child 6368 in scoreboard slot 8 +1840:[Mon Dec 05 16:16:34 2005] [notice] jk2_init() Found child 6367 in scoreboard slot 7 +1841:[Mon Dec 05 16:16:34 2005] [notice] jk2_init() Found child 6366 in scoreboard slot 6 +1842:[Mon Dec 05 16:16:36 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1844:[Mon Dec 05 16:16:36 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1846:[Mon Dec 05 16:16:36 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1848:[Mon Dec 05 16:21:25 2005] [notice] jk2_init() Found child 6387 in scoreboard slot 7 +1849:[Mon Dec 05 16:21:25 2005] [notice] jk2_init() Found child 6386 in scoreboard slot 6 +1850:[Mon Dec 05 16:21:25 2005] [notice] jk2_init() Found child 6385 in scoreboard slot 8 +1851:[Mon Dec 05 16:21:29 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1853:[Mon Dec 05 16:21:29 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1855:[Mon Dec 05 16:21:29 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1857:[Mon Dec 05 16:26:00 2005] [notice] jk2_init() Found child 6400 in scoreboard slot 7 +1858:[Mon Dec 05 16:26:00 2005] [notice] jk2_init() Found child 6399 in scoreboard slot 6 +1859:[Mon Dec 05 16:26:00 2005] [notice] jk2_init() Found child 6398 in scoreboard slot 8 +1860:[Mon Dec 05 16:26:05 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1862:[Mon Dec 05 16:26:05 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1864:[Mon Dec 05 16:26:05 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1866:[Mon Dec 05 16:31:48 2005] [notice] jk2_init() Found child 6420 in scoreboard slot 6 +1867:[Mon Dec 05 16:31:49 2005] [notice] jk2_init() Found child 6421 in scoreboard slot 7 +1868:[Mon Dec 05 16:31:49 2005] [notice] jk2_init() Found child 6422 in scoreboard slot 8 +1869:[Mon Dec 05 16:31:52 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1870:[Mon Dec 05 16:31:52 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1871:[Mon Dec 05 16:31:52 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1875:[Mon Dec 05 16:36:06 2005] [notice] jk2_init() Found child 6434 in scoreboard slot 7 +1876:[Mon Dec 05 16:36:06 2005] [notice] jk2_init() Found child 6433 in scoreboard slot 6 +1877:[Mon Dec 05 16:36:42 2005] [notice] jk2_init() Found child 6435 in scoreboard slot 8 +1878:[Mon Dec 05 16:37:03 2005] [notice] jk2_init() Found child 6437 in scoreboard slot 7 +1879:[Mon Dec 05 16:38:17 2005] [notice] jk2_init() Found child 6443 in scoreboard slot 7 +1880:[Mon Dec 05 16:38:17 2005] [notice] jk2_init() Found child 6442 in scoreboard slot 6 +1881:[Mon Dec 05 16:39:59 2005] [notice] jk2_init() Found child 6453 in scoreboard slot 10 +1882:[Mon Dec 05 16:39:59 2005] [notice] jk2_init() Found child 6451 in scoreboard slot 7 +1883:[Mon Dec 05 16:39:59 2005] [notice] jk2_init() Found child 6452 in scoreboard slot 8 +1884:[Mon Dec 05 16:40:06 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1885:[Mon Dec 05 16:40:06 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1886:[Mon Dec 05 16:40:06 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1891:[Mon Dec 05 17:31:37 2005] [notice] jk2_init() Found child 6561 in scoreboard slot 10 +1893:[Mon Dec 05 17:31:41 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1895:[Mon Dec 05 17:35:57 2005] [notice] jk2_init() Found child 6569 in scoreboard slot 8 +1896:[Mon Dec 05 17:35:57 2005] [notice] jk2_init() Found child 6568 in scoreboard slot 7 +1897:[Mon Dec 05 17:35:58 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1899:[Mon Dec 05 17:35:58 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1901:[Mon Dec 05 17:40:38 2005] [notice] jk2_init() Found child 6577 in scoreboard slot 7 +1902:[Mon Dec 05 17:40:38 2005] [notice] jk2_init() Found child 6578 in scoreboard slot 8 +1903:[Mon Dec 05 17:40:39 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1905:[Mon Dec 05 17:40:39 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1907:[Mon Dec 05 17:46:02 2005] [notice] jk2_init() Found child 6585 in scoreboard slot 7 +1908:[Mon Dec 05 17:46:02 2005] [notice] jk2_init() Found child 6586 in scoreboard slot 8 +1909:[Mon Dec 05 17:46:06 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1910:[Mon Dec 05 17:46:06 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1913:[Mon Dec 05 17:50:40 2005] [notice] jk2_init() Found child 6595 in scoreboard slot 8 +1914:[Mon Dec 05 17:50:40 2005] [notice] jk2_init() Found child 6594 in scoreboard slot 7 +1915:[Mon Dec 05 17:50:41 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1917:[Mon Dec 05 17:50:41 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1919:[Mon Dec 05 17:55:35 2005] [notice] jk2_init() Found child 6601 in scoreboard slot 8 +1920:[Mon Dec 05 17:55:35 2005] [notice] jk2_init() Found child 6600 in scoreboard slot 7 +1921:[Mon Dec 05 17:55:35 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1922:[Mon Dec 05 17:55:35 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1925:[Mon Dec 05 18:00:24 2005] [notice] jk2_init() Found child 6609 in scoreboard slot 7 +1926:[Mon Dec 05 18:00:26 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1928:[Mon Dec 05 18:10:56 2005] [notice] jk2_init() Found child 6639 in scoreboard slot 7 +1929:[Mon Dec 05 18:10:56 2005] [notice] jk2_init() Found child 6638 in scoreboard slot 8 +1930:[Mon Dec 05 18:10:58 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1932:[Mon Dec 05 18:10:58 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1934:[Mon Dec 05 18:15:45 2005] [notice] jk2_init() Found child 6652 in scoreboard slot 7 +1935:[Mon Dec 05 18:15:45 2005] [notice] jk2_init() Found child 6651 in scoreboard slot 8 +1936:[Mon Dec 05 18:15:47 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1937:[Mon Dec 05 18:15:47 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1940:[Mon Dec 05 18:20:51 2005] [notice] jk2_init() Found child 6670 in scoreboard slot 7 +1941:[Mon Dec 05 18:20:51 2005] [notice] jk2_init() Found child 6669 in scoreboard slot 8 +1942:[Mon Dec 05 18:20:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1944:[Mon Dec 05 18:20:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1946:[Mon Dec 05 18:26:06 2005] [notice] jk2_init() Found child 6684 in scoreboard slot 7 +1947:[Mon Dec 05 18:27:29 2005] [notice] jk2_init() Found child 6688 in scoreboard slot 8 +1948:[Mon Dec 05 18:27:33 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1950:[Mon Dec 05 18:27:37 2005] [notice] jk2_init() Found child 6689 in scoreboard slot 7 +1951:[Mon Dec 05 18:27:37 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1953:[Mon Dec 05 18:35:51 2005] [notice] jk2_init() Found child 6707 in scoreboard slot 8 +1954:[Mon Dec 05 18:35:51 2005] [notice] jk2_init() Found child 6708 in scoreboard slot 7 +1955:[Mon Dec 05 18:35:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1957:[Mon Dec 05 18:35:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1959:[Mon Dec 05 18:40:54 2005] [notice] jk2_init() Found child 6719 in scoreboard slot 7 +1960:[Mon Dec 05 18:40:54 2005] [notice] jk2_init() Found child 6718 in scoreboard slot 8 +1961:[Mon Dec 05 18:40:54 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1963:[Mon Dec 05 18:40:54 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1965:[Mon Dec 05 18:45:51 2005] [notice] jk2_init() Found child 6725 in scoreboard slot 7 +1966:[Mon Dec 05 18:45:51 2005] [notice] jk2_init() Found child 6724 in scoreboard slot 8 +1967:[Mon Dec 05 18:45:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1969:[Mon Dec 05 18:45:53 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1971:[Mon Dec 05 18:50:30 2005] [notice] jk2_init() Found child 6733 in scoreboard slot 8 +1972:[Mon Dec 05 18:50:31 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1974:[Mon Dec 05 18:56:03 2005] [notice] jk2_init() Found child 6740 in scoreboard slot 7 +1975:[Mon Dec 05 18:56:03 2005] [notice] jk2_init() Found child 6741 in scoreboard slot 8 +1976:[Mon Dec 05 18:56:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1978:[Mon Dec 05 18:56:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1980:[Mon Dec 05 19:00:43 2005] [notice] jk2_init() Found child 6750 in scoreboard slot 8 +1981:[Mon Dec 05 19:00:43 2005] [notice] jk2_init() Found child 6749 in scoreboard slot 7 +1982:[Mon Dec 05 19:00:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1983:[Mon Dec 05 19:00:44 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1986:[Mon Dec 05 19:00:54 2005] [notice] jk2_init() Found child 6751 in scoreboard slot 10 +1987:[Mon Dec 05 19:00:54 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1990:[Mon Dec 05 19:11:00 2005] [notice] jk2_init() Found child 6780 in scoreboard slot 7 +1991:[Mon Dec 05 19:11:04 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1993:[Mon Dec 05 19:14:08 2005] [notice] jk2_init() Found child 6784 in scoreboard slot 8 +1995:[Mon Dec 05 19:14:11 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +1997:[Mon Dec 05 19:15:55 2005] [notice] jk2_init() Found child 6791 in scoreboard slot 8 +1998:[Mon Dec 05 19:15:55 2005] [notice] jk2_init() Found child 6790 in scoreboard slot 7 +1999:[Mon Dec 05 19:15:57 2005] [notice] workerEnv.init() ok /etc/httpd/conf/workers2.properties +ubuntu@ip-172-31-27-220:~$ + +***what i learned*** +i learned using grep command +sort and finding uniq using grep +finding specific words in script diff --git a/2026/day-21/shell_scripting_cheatsheet.md b/2026/day-21/shell_scripting_cheatsheet.md new file mode 100644 index 0000000000..ed5c31e79e --- /dev/null +++ b/2026/day-21/shell_scripting_cheatsheet.md @@ -0,0 +1,114 @@ +### Tasks + +### Task 1: Basics +* **Shebang (`#!/bin/bash`)**: The first line that tells the kernel which shell to use to execute the script. +* **Execution**: + * `chmod +x script.sh` - Grant execute permission. + * `./script.sh` - Run the script. + * `bash script.sh` - Run script through bash explicitly. +* **Comments**: Use `#` for single-line or inline notes. +* **Variables**: + * `VAR="Value"` (No spaces around `=`). + * `"$VAR"` (Double quotes: expands variables). + * `'$VAR'` (Single quotes: literal string, no expansion). +* **User Input**: `read -p "Enter username: " USERNAME` +* **Arguments**: + * `$0`: Script name | `$1-$9`: Arguments | `$#`: Number of args | `$@`: All args | `$?`: Exit status of last command. + +--- + +### Task 2: Operators and Conditionals + +### Comparison Operators +* **Strings**: `==` (equal), `!=` (not equal), `-z` (empty), `-n` (not empty). +* **Integers**: `-eq` (==), `-ne` (!=), `-lt` (<), `-gt` (>), `-le` (<=), `-ge` (>=). +* **Files**: `-f` (file exists), `-d` (directory exists), `-x` (executable), `-s` (not empty). + +### Logic & Syntax +```bash +# If/Else Logic +if [[ "$STATUS" == "active" ]] && [[ "$USER" == "root" ]]; then + echo "Access Granted" +elif [[ "$STATUS" == "pending" ]]; then + echo "Wait..." +else + echo "Denied" +fi + +# Case Statements +case "$ACTION" in + start) systemctl start nginx ;; + stop) systemctl stop nginx ;; + *) echo "Usage: start|stop" ;; +esac +``` + +### Task 3: Loops +```bash +# List-based For Loop +for item in upload backup logs; do + mkdir -p "/mnt/$item" +done + +# C-style For Loop +for ((i=1; i<=5; i++)); do + echo "Iteration $i" +done + +# While Loop (Reading a file line by line) +while read -r line; do + echo "Processing: $line" +done < data.txt +``` + +### Task 4: Functions +```bash + +check_status() { + local service=$1 # Use 'local' to prevent global scope issues + systemctl is-active --quiet "$service" + if [ $? -eq 0 ]; then + echo "$service is running" + else + return 1 + fi +} + +# Call the function +check_status "docker" +``` +### Task 5: Text Processing Commands +**grep**: grep -ri "error" /var/log (Search recursively, case-insensitive). + +**awk**: awk -F':' '{print $1}' /etc/passwd (Print 1st column using : as delimiter). + +**sed**: sed -i 's/search/replace/g' config.yml (In-place string replacement). + +**cut**: cut -d',' -f2 file.csv (Extract 2nd field of a CSV). + +**sort/uniq**: sort file.txt | uniq -c (Sort lines and count unique occurrences). + +**tr**: cat file | tr 'a-z' 'A-Z' (Convert to uppercase). + +**wc**: wc -l file.txt (Line count). + +**tail -f**: tail -f /var/log/syslog (Live stream log updates). + +### Task 6: Useful Patterns and One-Liners +Delete files older than 30 days: find /logs -mtime +30 -type f -delete + +Check if a port is open: netstat -tuln | grep :8080 + +Count lines in all .log files: cat *.log | wc -l + +Find the largest 5 files: du -ah . | sort -rh | head -n 5 + +Monitor disk usage alert: df -h | awk '$5+0 > 80 {print "Warning: " $1 " is at " $5}' + +set -e # Exit script immediately if a command fails +set -u # Exit if an uninitialized variable is used +set -o pipefail # Catch errors in piped commands +set -x # Print commands for debugging (Trace mode) + +# Cleanup trap +trap "echo 'Cleaning up...'; rm -f /tmp/temp_*" EXIT \ No newline at end of file diff --git a/2026/day-22/day-22-notes.md b/2026/day-22/day-22-notes.md new file mode 100644 index 0000000000..6259083140 --- /dev/null +++ b/2026/day-22/day-22-notes.md @@ -0,0 +1,165 @@ +### Task 1: Install and Configure Git + +ubuntu@ip-172-31-27-220:~$ git --version +git version 2.43.0 +mkdir ubuntu@ip-172-31-27-220:~$ git config --global user.name "akash" +ubuntu@ip-172-31-27-220:~$ git config --global user.email "akashjaura@gmail.com" +ubuntu@ip-172-31-27-220:~$ git config --global --list +user.name=akash +user.email=akashjaura@gmail.com +ubuntu@ip-172-31-27-220:~$ git config --list +user.name=akash +user.email=akashjaura@gmail.com +ubuntu@ip-172-31-27-220:~$ + +### Task 2: Create Your Git Project +1. Create a new folder called `devops-git-practice` +ubuntu@ip-172-31-27-220:~$ cd devops-git-practice/ + +2. Initialize it as a Git repository +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git init +hint: Using 'master' as the name for the initial branch. This default branch name +hint: is subject to change. To configure the initial branch name to use in all +hint: of your new repositories, which will suppress this warning, call: +hint: +hint: git config --global init.defaultBranch +hint: +hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +hint: 'development'. The just-created branch can be renamed via this command: +hint: +hint: git branch -m +Initialized empty Git repository in /home/ubuntu/devops-git-practice/.git/ + +3. Explore the hidden `.git/` directory — look at what's inside +ubuntu@ip-172-31-27-220:~/devops-git-practice$ ls .git +HEAD branches config description hooks info objects refs +ubuntu@ip-172-31-27-220:~/devops-git-practice$ cd .git +ubuntu@ip-172-31-27-220:~/devops-git-practice/.git$ ls -l +total 32 +-rw-rw-r-- 1 ubuntu ubuntu 23 Mar 3 11:09 HEAD +drwxrwxr-x 2 ubuntu ubuntu 4096 Mar 3 11:09 branches +-rw-rw-r-- 1 ubuntu ubuntu 92 Mar 3 11:09 config +-rw-rw-r-- 1 ubuntu ubuntu 73 Mar 3 11:09 description +drwxrwxr-x 2 ubuntu ubuntu 4096 Mar 3 11:09 hooks +drwxrwxr-x 2 ubuntu ubuntu 4096 Mar 3 11:09 info +drwxrwxr-x 4 ubuntu ubuntu 4096 Mar 3 11:09 objects +drwxrwxr-x 4 ubuntu ubuntu 4096 Mar 3 11:09 refs +ubuntu@ip-172-31-27-220:~/devops-git-practice/.git$ + +### Task 4: Stage and Commit +ubuntu@ip-172-31-27-220:~/devops-git-practice$ vim git-commands.md +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git status +On branch master +Untracked files: + (use "git add ..." to include in what will be committed) + git-commands.md + +nothing added to commit but untracked files present (use "git add" to track) +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git add git-commands.md +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git status +On branch master +Changes to be committed: + (use "git restore --staged ..." to unstage) + new file: git-commands.md + +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git commit -m "git commands cheatsheet added" +[master ac91840] git commands cheatsheet added + 1 file changed, 51 insertions(+) + create mode 100644 git-commands.md + + ### Task 5: Make More Changes and Build History +ubuntu@ip-172-31-27-220:~/devops-git-practice$ vim git-commands.md +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git status +On branch master +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git restore ..." to discard changes in working directory) + modified: git-commands.md + +no changes added to commit (use "git add" and/or "git commit -a") +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git commit -m "git commands log added" +On branch master +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git restore ..." to discard changes in working directory) + modified: git-commands.md + +no changes added to commit (use "git add" and/or "git commit -a") +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git add git-commands.md +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git commit -m "git commands log added" +[master 5a79e22] git commands log added + 1 file changed, 1 insertion(+) +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git status +On branch master +nothing to commit, working tree clean +ubuntu@ip-172-31-27-220:~/devops-git-practice$ vim git-commands.md +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git status +On branch master +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git restore ..." to discard changes in working directory) + modified: git-commands.md + +no changes added to commit (use "git add" and/or "git commit -a") +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git add git-commands.md +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git status +On branch master +Changes to be committed: + (use "git restore --staged ..." to unstage) + modified: git-commands.md + +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git commit -m "git commands log description added" +[master 8151662] git commands log description added + 1 file changed, 2 insertions(+) + +`full history in a compact format` +ubuntu@ip-172-31-27-220:~/devops-git-practice$ git log +commit 81516623a0d1019de1074454c349b7475de09eed (HEAD -> master) +Author: akash +Date: Tue Mar 3 11:22:05 2026 +0000 + + git commands log description added + +commit 5a79e227f5b01b7d37927dbdf904c0c4292ff221 +Author: akash +Date: Tue Mar 3 11:21:04 2026 +0000 + + git commands log added + +commit ac918408da268fb0988128bde7e7c093274da0ac +Author: akash +Date: Tue Mar 3 11:19:40 2026 +0000 + + git commands cheatsheet added + +commit b43f1b62d1ac85199fd9b77006e9255fbc6f4873 +Author: akash +Date: Tue Mar 3 11:11:43 2026 +0000 + + file added +ubuntu@ip-172-31-27-220:~/devops-git-practice$ + + +### Task 6: Understand the Git Workflow +Answer these questions in your own words (add them to a `day-22-notes.md` file): +1. What is the difference between `git add` and `git commit`? +git add: Used when a new file is created or updated to tell Git to track those changes. + +git commit: Used to save the staged changes permanently. Once committed, the file's current state is saved in history and cannot be lost. + +2. What does the **staging area** do? Why doesn't Git just commit directly? +The staging area lets us use git status to see exactly which files are modified before saving them. Git doesn't commit directly because we might have unwanted files that shouldn't be included. Staging ensures only the correct changes impact the system. + +3. What information does `git log` show you? +git log shows the previous history of all commits. It includes the unique commit ID, the author's name, the email of who committed it, and the date/message. + +4. What is the `.git/` folder and what happens if you delete it? +The .git/ folder is created when you initialize a project. It contains all the "brain" info like HEAD and branches. If you delete this folder, all version history is removed, and the folder becomes a normal directory again. + +5. What is the difference between a **working directory**, **staging area**, and **repository**? +Working Directory: The actual folder where you are currently making changes to files. + +Staging Area: The middle zone where you prepare and check your changes using git add. + +Repository: The final storage (the .git folder) where all your confirmed history and commits live. +and \ No newline at end of file diff --git a/2026/day-22/git-logs.png b/2026/day-22/git-logs.png new file mode 100644 index 0000000000..df2bde6a08 Binary files /dev/null and b/2026/day-22/git-logs.png differ diff --git a/2026/day-25/day-25-notes.md b/2026/day-25/day-25-notes.md new file mode 100644 index 0000000000..952f758908 --- /dev/null +++ b/2026/day-25/day-25-notes.md @@ -0,0 +1,85 @@ +## Challenge Tasks +- What is the difference between `--soft`, `--mixed`, and `--hard`? + - Which one is destructive and why? + + --hard is destructive because it overwrites the working Directory. If uncommitted code changes in files, git reset --hard will wipe them out instantly. + + - When would you use each one? + + --soft -> when we realized that we forgot to add a file to the last commit or want to join two commits together into one. + --mixed -> when we want to change the commit message and our code is safe, but have to git add it again. + --hard -> it deletes the commit also and remove content of files that are changed in this commit + + - Should you ever use `git reset` on commits that are already pushed? + + If reset and "Force Push," are used then it delete the history that colleagues might have already pulled. This creates "diverged histories" and can lead to hours of manual cleanup. + +### Task 2: Git Revert — Hands-On + + - How is `git revert` different from `git reset`? + + git reset is a History Rewriting tool. It physically moves the HEAD pointer backward as if the commit never happened, effectively deleting or moving commits from the history log. + + git revert is a History Appending tool. It doesn't move the pointer backward; instead, it moves the pointer forward by adding a new commit that performs the inverse operation of an older commit. + - Why is revert considered **safer** than reset for shared branches? + + git revert is safer because it does not alter existing history. + + If we have already pushed our code to a shared repository (like GitHub/GitLab), git reset will break the history for everyone else on our team (because their local copy won't match the new, "shorter" history). git revert is perfectly safe to push, as it simply adds a new change that everyone else can pull without conflicts + - When would you use revert vs reset? + + Use git reset when: + + - You are working only on your local machine and haven't pushed your work to a remote server. + + - You made a mistake in your very recent local commits and want to "clean up" your personal workspace before sharing it. + + Use git revert when: + + - You have already pushed your code to a remote repository. + +- You want to undo a specific change but need to maintain a clear audit trail of who reverted what and when. + +- You are working on a team and need to ensure your "undo" action doesn't disrupt the history of your teammates. + +### Task 3 Git: Reset vs. Revert Comparison + +| Feature | `git reset` | `git revert` | +| :--- | :--- | :--- | +| **What it does** | Moves the branch pointer backward to a previous commit. | Creates a **new** commit that performs the inverse (opposite) of an existing commit. | +| **Removes commit from history?** | **Yes.** It "erases" the commits from the history log. | **No.** It keeps the original commits and adds a new one to the log. | +| **Safe for shared/pushed branches?** | **No.** It rewrites history, which causes conflicts for team members. | **Yes.** Since it adds a new commit, it is safe to push. | +| **When to use** | Use for **private, local changes** that haven't shared/pushed yet. | Use for **public, pushed changes** where we need to undo something safely. | + +--- + +### Task 4: Branching Strategies +# Branching Strategies: Documentation + +## 1. Trunk-Based Development +* **How it works:** Developers merge small, frequent updates directly into a single "trunk" (or `main`) branch, often multiple times a day. Long-lived feature branches are avoided. +* **Flow:** + `[Main/Trunk] <-- (commit/merge) <-- [Developer A]` + `[Main/Trunk] <-- (commit/merge) <-- [Developer B]` +* **Used:** High-performing DevOps teams practicing CI/CD. +* **Pros:** Minimal merge conflicts; high visibility; forces automated testing; enables very fast release cycles. +* **Cons:** Requires high developer discipline; relies heavily on automated test suites; can be daunting for beginners. + +## 2. GitHub Flow +* **How it works:** A simple, branch-based workflow. Create a descriptive branch from `main`, push it, open a Pull Request (PR) for review, and merge it back into `main` once approved. +* **Flow:** + `Main <--- (create branch) --- Feature Branch --- (PR & Merge) ---> Main` +* **Used:** Web applications and SaaS products with only one version in production. +* **Pros:** Simple to learn; keeps `main` deployable; encourages code reviews through PRs. +* **Cons:** Struggles with multiple production versions; if `main` breaks, it blocks deployments. + +## 3. GitFlow +* **How it works:** A strict, structured strategy using multiple long-lived branches: `main` (production), `develop` (integration), `feature/`, `release/`, and `hotfix/`. +* **Flow:** + `Main <--- (Release) <--- Develop <--- Feature Branch` +* **Used:** Complex projects needing multi-version support or strict release gates. +* **Pros:** Highly organized; excellent for complex release schedules; clear separation of concerns. +* **Cons:** High complexity; slower release cycles; potential for "merge hell"; less suitable for CI/CD. + +--- + diff --git a/2026/day-26/day-26-notes.md b/2026/day-26/day-26-notes.md new file mode 100644 index 0000000000..f8af234e4d --- /dev/null +++ b/2026/day-26/day-26-notes.md @@ -0,0 +1,26 @@ +# Day 26: GitHub CLI Observations & Answers + +## Task 1: Authentication +**What authentication methods does `gh` support?** +1. **Web Browser:** Authenticate via a one-time code and a GitHub login window. +2. **Personal Access Token (PAT):** For environments where a browser isn't accessible. +3. **SSH Keys:** `gh` can generate, manage, and upload SSH keys to your account. + +## Task 3: Issues Automation +**How could you use `gh issue` in a script or automation?** +- **CI/CD Failures:** Automatically create an issue if a GitHub Action or Jenkins build fails, attaching the error logs to the body. +- **Dependency Updates:** Script a weekly check for outdated packages and open an issue for the team to review. +- **Bulk Management:** Use a bash `for` loop to add labels or close multiple stale issues at once. + +## Task 4: Pull Requests +**What merge methods does `gh pr merge` support?** +- **Create a merge commit:** Standard merge where all history is preserved. +- **Rebase and merge:** Commits from the PR are rebased onto the main branch. +- **Squash and merge:** All commits from the PR are combined into a single commit on the main branch. + +**How would you review someone else's PR using `gh`?** +- Use `gh pr checkout ` to pull their code locally to test it. +- Use `gh pr diff` to see exactly what lines of code changed. +- Use `gh pr review --approve` or `--comment` to give feedback. + + diff --git a/2026/day-28/day-28-notes.md b/2026/day-28/day-28-notes.md new file mode 100644 index 0000000000..a0f314f1bf --- /dev/null +++ b/2026/day-28/day-28-notes.md @@ -0,0 +1,64 @@ +# 🚀 Day 28: Revision & Mastery Day + +## 📌 Overview +Today marks a critical milestone in my **#90DaysOfDevOps** journey. After 27 days of intensive learning across Linux, Shell Scripting, and Git, I dedicated today to revisiting complex topics, filling knowledge gaps, and solidifying my foundation. + +--- + +## 🛠 Self-Assessment Checklist + +### ✅ Confident In: +* **Linux Fundamentals:** Navigation, file hierarchy, and system troubleshooting (`top`, `df`, `free`). +* **User Management:** Managing permissions with `chmod` and ownership with `chown`. +* **Shell Scripting:** Writing automation scripts using loops, functions, and `crontab`. +* **Git Workflows:** Branching strategies, `git stash`, and remote repository management. + +### 🔍 Re-visited Today: +* **LVM (Logical Volume Management):** Practiced creating Physical Volumes and expanding Volume Groups. +* **Git Reset vs. Revert:** Clarified when to use `--hard` reset vs. creating a safe `revert` commit. +* **Error Handling:** Refined scripts using `set -euo pipefail` for better reliability. + +--- + +## 🎓 Teach It Back: Linux File Permissions 🛡️ + +I’ve summarized file permissions into a simple "VIP Club" analogy for beginners: + +Every file has three groups of people who want access: +1. **Owner (u):** The VIP who created it. +2. **Group (g):** The Staff/Team. +3. **Others (o):** The General Public. + +### The Math of Permissions: +We use numbers to assign "keys" to these groups: +* **Read (4):** View the content. +* **Write (2):** Modify/Delete the content. +* **Execute (1):** Run the file as a program. + +**Example: `chmod 755 script.sh`** +* **7 (4+2+1):** The Owner has full power. +* **5 (4+1):** The Group and Others can read and run it, but **cannot** change it. + +--- + +## 🧠 Quick-Fire Revision (Memory Check) + +| Question | Answer | +| :--- | :--- | +| **Check port 8080?** | `sudo ss -tulpn \| grep 8080` | +| **`git pull` vs `fetch`?** | `fetch` gets updates; `pull` gets updates AND merges them into your code. | +| **`set -e` in scripts?** | Tells the script to stop immediately if any command fails. | +| **LVM Benefit?** | Allows you to resize disk space dynamically without reformatting. | + +--- + +## 📂 Progress Audit +- [✅] All folders from Day 1 to 27 pushed and organized. +- [✅] Shell Scripting Cheat Sheet updated. +- [✅] GitHub Profile README optimized for branding. + +--- +**Learning in Public:** + + +#DevOps #Linux #ShellScripting #Git #90DaysOfDevOps \ No newline at end of file diff --git a/2026/day-29/day-29-docker-basics.md b/2026/day-29/day-29-docker-basics.md new file mode 100644 index 0000000000..3e93565579 --- /dev/null +++ b/2026/day-29/day-29-docker-basics.md @@ -0,0 +1,143 @@ +# Day 29 – Docker Basics + +## Task 1: What is Docker? + +### What is a Container? + +A **container** is a lightweight, isolated environment that packages an application along with all its dependencies, libraries, and configuration files. This ensures the app runs consistently regardless of where it's deployed — your laptop, a server, or the cloud. + +Containers solve the classic *"it works on my machine"* problem by bundling everything the app needs into a single portable unit. + +--- + +### Containers vs Virtual Machines + +| Feature | Virtual Machine (VM) | Docker Container | +|---|---|---| +| Isolation | Full OS per VM | Shares host OS kernel | +| Startup time | Minutes | Seconds | +| Resource usage | Heavy (CPU/RAM per VM) | Lightweight | +| Requires hypervisor? | Yes (e.g. VMware, Hyper-V) | No | +| Portability | Lower | High | + +**Key difference:** VMs need a **hypervisor** that allocates dedicated CPU, RAM, and storage to each virtual machine — this leads to high resource utilisation. Docker containers share the host OS kernel, skipping the hypervisor entirely, making them much faster and more efficient. + +--- + +### Docker Architecture + +- **Client** — the CLI you type commands into (`docker run`) +- **Daemon** — background service that does the actual work +- **Images** — blueprints for containers +- **Containers** — running instances of an image +- **Registry** — Docker Hub, where images are stored and pulled from + +## Task 2: Install Docker & Run hello-world + +### Verify Installation +```powershell +docker --version +docker info +``` + +### Run hello-world +```powershell +docker run hello-world +``` + +**What happened behind the scenes:** +1. Docker client contacted the Docker daemon +2. Daemon checked locally — image `hello-world` not found +3. Daemon pulled the image from Docker Hub +4. Daemon created a new container from the image +5. Container ran and streamed output back to the terminal + +--- + +## Task 3: Run Real Containers + +### Run Nginx (with port mapping) +```powershell +# Detached mode, port mapped, custom name +docker run -d -p 8080:80 --name my-nginx nginx +``` +Access in browser: `http://localhost:8080` + +### Run Ubuntu in Interactive Mode +```powershell +docker run -it ubuntu bash +``` +Explore inside the container: +```bash +ls +cat /etc/os-release +whoami +exit +``` + +### List Running Containers +```powershell +docker ps +``` + +### List All Containers (including stopped) +```powershell +docker ps -a +``` + +### Stop and Remove a Container +```powershell +docker stop my-nginx +docker rm my-nginx +``` + +--- + +## Task 4: Explore Docker Features + +### Detached Mode +```powershell +docker run -d nginx +``` +Runs the container in the background — terminal is free immediately. Without `-d`, the terminal is attached to the container's output. + +### Custom Name + Port Mapping +```powershell +docker run -d -p 9090:80 --name webserver nginx +``` + +### Check Logs +```powershell +docker logs webserver +docker logs -f webserver # Follow live logs +``` + +### Execute Command Inside Running Container +```powershell +docker exec -it webserver bash +``` + +--- + +## Commands Cheat Sheet + +| Command | Description | +|---|---| +| `docker run ` | Create and start a container | +| `docker run -d` | Detached (background) mode | +| `docker run -it` | Interactive + TTY mode | +| `docker run -p host:container` | Port mapping | +| `docker run --name ` | Custom container name | +| `docker ps` | List running containers | +| `docker ps -a` | List all containers | +| `docker stop ` | Stop a container | +| `docker rm ` | Remove a container | +| `docker logs ` | View container logs | +| `docker exec -it bash` | Shell into container | +| `docker images` | List local images | +| `docker pull ` | Pull image from registry | + + +--- + +*Day 29 of #90DaysOfDevOps | #DevOpsKaJosh | #TrainWithShubham* \ No newline at end of file diff --git a/2026/day-29/docker_logs.txt b/2026/day-29/docker_logs.txt new file mode 100644 index 0000000000..1da9246b12 --- /dev/null +++ b/2026/day-29/docker_logs.txt @@ -0,0 +1,832 @@ +PS C:\Users\akash> docker run exec hello-world +Unable to find image 'exec:latest' locally +docker: Error response from daemon: pull access denied for exec, repository does not exist or may require 'docker login' + +Run 'docker run --help' for more information +PS C:\Users\akash> doecke run hello-world +doecke : The term 'doecke' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the +name, or if a path was included, verify that the path is correct and try again. +At line:1 char:1 ++ doecke run hello-world ++ ~~~~~~ + + CategoryInfo : ObjectNotFound: (doecke:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +PS C:\Users\akash> docker run hello-world +Unable to find image 'hello-world:latest' locally +latest: Pulling from library/hello-world +17eec7bbc9d7: Pull complete +ea52d2000f90: Download complete +Digest: sha256:85404b3c53951c3ff5d40de0972b1bb21fafa2e8daa235355baf44f33db9dbdd +Status: Downloaded newer image for hello-world:latest + +Hello from Docker! +This message shows that your installation appears to be working correctly. + +To generate this message, Docker took the following steps: + 1. The Docker client contacted the Docker daemon. + 2. The Docker daemon pulled the "hello-world" image from the Docker Hub. + (amd64) + 3. The Docker daemon created a new container from that image which runs the + executable that produces the output you are currently reading. + 4. The Docker daemon streamed that output to the Docker client, which sent it + to your terminal. + +To try something more ambitious, you can run an Ubuntu container with: + $ docker run -it ubuntu bash + +Share images, automate workflows, and more with a free Docker ID: + https://hub.docker.com/ + +For more examples and ideas, visit: + https://docs.docker.com/get-started/ + +PS C:\Users\akash> docker run nginx +Unable to find image 'nginx:latest' locally +latest: Pulling from library/nginx +9eef040df109: Pull complete +a9d395129dce: Pull complete +18a071c04bd1: Pull complete +79697674b897: Pull complete +206356c42440: Pull complete +df9da45c1db2: Pull complete +75a1d70aee50: Pull complete +d99947bc9177: Download complete +23abb0f9ce55: Download complete +Digest: sha256:bc45d248c4e1d1709321de61566eb2b64d4f0e32765239d66573666be7f13349 +Status: Downloaded newer image for nginx:latest +/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration +/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/ +/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh +10-listen-on-ipv6-by-default.sh: info: Getting the checksum of /etc/nginx/conf.d/default.conf +10-listen-on-ipv6-by-default.sh: info: Enabled listen on IPv6 in /etc/nginx/conf.d/default.conf +/docker-entrypoint.sh: Sourcing /docker-entrypoint.d/15-local-resolvers.envsh +/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh +/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh +/docker-entrypoint.sh: Configuration complete; ready for start up +2026/03/15 11:17:17 [notice] 1#1: using the "epoll" event method +2026/03/15 11:17:17 [notice] 1#1: nginx/1.29.6 +2026/03/15 11:17:17 [notice] 1#1: built by gcc 14.2.0 (Debian 14.2.0-19) +2026/03/15 11:17:17 [notice] 1#1: OS: Linux 6.6.87.2-microsoft-standard-WSL2 +2026/03/15 11:17:17 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576 +2026/03/15 11:17:17 [notice] 1#1: start worker processes +2026/03/15 11:17:17 [notice] 1#1: start worker process 29 +2026/03/15 11:17:17 [notice] 1#1: start worker process 30 +2026/03/15 11:17:17 [notice] 1#1: start worker process 31 +2026/03/15 11:17:17 [notice] 1#1: start worker process 32 +2026/03/15 11:17:17 [notice] 1#1: start worker process 33 +2026/03/15 11:17:17 [notice] 1#1: start worker process 34 +2026/03/15 11:17:17 [notice] 1#1: start worker process 35 +2026/03/15 11:17:17 [notice] 1#1: start worker process 36 +2026/03/15 11:17:17 [notice] 1#1: start worker process 37 +2026/03/15 11:17:17 [notice] 1#1: start worker process 38 +2026/03/15 11:17:17 [notice] 1#1: start worker process 39 +2026/03/15 11:17:17 [notice] 1#1: start worker process 40 +2026/03/15 11:17:59 [notice] 1#1: signal 2 (SIGINT) received, exiting +2026/03/15 11:17:59 [notice] 35#35: exiting +2026/03/15 11:17:59 [notice] 31#31: exiting +2026/03/15 11:17:59 [notice] 32#32: exiting +2026/03/15 11:17:59 [notice] 33#33: exiting +2026/03/15 11:17:59 [notice] 35#35: exit +2026/03/15 11:17:59 [notice] 31#31: exit +2026/03/15 11:17:59 [notice] 33#33: exit +2026/03/15 11:17:59 [notice] 32#32: exit +2026/03/15 11:17:59 [notice] 30#30: exiting +2026/03/15 11:17:59 [notice] 30#30: exit +2026/03/15 11:17:59 [notice] 40#40: exiting +2026/03/15 11:17:59 [notice] 37#37: exiting +2026/03/15 11:17:59 [notice] 36#36: exiting +2026/03/15 11:17:59 [notice] 38#38: exiting +2026/03/15 11:17:59 [notice] 37#37: exit +2026/03/15 11:17:59 [notice] 36#36: exit +2026/03/15 11:17:59 [notice] 38#38: exit +2026/03/15 11:17:59 [notice] 40#40: exit +2026/03/15 11:17:59 [notice] 39#39: exiting +2026/03/15 11:17:59 [notice] 39#39: exit +2026/03/15 11:17:59 [notice] 34#34: exiting +2026/03/15 11:17:59 [notice] 34#34: exit +2026/03/15 11:17:59 [notice] 29#29: exiting +2026/03/15 11:17:59 [notice] 29#29: exit +2026/03/15 11:17:59 [notice] 1#1: signal 17 (SIGCHLD) received from 37 +2026/03/15 11:17:59 [notice] 1#1: worker process 37 exited with code 0 +2026/03/15 11:17:59 [notice] 1#1: worker process 39 exited with code 0 +2026/03/15 11:17:59 [notice] 1#1: signal 29 (SIGIO) received +2026/03/15 11:17:59 [notice] 1#1: signal 17 (SIGCHLD) received from 33 +2026/03/15 11:17:59 [notice] 1#1: worker process 33 exited with code 0 +2026/03/15 11:17:59 [notice] 1#1: signal 29 (SIGIO) received +2026/03/15 11:17:59 [notice] 1#1: signal 17 (SIGCHLD) received from 29 +2026/03/15 11:17:59 [notice] 1#1: worker process 29 exited with code 0 +2026/03/15 11:17:59 [notice] 1#1: worker process 34 exited with code 0 +2026/03/15 11:17:59 [notice] 1#1: signal 29 (SIGIO) received +2026/03/15 11:17:59 [notice] 1#1: signal 17 (SIGCHLD) received from 36 +2026/03/15 11:17:59 [notice] 1#1: worker process 36 exited with code 0 +2026/03/15 11:17:59 [notice] 1#1: signal 29 (SIGIO) received +2026/03/15 11:17:59 [notice] 1#1: signal 17 (SIGCHLD) received from 35 +2026/03/15 11:17:59 [notice] 1#1: worker process 35 exited with code 0 +2026/03/15 11:17:59 [notice] 1#1: worker process 31 exited with code 0 +2026/03/15 11:17:59 [notice] 1#1: signal 29 (SIGIO) received +2026/03/15 11:17:59 [notice] 1#1: signal 17 (SIGCHLD) received from 31 +2026/03/15 11:17:59 [notice] 1#1: signal 17 (SIGCHLD) received from 38 +2026/03/15 11:17:59 [notice] 1#1: worker process 38 exited with code 0 +2026/03/15 11:17:59 [notice] 1#1: signal 29 (SIGIO) received +2026/03/15 11:17:59 [notice] 1#1: signal 17 (SIGCHLD) received from 32 +2026/03/15 11:17:59 [notice] 1#1: worker process 32 exited with code 0 +2026/03/15 11:17:59 [notice] 1#1: signal 29 (SIGIO) received +2026/03/15 11:17:59 [notice] 1#1: signal 17 (SIGCHLD) received from 30 +2026/03/15 11:17:59 [notice] 1#1: worker process 30 exited with code 0 +2026/03/15 11:17:59 [notice] 1#1: worker process 40 exited with code 0 +2026/03/15 11:17:59 [notice] 1#1: exit +PS C:\Users\akash> ps + +Handles NPM(K) PM(K) WS(K) CPU(s) Id SI ProcessName +------- ------ ----- ----- ------ -- -- ----------- + 543 38 40152 14872 0.73 12320 1 AcPowerNotification + 147 9 2624 8128 14876 0 AggregatorHost + 381 21 13120 47840 0.39 7944 1 AppActions + 563 28 47996 59124 0.22 2072 1 ApplicationFrameHost + 1096 62 98700 56860 5116 0 ArmouryCrate.Service + 1360 67 42052 52932 4.73 10112 1 ArmouryCrate.UserSessionHelper + 215 12 2464 8184 4112 0 ArmouryCrateControlInterface + 263 18 3512 3316 0.08 11316 1 ArmourySocketServer + 297 24 15400 5712 0.59 14332 1 ArmourySwAgent + 154 9 1444 1712 0.17 11888 1 AsHotplugCtrl + 848 94 85032 26576 1.97 12612 1 asus_framework + 525 65 1094232 10012 0.52 15588 1 asus_framework + 277 19 18704 11876 0.27 15616 1 asus_framework + 384 26 53556 9148 0.20 15676 1 asus_framework + 485 20 5188 18496 4340 0 AsusAppService + 155 9 1572 5364 3696 0 AsusCertService + 207 11 2136 7172 4696 0 AsusOptimization + 358 17 3408 13660 0.20 5364 1 AsusOptimizationStartupTask + 297 14 2408 7340 0.11 21296 1 AsusOSD + 157 12 1880 6108 4712 0 AsusPTPService + 204 15 2280 4524 0.09 12024 1 ASUSSmartDisplayControl + 482 15 3488 12844 4456 0 AsusSoftwareManager + 409 30 40060 54216 0.47 26796 1 AsusSoftwareManagerAgent + 193 11 2020 6224 4796 0 AsusSwitch + 310 16 4332 15184 5132 0 AsusSystemAnalysis + 224 12 2504 10220 5140 0 AsusSystemDiagnosis + 304 14 7768 22784 1.75 5600 0 audiodg + 472 22 24536 20816 5180 0 AuraWallpaperService + 446 34 13504 8720 0.13 15392 1 backgroundTaskHost + 293 18 7180 18868 0.11 13824 1 browserhost + 385 19 64740 44296 0.22 29304 1 cagent + 161 13 10092 19684 0.11 5220 1 chrome + 697 41 127372 105788 2.70 12292 1 chrome + 383 31 21484 49288 0.45 12980 1 chrome + 245 25 77300 102228 0.50 14276 1 chrome + 170 12 2620 9440 0.02 16484 1 chrome + 243 22 24908 63816 0.17 29708 1 chrome + 136 13 8468 16088 0.02 30624 1 chrome + 1672 69 98628 246640 5.14 30784 1 chrome + 186 18 15260 29672 0.03 30912 1 chrome + 57 5 2976 4800 0.02 4132 1 cmd + 251 15 2840 13392 0.17 4656 1 CMediaAudioControlPanel + 109 7 1112 4696 5272 0 C-MediaAudioService + 559 46 297532 347516 18.23 1900 1 Code + 279 16 12036 58404 0.11 3220 1 Code + 182 19 32960 72900 0.27 3288 1 Code + 1176 57 110116 148480 23.13 3516 1 Code + 259 12 10660 22160 0.02 6276 1 Code + 395 39 108232 101872 1.59 6676 1 Code + 182 20 31852 71264 0.22 10148 1 Code + 279 63 332596 324536 3.22 12432 1 Code + 366 21 16124 39624 0.64 21892 1 Code + 542 62 477300 490580 12.50 22508 1 Code + 343 30 87788 97848 9.23 23860 1 Code + 864 46 289892 220744 10.14 24016 1 Code + 383 30 87892 123820 1.09 26440 1 Code + 192 19 36976 76620 0.16 27856 1 Code + 1303 66 163408 211144 12.17 2648 1 com.docker.backend + 269 16 45068 64284 0.34 15156 1 com.docker.backend + 367 16 31020 40976 0.19 15092 1 com.docker.build + 111 10 1396 7520 0.03 760 1 conhost + 114 10 1404 8600 0.11 4676 1 conhost + 101 9 1380 7268 0.02 4716 1 conhost + 99 8 1180 6924 0.02 10084 1 conhost + 93 8 1260 4472 0.05 10132 1 conhost + 119 10 1628 8888 0.03 12076 1 conhost + 99 8 1452 1792 0.00 13704 1 conhost + 119 10 1624 8880 0.02 16368 1 conhost + 111 10 1400 7440 0.02 22772 1 conhost + 110 8 1192 6448 0.33 26608 1 conhost + 99 8 1176 6252 0.02 29220 1 conhost + 119 10 1740 8892 0.05 30372 1 conhost + 119 10 1640 10104 0.03 30480 1 conhost + 119 10 1628 8896 0.02 30524 1 conhost + 119 10 1632 8884 0.02 30652 1 conhost + 99 8 1180 7556 30668 1 conhost + 119 10 1636 10104 0.02 31256 1 conhost + 120 11 1780 10212 0.03 31312 1 conhost + 119 10 1632 8876 0.03 31688 1 conhost + 1347 141 91072 168784 6.44 24716 1 Copilot + 329 14 25848 10384 8968 0 cowork-svc + 542 29 46308 36696 0.73 13404 1 CrossDeviceResume + 685 68 25192 63608 2.58 18916 1 CrossDeviceService + 796 37 3112 5480 1184 0 csrss + 1152 48 4368 6196 1300 1 csrss + 575 22 7780 27256 1.70 18272 1 ctfmon + 415 20 4492 13620 8480 0 dasHost + 147 8 1480 5052 10076 0 dasHost + 407 18 8412 14864 5404 0 DAX3API + 255 12 3328 8996 8460 1 DAX3API + 275 16 11740 55776 0.34 16940 1 Discord + 1071 47 121052 128324 5.83 24600 1 Discord + 202 13 10672 25904 0.00 24732 1 Discord + 908 47 355520 131928 8.11 24864 1 Discord + 367 21 16516 45528 0.77 24896 1 Discord + 1569 102 326800 310596 17.44 25068 1 Discord + 302 12 3628 11668 0.84 5892 1 DiscordSystemHelper + 296 11 3596 11840 0.52 25108 1 DiscordSystemHelper + 189 36 5400 13440 0.20 12660 1 dllhost + 222 15 3504 11684 0.05 29812 1 dllhost + 1093 56 139776 157700 8.16 11652 1 Docker Desktop + 350 18 13380 37396 0.17 18104 1 Docker Desktop + 696 36 253168 134916 7.11 27880 1 Docker Desktop + 404 31 141608 218248 11.84 29424 1 Docker Desktop + 124 9 25856 25176 0.05 6572 1 docker-sandbox + 1813 78 330396 81452 1972 1 dwm + 4555 128 210968 325548 28.45 12800 1 explorer + 395 28 10192 15076 2.42 16728 1 figma_agent + 443 18 5132 17300 22212 0 FileSyncHelper + 43 8 2252 3376 1632 0 fontdrvhost + 43 9 3632 4252 1636 1 fontdrvhost + 146 12 1796 5760 5504 0 GameSDK + 708 26 8568 32972 10300 0 gamingservices + 338 15 12456 8432 4960 0 gamingservicesnet + 1780 221 198056 228588 16.14 23972 1 Grammarly.Desktop + 494 26 10060 40268 1.31 18188 1 Grammarly.WebUI + 0 0 60 8 0 0 Idle + 194 12 2324 7436 11460 0 Intel_PIE_Service + 136 8 1352 4456 2632 0 IntelCpHDCPSvc + 130 10 1768 5304 1.27 9628 1 ipf_helper + 140 9 1980 4964 5608 0 ipf_uf + 140 13 2604 4584 5588 0 ipfsvc + 145 10 1424 5168 6804 0 jhi_service + 552 26 8272 17980 5820 0 LightingService + 862 35 55404 49380 1.08 19228 1 LockApp + 66 7 1292 2996 1420 0 LsaIso + 2189 29 13400 27160 1444 0 lsass + 0 0 1544 590044 3892 0 Memory Compression + 301 16 7356 28300 3084 0 MidiSrv + 321 27 169300 41004 5920 0 mongod + 495 18 11592 22544 5876 0 MpDefenderCoreService + 158 10 2548 8744 0.00 848 1 msedgewebview2 + 592 33 55264 46804 0.28 2012 1 msedgewebview2 + 170 12 9184 18712 0.06 2964 1 msedgewebview2 + 361 25 13672 36400 0.81 3168 1 msedgewebview2 + 608 33 56960 55976 0.42 5736 1 msedgewebview2 + 240 24 58452 81136 0.16 8568 1 msedgewebview2 + 360 23 14156 20892 0.52 9704 1 msedgewebview2 + 178 12 11560 5580 0.13 10780 1 msedgewebview2 + 1346 55 48256 109700 2.92 11404 1 msedgewebview2 + 298 25 62464 87484 1.56 13812 1 msedgewebview2 + 1501 58 65096 66768 5.06 14340 1 msedgewebview2 + 151 10 2496 10788 0.03 17100 1 msedgewebview2 + 1277 57 53800 134636 2.61 17628 1 msedgewebview2 + 1340 53 42960 114552 1.19 17916 1 msedgewebview2 + 150 10 2548 8544 0.05 17980 1 msedgewebview2 + 151 10 2516 11220 0.03 18364 1 msedgewebview2 + 243 16 9416 10524 0.53 18424 1 msedgewebview2 + 652 34 81048 53248 0.86 18488 1 msedgewebview2 + 379 25 14784 31004 0.47 18628 1 msedgewebview2 + 370 34 76900 119940 2.30 18768 1 msedgewebview2 + 167 11 9744 14228 0.08 18864 1 msedgewebview2 + 166 12 9088 8744 0.06 19528 1 msedgewebview2 + 363 23 13772 28716 0.83 19620 1 msedgewebview2 + 653 33 55828 17700 0.91 20384 1 msedgewebview2 + 833 45 131276 28644 1.64 23168 1 msedgewebview2 + 447 61 329112 1192 16.53 23560 1 msedgewebview2 + 332 20 12788 35588 0.23 25608 1 msedgewebview2 + 164 12 9012 20844 0.06 25652 1 msedgewebview2 + 255 21 21108 42748 0.16 25852 1 msedgewebview2 + 1457 58 46624 78792 3.17 26528 1 msedgewebview2 + 158 10 2560 10984 0.06 26584 1 msedgewebview2 + 369 38 114600 116060 12.02 26700 1 msedgewebview2 + 1235 246 403504 329240 6480 0 MsMpEng + 1201 44 92380 76704 0.81 23880 1 msrdc + 1194 43 92052 76364 0.78 29340 1 msrdc + 1171 59 43056 24072 3.31 23328 1 ms-teams + 1605 64 110544 6892 2.88 24172 1 ms-teams + 53 5 1080 2580 12480 0 NgcIso + 215 34 4364 9720 12364 0 NisSrv + 597 33 55300 51456 8.72 5196 1 nvcontainer + 506 23 11068 21616 1.44 5624 1 nvcontainer + 836 46 14724 31680 5964 0 nvcontainer + 628 30 30216 32092 3352 0 NVDisplay.Container + 753 32 38988 35704 5716 1 NVDisplay.Container + 923 40 25380 45544 9.16 21692 1 NVIDIA Share + 631 30 59540 27972 0.69 22056 1 NVIDIA Share + 374 33 51848 57608 1.09 22568 1 NVIDIA Share + 749 79 39844 14332 1.70 8432 1 NVIDIA Web Helper + 359 15 4088 10232 2.64 8912 1 nvsphelper64 + 708 25 29944 46368 5420 0 OfficeClickToRun + 2749 142 248220 275104 49.33 26172 1 OmenCommandCenterBackground + 617 33 37784 34080 5496 0 OneApp.IGCC.WinService + 1321 70 178208 115404 10.58 23048 1 OneDrive + 605 32 51212 43576 1.02 3732 1 OneDrive.Sync.Service + 210 14 17396 3428 0.03 26760 1 ONENOTEM + 74 9 4188 9040 0.58 16272 1 pet + 211 14 22756 25604 2656 1 podman + 941 70 315168 194860 17.66 26920 1 Podman Desktop + 395 38 53236 88848 0.50 27088 1 Podman Desktop + 330 18 13896 47896 0.20 27132 1 Podman Desktop + 370 42 63668 148020 1.70 27164 1 Podman Desktop + 650 30 62936 82444 0.89 660 1 powershell + 581 31 65872 85280 0.63 12576 1 powershell + 566 30 65984 85192 0.97 26160 1 powershell + 132 11 1344 4808 5980 0 PsiService_2 + 113 8 1244 4400 6012 0 PsiService_2 + 692 46 63248 81552 19708 0 Recorder + 0 25 16248 40896 232 0 Registry + 487 25 9060 15928 6088 0 ROGLiveService + 177 12 2496 7020 5360 0 RstMwService + 136 10 1664 5720 9012 1 rundll32 + 344 19 4896 17260 0.16 11244 1 rundll32 + 222 12 2980 13708 0.11 13492 1 RuntimeBroker + 811 37 11884 51736 1.75 16748 1 RuntimeBroker + 392 19 5648 32992 0.44 18596 1 RuntimeBroker + 556 25 10504 32720 1.02 19484 1 RuntimeBroker + 142 9 2148 7812 0.03 19656 1 RuntimeBroker + 158 10 2424 12004 0.03 21024 1 RuntimeBroker + 167 11 2492 9168 0.03 21360 1 RuntimeBroker + 198 10 2340 12068 0.03 27360 1 RuntimeBroker + 609 25 16308 32748 3.17 9112 1 SDXHelper + 193 10 2384 11728 2916 0 SearchFilterHost + 1470 65 77444 103912 3.78 15048 1 SearchHost + 1191 21 29232 41588 13924 0 SearchIndexer + 378 15 3380 19192 6576 0 SearchProtocolHost + 0 0 176 56120 188 0 Secure System + 592 22 8568 24244 22992 0 SecurityHealthService + 182 11 2060 8936 0.02 22972 1 SecurityHealthSystray + 632 36 19472 27120 5756 0 servicehost + 1135 19 7908 16852 1372 0 services + 769 33 52412 37544 0.67 21500 1 ShellExperienceHost + 525 25 45320 33432 0.41 13036 1 ShellHost + 826 25 8456 38336 3.97 12116 1 sihost + 179 11 2852 12444 0.03 27848 1 smartscreen + 58 4 1284 836 780 0 smss + 488 24 6288 15200 4872 0 spoolsv + 1352 58 105636 134140 4.53 14896 1 StartMenuExperienceHost + 109 11 1420 4668 1304 0 svchost + 120 8 1344 4408 1484 0 svchost + 514 121 2588 7640 1520 0 svchost + 188 39 7876 11020 1536 0 svchost + 1557 33 15152 36276 1596 0 svchost + 498 111 4016 12040 1772 0 svchost + 1929 23 12656 20244 1788 0 svchost + 377 33 4424 15296 1824 0 svchost + 434 15 3836 10392 1828 0 svchost + 194 8 1804 5564 2192 0 svchost + 368 17 3992 9252 2248 0 svchost + 403 20 7280 14740 2340 0 svchost + 272 13 3000 7180 2356 0 svchost + 199 11 2568 10152 2384 0 svchost + 329 10 2476 10684 2396 0 svchost + 262 14 3448 9952 2404 0 svchost + 491 14 3396 7732 2676 0 svchost + 334 14 3912 20724 2716 0 svchost + 135 13 1792 4892 2768 0 svchost + 230 12 2448 7616 2808 0 svchost + 194 13 2600 9332 2820 0 svchost + 1423 25 7768 19000 2844 0 svchost + 491 16 3524 9912 3104 0 svchost + 191 14 2180 9592 3260 0 svchost + 216 11 2172 7676 3444 0 svchost + 406 13 4724 12400 3616 0 svchost + 364 14 4264 12052 3652 0 svchost + 522 15 25904 24740 3688 0 svchost + 469 30 6008 20396 3816 0 svchost + 128 8 1524 6392 3864 0 svchost + 329 16 3452 11700 3872 0 svchost + 185 11 2316 7868 3960 0 svchost + 390 9 1576 5088 3968 0 svchost + 242 14 3332 18896 3976 0 svchost + 142 9 1668 6140 4052 0 svchost + 522 36 23236 31176 4168 0 svchost + 548 12 3636 8916 4224 0 svchost + 191 12 2096 9228 4232 0 svchost + 171 11 2248 7624 4284 0 svchost + 781 16 5396 17944 4392 0 svchost + 203 10 2016 8100 4440 0 svchost + 177 12 1716 6312 4508 0 svchost + 168 10 1820 6036 4564 0 svchost + 583 28 7448 19512 4632 0 svchost + 399 20 4824 14364 4688 0 svchost + 363 11 22976 31408 4824 0 svchost + 190 12 2192 6912 5032 0 svchost + 501 18 6552 25888 5040 0 svchost + 761 32 30624 43256 5396 0 svchost + 395 21 19848 29168 5428 0 svchost + 399 19 3164 10160 5552 0 svchost + 225 13 2724 8672 5628 0 svchost + 515 24 6244 36480 6104 0 svchost + 149 8 1400 4752 6352 0 svchost + 810 18 11508 21808 6440 0 svchost + 434 20 4944 21244 6508 0 svchost + 419 23 3668 16952 8836 0 svchost + 196 16 7268 13308 9544 0 svchost + 607 35 33784 39252 9656 0 svchost + 273 21 2624 7472 10120 0 svchost + 255 13 13060 24132 10208 0 svchost + 136 9 1840 6524 10656 0 svchost + 456 18 7968 26584 1.98 10808 1 svchost + 353 17 5948 22752 10908 0 svchost + 210 13 2828 10012 11424 0 svchost + 251 14 2872 12576 11684 0 svchost + 170 10 2320 7388 0.14 12148 1 svchost + 546 20 12036 31224 1.31 12164 1 svchost + 106 7 1296 4880 0.02 12232 1 svchost + 250 12 2488 13344 12556 0 svchost + 161 20 1964 6396 12808 0 svchost + 163 11 2024 6464 12856 0 svchost + 466 25 6128 19660 12936 0 svchost + 346 16 3892 16308 13244 0 svchost + 263 12 2732 8676 13520 0 svchost + 89 6 1084 3812 13956 0 svchost + 148 9 1896 14464 0.02 14660 1 svchost + 808 27 11200 41884 14672 0 svchost + 197 10 2584 10340 14936 0 svchost + 872 83 26432 49532 15108 0 svchost + 142 10 2000 9124 15536 0 svchost + 359 15 5028 11372 15724 0 svchost + 386 19 4832 21088 15952 0 svchost + 282 13 3936 16836 0.20 16116 1 svchost + 359 17 4460 21948 16168 0 svchost + 289 16 4296 15852 0.11 16768 1 svchost + 151 9 3852 12164 17288 0 svchost + 212 11 2248 7644 17792 0 svchost + 143 10 1716 6136 17816 0 svchost + 157 42 1828 9764 17884 0 svchost + 283 17 3052 9204 18248 0 svchost + 209 12 2736 10552 0.05 20048 1 svchost + 438 12 3392 12308 21344 0 svchost + 226 14 2060 11228 23952 0 svchost + 179 9 2072 10060 24164 0 svchost + 263 13 2920 16016 0.05 24616 1 svchost + 572 24 10676 30012 27572 0 svchost + 270 19 27376 31480 27888 0 svchost + 353 15 4160 17084 28048 0 svchost + 235 14 3340 15616 28548 0 svchost + 277 10 2408 11672 31240 0 svchost + 8611 0 56 140 4 0 System + 637 38 43584 17232 1.56 12036 1 SystemOptimizer + 1724 74 146708 11480 4.45 25448 1 SystemSettings + 301 51 11868 20204 1.83 11432 1 taskhostw + 535 29 18432 15388 6320 0 TeamViewer_Service + 1563 89 125640 135096 2.94 22524 1 TextInputHost + 589 29 12532 27960 2.91 8340 1 uihost + 132 9 1520 9148 27148 0 unsecapp + 207 14 3112 15368 9860 0 updater + 195 14 3232 15128 0.03 14400 1 updater + 179 14 3100 14652 0.02 19452 1 updater + 173 13 2976 13696 22464 0 updater + 221 15 3432 16508 0.02 29960 1 updater + 173 13 2964 12112 30596 0 updater + 179 14 3064 14608 0.03 30892 1 updater + 252 16 3644 17392 31224 0 updater + 154 11 2116 11632 0.06 1588 1 UserOOBEBroker + 221 12 2828 14268 27772 0 vmcompute + 0 0 2483456 2464912 28036 0 vmmemWSL + 824 82 18008 29968 14956 0 vmwp + 1650 138 102872 215604 5.31 18580 1 WhatsApp.Root + 684 29 10348 38772 1.00 16660 1 Widgets + 313 19 5064 15396 0.67 17140 1 WidgetService + 163 12 1624 5088 1292 0 wininit + 288 1293 2764 10504 1400 1 winlogon + 193 10 2268 7016 11020 0 wlanext + 214 14 4496 12172 8936 0 WmiPrvSE + 658 23 17924 36816 8940 0 WmiPrvSE + 281 15 3124 9944 6384 0 WMIRegistrationService + 111 6 1132 6892 0.02 29436 1 wsl + 111 6 1124 6884 0.02 30172 1 wsl + 111 6 1112 6880 0.02 30184 1 wsl + 216 12 2440 13080 0.05 30264 1 wsl + 214 12 2420 12800 1.50 30272 1 wsl + 214 13 2420 12788 0.06 31100 1 wsl + 215 12 2416 13644 0.02 31616 1 wsl + 111 6 1124 7572 0.00 31628 1 wsl + 198 11 2124 12828 0.02 21436 1 wslhost + 203 11 2200 12544 0.05 30376 1 wslhost + 220 19 2352 12640 0.05 30492 1 wslhost + 201 11 2184 12140 0.06 30580 1 wslhost + 198 11 2136 11972 0.03 30612 1 wslhost + 198 11 2120 11952 0.05 30636 1 wslhost + 220 19 2480 12756 0.05 31668 1 wslhost + 198 11 2108 12820 0.03 31700 1 wslhost + 175 11 1984 10640 0.02 30068 1 wslrelay + 677 105 7312 27492 6448 0 wslservice + 480 28 8400 14080 1724 0 WUDFHost + 281 15 4396 9384 1912 0 WUDFHost + 284 14 2576 7216 4084 0 WUDFHost + + +PS C:\Users\akash> docke runame +docke : The term 'docke' is not recognized as the name of a cmdlet, function, script file, +or operable program. Check the spelling of the name, or if a path was included, verify that +the path is correct and try again. +At line:1 char:1 ++ docke runame ++ ~~~~~ + + CategoryInfo : ObjectNotFound: (docke:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +PS C:\Users\akash> uname +uname : The term 'uname' is not recognized as the name of a cmdlet, function, script file, +or operable program. Check the spelling of the name, or if a path was included, verify that +the path is correct and try again. +At line:1 char:1 ++ uname ++ ~~~~~ + + CategoryInfo : ObjectNotFound: (uname:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +PS C:\Users\akash>hostname +Asus +PS C:\Users\akash> docke run -it ubuntu +docke : The term 'docke' is not recognized as the name of a cmdlet, function, script file, +or operable program. Check the spelling of the name, or if a path was included, verify that +the path is correct and try again. +At line:1 char:1 ++ docke run -it ubuntu ++ ~~~~~ + + CategoryInfo : ObjectNotFound: (docke:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +PS C:\Users\akash>docker run -it ubuntu +Unable to find image 'ubuntu:latest' locally +latest: Pulling from library/ubuntu +01d7766a2e4a: Pull complete +fd8cda969ed2: Download complete +Digest: sha256:d1e2e92c075e5ca139d51a140fff46f84315c0fdce203eab2807c7e495eff4f9 +Status: Downloaded newer image for ubuntu:latest +root@479aab304f96:/# ls +bin dev home lib64 mnt proc run srv tmp var +boot etc lib media opt root sbin sys usr +root@479aab304f96:/#^C +root@479aab304f96:/# +root@479aab304f96:/#^C +root@479aab304f96:/# +PS C:\Users\akash> docker ps +CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES +479aab304f96 ubuntu "/bin/bash" 32 seconds ago Up 30 seconds ecstatic_sinoussi +PS C:\Users\akash> service start nginx +Get-Service : A positional parameter cannot be found that accepts argument 'nginx'. +At line:1 char:1 ++ service start nginx ++ ~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : InvalidArgument: (:) [Get-Service], ParameterBindingException + + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.PowerShell.Commands.GetS + erviceCommand + +PS C:\Users\akash> +PS C:\Users\akash>service start Nginx +Get-Service : A positional parameter cannot be found that accepts argument 'Nginx'. +At line:1 char:1 ++ service start Nginx ++ ~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : InvalidArgument: (:) [Get-Service], ParameterBindingException + + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.PowerShell.Commands.GetS + erviceCommand + +PS C:\Users\akash>ssystemctl start Nginx +ssystemctl : The term 'ssystemctl' is not recognized as the name of a cmdlet, function, +script file, or operable program. Check the spelling of the name, or if a path was included, +verify that the path is correct and try again. +At line:1 char:1 ++ ssystemctl start Nginx ++ ~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (ssystemctl:String) [], CommandNotFoundExcepti + on + + FullyQualifiedErrorId : CommandNotFoundException + +PS C:\Users\akash>systemctl start Nginx +systemctl : The term 'systemctl' is not recognized as the name of a cmdlet, function, script +file, or operable program. Check the spelling of the name, or if a path was included, verify +that the path is correct and try again. +At line:1 char:1 ++ systemctl start Nginx ++ ~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (systemctl:String) [], CommandNotFoundExceptio + n + + FullyQualifiedErrorId : CommandNotFoundException + +PS C:\Users\akash>systemctl start Nginx +systemctl : The term 'systemctl' is not recognized as the name of a cmdlet, function, script +file, or operable program. Check the spelling of the name, or if a path was included, verify +that the path is correct and try again. +At line:1 char:1 ++ systemctl start Nginx ++ ~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (systemctl:String) [], CommandNotFoundExceptio + n + + FullyQualifiedErrorId : CommandNotFoundException + +PS C:\Users\akash>systemstart Nginx^C +PS C:\Users\akash> docker stop ^C +PS C:\Users\akash> docker stop 479aab304f96 +479aab304f96 +PS C:\Users\akash> docker rm 479aab304f96 +479aab304f96 +PS C:\Users\akash> docke run -itd ubuntu +docke : The term 'docke' is not recognized as the name of a cmdlet, function, script file, +or operable program. Check the spelling of the name, or if a path was included, verify that +the path is correct and try again. +At line:1 char:1 ++ docke run -itd ubuntu ++ ~~~~~ + + CategoryInfo : ObjectNotFound: (docke:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +PS C:\Users\akash>docker run -itd ubuntu +ffedb5e20ba670e64b3b636b4f271a4f8c5d4ffb62b6e166f03f1f84638d42b6 +PS C:\Users\akash> docker run Nginx +docker: invalid reference format: repository name (library/Nginx) must be lowercase + +Run 'docker run --help' for more information +PS C:\Users\akash> docker run nginx +/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration +/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/ +/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh +10-listen-on-ipv6-by-default.sh: info: Getting the checksum of /etc/nginx/conf.d/default.conf +10-listen-on-ipv6-by-default.sh: info: Enabled listen on IPv6 in /etc/nginx/conf.d/default.conf +/docker-entrypoint.sh: Sourcing /docker-entrypoint.d/15-local-resolvers.envsh +/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh +/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh +/docker-entrypoint.sh: Configuration complete; ready for start up +2026/03/15 11:21:53 [notice] 1#1: using the "epoll" event method +2026/03/15 11:21:53 [notice] 1#1: nginx/1.29.6 +2026/03/15 11:21:53 [notice] 1#1: built by gcc 14.2.0 (Debian 14.2.0-19) +2026/03/15 11:21:53 [notice] 1#1: OS: Linux 6.6.87.2-microsoft-standard-WSL2 +2026/03/15 11:21:53 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576 +2026/03/15 11:21:53 [notice] 1#1: start worker processes +2026/03/15 11:21:53 [notice] 1#1: start worker process 29 +2026/03/15 11:21:53 [notice] 1#1: start worker process 30 +2026/03/15 11:21:53 [notice] 1#1: start worker process 31 +2026/03/15 11:21:53 [notice] 1#1: start worker process 32 +2026/03/15 11:21:53 [notice] 1#1: start worker process 33 +2026/03/15 11:21:53 [notice] 1#1: start worker process 34 +2026/03/15 11:21:53 [notice] 1#1: start worker process 35 +2026/03/15 11:21:53 [notice] 1#1: start worker process 36 +2026/03/15 11:21:53 [notice] 1#1: start worker process 37 +2026/03/15 11:21:53 [notice] 1#1: start worker process 38 +2026/03/15 11:21:53 [notice] 1#1: start worker process 39 +2026/03/15 11:21:53 [notice] 1#1: start worker process 40 +2026/03/15 11:21:58 [notice] 1#1: signal 2 (SIGINT) received, exiting +2026/03/15 11:21:58 [notice] 29#29: exiting +2026/03/15 11:21:58 [notice] 30#30: exiting +2026/03/15 11:21:58 [notice] 31#31: exiting +2026/03/15 11:21:58 [notice] 31#31: exit +2026/03/15 11:21:58 [notice] 32#32: exiting +2026/03/15 11:21:58 [notice] 32#32: exit +2026/03/15 11:21:58 [notice] 36#36: exiting +2026/03/15 11:21:58 [notice] 35#35: exiting +2026/03/15 11:21:58 [notice] 36#36: exit +2026/03/15 11:21:58 [notice] 37#37: exiting +2026/03/15 11:21:58 [notice] 37#37: exit +2026/03/15 11:21:58 [notice] 38#38: exiting +2026/03/15 11:21:58 [notice] 38#38: exit +2026/03/15 11:21:58 [notice] 29#29: exit +2026/03/15 11:21:58 [notice] 30#30: exit +2026/03/15 11:21:58 [notice] 39#39: exiting +2026/03/15 11:21:58 [notice] 39#39: exit +2026/03/15 11:21:58 [notice] 34#34: exiting +2026/03/15 11:21:58 [notice] 34#34: exit +2026/03/15 11:21:58 [notice] 33#33: exiting +2026/03/15 11:21:58 [notice] 35#35: exit +2026/03/15 11:21:58 [notice] 40#40: exiting +2026/03/15 11:21:58 [notice] 40#40: exit +2026/03/15 11:21:58 [notice] 33#33: exit +2026/03/15 11:21:58 [notice] 1#1: signal 17 (SIGCHLD) received from 38 +2026/03/15 11:21:58 [notice] 1#1: worker process 38 exited with code 0 +2026/03/15 11:21:58 [notice] 1#1: signal 29 (SIGIO) received +2026/03/15 11:21:58 [notice] 1#1: signal 17 (SIGCHLD) received from 31 +2026/03/15 11:21:58 [notice] 1#1: worker process 31 exited with code 0 +2026/03/15 11:21:58 [notice] 1#1: worker process 33 exited with code 0 +2026/03/15 11:21:58 [notice] 1#1: worker process 35 exited with code 0 +2026/03/15 11:21:58 [notice] 1#1: worker process 39 exited with code 0 +2026/03/15 11:21:58 [notice] 1#1: signal 29 (SIGIO) received +2026/03/15 11:21:58 [notice] 1#1: signal 17 (SIGCHLD) received from 34 +2026/03/15 11:21:58 [notice] 1#1: worker process 34 exited with code 0 +2026/03/15 11:21:58 [notice] 1#1: worker process 40 exited with code 0 +2026/03/15 11:21:58 [notice] 1#1: signal 29 (SIGIO) received +2026/03/15 11:21:58 [notice] 1#1: signal 17 (SIGCHLD) received from 32 +2026/03/15 11:21:58 [notice] 1#1: worker process 32 exited with code 0 +2026/03/15 11:21:58 [notice] 1#1: signal 29 (SIGIO) received +2026/03/15 11:21:58 [notice] 1#1: signal 17 (SIGCHLD) received from 30 +2026/03/15 11:21:58 [notice] 1#1: worker process 29 exited with code 0 +2026/03/15 11:21:58 [notice] 1#1: worker process 30 exited with code 0 +2026/03/15 11:21:58 [notice] 1#1: worker process 36 exited with code 0 +2026/03/15 11:21:58 [notice] 1#1: signal 29 (SIGIO) received +2026/03/15 11:21:58 [notice] 1#1: signal 17 (SIGCHLD) received from 29 +2026/03/15 11:21:58 [notice] 1#1: signal 17 (SIGCHLD) received from 37 +2026/03/15 11:21:58 [notice] 1#1: worker process 37 exited with code 0 +2026/03/15 11:21:58 [notice] 1#1: exit +PS C:\Users\akash> docker install nginx +docker: unknown command: docker install + +Run 'docker --help' for more information +PS C:\Users\akash> docker run -d -p 80:80 nginx +45542fcec9d84b5b244ab5a7b5c26ab2ecf03a94bad5523bba8809e1e09c35bf +PS C:\Users\akash> docer ps +docer : The term 'docer' is not recognized as the name of a cmdlet, function, script file, +or operable program. Check the spelling of the name, or if a path was included, verify that +the path is correct and try again. +At line:1 char:1 ++ docer ps ++ ~~~~~ + + CategoryInfo : ObjectNotFound: (docer:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +PS C:\Users\akash>docker ps +CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES +45542fcec9d8 nginx "/docker-entrypoint.…" 13 seconds ago Up 12 seconds 0.0.0.0:80->80/tcp, [::]:80->80/tcp charming_grothendieck +ffedb5e20ba6 ubuntu "/bin/bash" About a minute ago Up About a minute exciting_antonelli +PS C:\Users\akash> docker run -d -p --name niginx_demo 80:80 nginx +docker: invalid containerPort: --name + +Run 'docker run --help' for more information +PS C:\Users\akash> docker run -d --name niginx_demo -p 80:80 nginx +1edc1369cd3f2863dbe592397e3aa00e55a0a881eaf7408f728196235d177a4e +docker: Error response from daemon: failed to set up container networking: driver failed programming external connectivity on endpoint niginx_demo (5519fbbf4eeb4d02c326d685c1d21b587e139583ca31558dceddac1c932e6f0c): Bind for 0.0.0.0:80 failed: port is already allocated + +Run 'docker run --help' for more information +PS C:\Users\akash> docker stop nginx +Error response from daemon: No such container: nginx +PS C:\Users\akash> docker stop ^C +PS C:\Users\akash>docker stop ffedb5e20ba6 +ffedb5e20ba6 +PS C:\Users\akash> docker rm ffedb5e20ba6 +ffedb5e20ba6 +PS C:\Users\akash> docker run -d --name niginx_demo -p 80:80 nginx +docker: Error response from daemon: Conflict. The container name "/niginx_demo" is already in use by container "1edc1369cd3f2863dbe592397e3aa00e55a0a881eaf7408f728196235d177a4e". You have to remove (or rename) that container to be able to reuse that name. + +Run 'docker run --help' for more information +PS C:\Users\akash> docker ps +CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES +45542fcec9d8 nginx "/docker-entrypoint.…" 2 minutes ago Up 2 minutes 0.0.0.0:80->80/tcp, [::]:80->80/tcp charming_grothendieck +PS C:\Users\akash> docker rm ^C +PS C:\Users\akash> docker rm 45542fcec9d8 +Error response from daemon: cannot remove container "45542fcec9d8": container is running: stop the container before removing or force remove +PS C:\Users\akash> docker stop 45542fcec9d8 +45542fcec9d8 +PS C:\Users\akash> docker rm 45542fcec9d8 +45542fcec9d8 +PS C:\Users\akash> docker ps +CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES +PS C:\Users\akash> docker run -d --name niginx_demo -p 80:80 nginx +docker: Error response from daemon: Conflict. The container name "/niginx_demo" is already in use by container "1edc1369cd3f2863dbe592397e3aa00e55a0a881eaf7408f728196235d177a4e". You have to remove (or rename) that container to be able to reuse that name. + +Run 'docker run --help' for more information +PS C:\Users\akash> docker ps +CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES +PS C:\Users\akash> docker ps +CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES +PS C:\Users\akash>docker run -d --name niginx_demo1 -p 80:80 nginx +f76d44a402d1200673715bdb27bb4bd2dce2142690272f29a2cc4591cb07bce1 +PS C:\Users\akash> docker ps +CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES +f76d44a402d1 nginx "/docker-entrypoint.…" 4 seconds ago Up 2 seconds 0.0.0.0:80->80/tcp, [::]:80->80/tcp niginx_demo1 +PS C:\Users\akash> docker logs^C +PS C:\Users\akash> docker logs f76d44a402d1 +/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration +/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/ +/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh +10-listen-on-ipv6-by-default.sh: info: Getting the checksum of /etc/nginx/conf.d/default.conf +10-listen-on-ipv6-by-default.sh: info: Enabled listen on IPv6 in /etc/nginx/conf.d/default.conf +/docker-entrypoint.sh: Sourcing /docker-entrypoint.d/15-local-resolvers.envsh +/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh +/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh +/docker-entrypoint.sh: Configuration complete; ready for start up +2026/03/15 11:26:17 [notice] 1#1: using the "epoll" event method +2026/03/15 11:26:17 [notice] 1#1: nginx/1.29.6 +2026/03/15 11:26:17 [notice] 1#1: built by gcc 14.2.0 (Debian 14.2.0-19) +2026/03/15 11:26:17 [notice] 1#1: OS: Linux 6.6.87.2-microsoft-standard-WSL2 +2026/03/15 11:26:17 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576 +2026/03/15 11:26:17 [notice] 1#1: start worker processes +2026/03/15 11:26:17 [notice] 1#1: start worker process 28 +2026/03/15 11:26:17 [notice] 1#1: start worker process 29 +2026/03/15 11:26:17 [notice] 1#1: start worker process 30 +2026/03/15 11:26:17 [notice] 1#1: start worker process 31 +2026/03/15 11:26:17 [notice] 1#1: start worker process 32 +2026/03/15 11:26:17 [notice] 1#1: start worker process 33 +2026/03/15 11:26:17 [notice] 1#1: start worker process 34 +2026/03/15 11:26:17 [notice] 1#1: start worker process 35 +2026/03/15 11:26:17 [notice] 1#1: start worker process 36 +2026/03/15 11:26:17 [notice] 1#1: start worker process 37 +2026/03/15 11:26:17 [notice] 1#1: start worker process 38 +2026/03/15 11:26:17 [notice] 1#1: start worker process 39 +PS C:\Users\akash> docker exec -it ^C +PS C:\Users\akash> docker exec -t f76d44a402d1 +docker: 'docker exec' requires at least 2 arguments + +Usage: docker exec [OPTIONS] CONTAINER COMMAND [ARG...] + +See 'docker exec --help' for more information +PS C:\Users\akash> docker exec -it f76d44a402d1 +docker: 'docker exec' requires at least 2 arguments + +Usage: docker exec [OPTIONS] CONTAINER COMMAND [ARG...] + +See 'docker exec --help' for more information +PS C:\Users\akash> \ No newline at end of file