#1 2007-03-16 20:03:34
- Jirka
- Member
- From: Czech Rep.
- Registered: 2007-03-13
- Posts: 21
Error 23: Error while parsing number (solved)
Hi,
I have an old notebook which has no cd-rom. So I have joined the notebook’s disc via USB to my computer and I’m trying to install the system from CD-ROM on my PC.
But may be I have a mess in hda, hdb, sdb etc.
When I have installed the system already three times, I get the error while Archlinux is booting:
Error 23: Error while parsing number
What I have done wrong?
Thank you.
Last edited by Jirka (2007-03-17 20:04:37)
Linux is like a teepee. No Windows, no Gates, Apache inside!!!
#2 2007-03-16 20:06:48
- phrakture
- Arch Overlord
- From: behind you
- Registered: 2003-10-29
- Posts: 7,879
- Website
Re: Error 23: Error while parsing number (solved)
Looks like a boot loader error, can you post the contents of your boot loader (grub or lilo) config?
#3 2007-03-16 20:23:57
- Jirka
- Member
- From: Czech Rep.
- Registered: 2007-03-13
- Posts: 21
Re: Error 23: Error while parsing number (solved)
phrakture wrote:
Looks like a boot loader error, can you post the contents of your boot loader (grub or lilo) config?
ok, which file? I have found these:
grub-terminfo
grub-set-default
grub-md5-crypt
grub-install
grub
Linux is like a teepee. No Windows, no Gates, Apache inside!!!
#4 2007-03-16 21:13:28
- Jirka
- Member
- From: Czech Rep.
- Registered: 2007-03-13
- Posts: 21
Re: Error 23: Error while parsing number (solved)
phrakture wrote:
Looks like a boot loader error, can you post the contents of your boot loader (grub or lilo) config?
I have now readed documentation and there is written, that naming schema of GRUB is different of UNIX naming. That means, that discs are hd0, hd1, etc.
Conversion table is:
/dev/fd0 (fd0)
/dev/hda (hd0)
/dev/hdb2 (hd1,1)
/dev/hda3 (hd0,2)
But what if the disc on which I install the system is connected via USB?
Last edited by Jirka (2007-03-16 23:02:28)
Linux is like a teepee. No Windows, no Gates, Apache inside!!!
#5 2007-03-16 23:01:49
- fishonadish
- Member
- Registered: 2006-11-04
- Posts: 125
Re: Error 23: Error while parsing number (solved)
USB disks will be /dev/sda etc to Linux (and therefore may be separate from internal drives that are labelled hda etc), but Grub counts them all as hd0,hd1 etc.
Grub will see the drives in the order the BIOS boots them, I think.
In my case I have Grub on the MBR of my external USB hd and BIOS set to boot first the external drive, then the internal HD. That means the USB drive is hd0 and the internal HD is hd1 as far as grub is concerned.
Alternatively, if Grub were on the MBR of my internal drive and BIOS set to boot that first, then the USB drive would be hd1, and the internal hd0.
Also, if you’re booting from USB you’ll need to have the USB hook in your mkinitcpio.
I also need to use ‘rootdelay=[number]’ (8 in my case) so that it’ll wait for my USB device to appear before trying to mount the root partition from it — I don’t know if this is always needed or if my USB HD is particularly slow, but bear it in mind if you get a kernel panic because the root device can’t be found.
#6 2007-03-17 07:36:43
- Jirka
- Member
- From: Czech Rep.
- Registered: 2007-03-13
- Posts: 21
Re: Error 23: Error while parsing number (solved)
fishonadish wrote:
USB disks will be /dev/sda etc to Linux (and therefore may be separate from internal drives that are labelled hda etc), but Grub counts them all as hd0,hd1 etc.
Grub will see the drives in the order the BIOS boots them, I think.
In my case I have Grub on the MBR of my external USB hd and BIOS set to boot first the external drive, then the internal HD. That means the USB drive is hd0 and the internal HD is hd1 as far as grub is concerned.
Alternatively, if Grub were on the MBR of my internal drive and BIOS set to boot that first, then the USB drive would be hd1, and the internal hd0.Also, if you’re booting from USB you’ll need to have the USB hook in your mkinitcpio.
I also need to use ‘rootdelay=[number]’ (8 in my case) so that it’ll wait for my USB device to appear before trying to mount the root partition from it — I don’t know if this is always needed or if my USB HD is particularly slow, but bear it in mind if you get a kernel panic because the root device can’t be found.
Ok, thanks. And how GRUB counts partitions? I have it on disc via USB and partitions are:
1. partition — boot
2. partition — swap
3. partition — root and others….
So which number should I use? Because there is it in format (hd0,1), (hd2,0) etc.
And what depends ‘rootdelay=[number]’ (in your case 8)? Which number should I use?
Many thanks
Linux is like a teepee. No Windows, no Gates, Apache inside!!!
#7 2007-03-17 09:23:15
- fishonadish
- Member
- Registered: 2006-11-04
- Posts: 125
Re: Error 23: Error while parsing number (solved)
Grub starts from 0, whereas linux devices name partitions from 1.
Thus /dev/hda1 = (hd0,0)
In your case it’ll be (hd#,0) because your boot partition is the first partition.
The rootdelay thing might not be necessary — it’s just in case your devices don’t appear in time when you boot. The number is the number of seconds to wait for the device, so you want it to be as low as possible. So, 8 works for me, but any lower and I get a kernel panic because the USB device hasn’t appeared yet. I wouldn’t worry about rootdelay until you have your grub entries sorted out and tested without it first, though.
More importantly, be sure you have the USB hook in your initcpio, because it definitely won’t boot without it.
#8 2007-03-17 13:50:20
- Jirka
- Member
- From: Czech Rep.
- Registered: 2007-03-13
- Posts: 21
Re: Error 23: Error while parsing number (solved)
I’m on the good way with your help!
Now I got Kernel panic, because root directory was not found, but I have at least been booted!
I have a two stupid questions, which could solve it (I really hope so!):
on which partition should I bootloader install? I know, I it’s a stupid rookie question, but I have it install on my first partition where is the boot (I have it set up in the configuration of bootloader install). Is it right?
And the second question is: right before install it asks where to install and gives this possibilities:
/dev/sda
/dev/sda1
/dev/sda2
/dev/sda3
and my partitions are:
1. boot
2. swap
3. root and others
Thank you all
Linux is like a teepee. No Windows, no Gates, Apache inside!!!
#9 2007-03-17 19:52:00
- fishonadish
- Member
- Registered: 2006-11-04
- Posts: 125
Re: Error 23: Error while parsing number (solved)
If you’re getting as far as a kernel panic, then you’re getting past the bootloader, so where ever you have it now is fine, if you’re happy with it.
Can you post the contents of your /boot/grub/menu.lst file? Might be able to see why you’re getting a kernel panic.
Last edited by fishonadish (2007-03-17 20:00:19)
#10 2007-03-17 20:04:20
- Jirka
- Member
- From: Czech Rep.
- Registered: 2007-03-13
- Posts: 21
Re: Error 23: Error while parsing number (solved)
fishonadish wrote:
If you’re getting as far as a kernel panic, then you’re getting past the bootloader, so where ever you have it now is fine, if you’re happy with it.
Can you post the contents of your /boot/grub/menu.lst file? Might be able to see why you’re getting a kernel panic.
I have used the LILO instead the GRUB, so it’s solved now.
But I thank you all.
Linux is like a teepee. No Windows, no Gates, Apache inside!!!
Любимые цитаты юниксоида
- Две вещи, изменившие миp, были созданы в Беpкли: LSD и Unix. Вряд ли это случайное совпадение // Jeremy S. Anderson
- Linux is like a wigwam — no windows, no gates, apache inside.
- An NT box can be administered by an idiot, and usually is.
- Don’t drive faster than your angel can fly.
- Contrary to popular belief, Unix is user friendly. It just happens to be very selective about who it decides to make friends with.
- Unix is very simple, but it takes a genius to understand the simplicity
- The bus station is the place where the bus stops. The train station is the place where the train stops. So if I have a workstation…
- All computers wait at the same speed.
- Great minds discuss ideas, Average minds discuss events, Small minds discuss people.
- /var/log/messages: «Warning! /var running out of spac»
- War is God’s way of teaching geography to Americans
- Being a System Administrator is like being the phone company. Nobody ever calls up to say «You know, this thing works great. Thanks!»
- IF YOU CAN’T SSH TO IT, IT’S NOT THERE, GOT THAT?
- Any setuid root program that does an exec() somewhere is just a less user friendly version of su.
- All programs are poems, it’s just that not all programmers are poets.
- It is simple to make things. It is hard to make things simple.
Junior-а пустили на production по SSH под root-ом
Posted in Цитатник.
– 05.08.2009
[SOLVED]Apache problem
- Reply with quote
[SOLVED]Apache problem
Probably after lust upgrade (i dont know exactly is it true or not) my http server does not want to start. I am not expert in that so can anybody help me?
My system is M4 32 bit
Logs below. If any other info will be necessery, I send it ASAP:
- Code: Select all
[root@mackowiak ~]# service httpd restart
Redirecting to /bin/systemctl restart httpd.service
Job for httpd.service failed. See 'systemctl status httpd.service' and 'journalctl -xn' for details.
[root@mackowiak ~]# systemctl status httpd.service
httpd.service - The Apache HTTP Server
Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled)
Active: failed (Result: signal) since pon 2015-03-16 10:34:41 CET; 16s ago
Process: 9029 ExecStop=/usr/bin/kill -WINCH ${MAINPID} (code=exited, status=0/SUCCESS)
Process: 9028 ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND (code=killed, signal=SEGV)
Main PID: 9028 (code=killed, signal=SEGV)mar 16 10:34:41 mackowiak.no-ip.org systemd[1]: httpd.service: main process exited, code=killed, status=11/SEGV
mar 16 10:34:41 mackowiak.no-ip.org systemd[1]: Failed to start The Apache HTTP Server.
mar 16 10:34:41 mackowiak.no-ip.org systemd[1]: Unit httpd.service entered failed state.
[root@mackowiak ~]# journalctl -xn
-- Logs begin at nie 2015-02-08 08:56:43 CET, end at pon 2015-03-16 10:34:42 CET. --
mar 16 10:34:41 mackowiak.no-ip.org systemd[1]: Starting The Apache HTTP Server...
mar 16 10:34:41 mackowiak.no-ip.org kernel: httpd[9028]: segfault at f ip b54c71a9 sp bfb5a8f0 error 6 in apc-mmap.so[b54b00
mar 16 10:34:41 mackowiak.no-ip.org systemd[1]: httpd.service: main process exited, code=killed, status=11/SEGV
mar 16 10:34:41 mackowiak.no-ip.org systemd[1]: Failed to start The Apache HTTP Server.
mar 16 10:34:41 mackowiak.no-ip.org systemd[1]: Unit httpd.service entered failed state.
And httpd log:
- Code: Select all
[root@mackowiak httpd]# cat error_log
[Mon Mar 16 10:47:00.428573 2015] [ssl:warn] [pid 9685] AH01906: RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Mon Mar 16 10:47:00.428722 2015] [ssl:warn] [pid 9685] AH01909: RSA certificate configured for mackowiak.ddns.net:443 does NOT include an ID which matches the server name
[Mon Mar 16 10:47:00.481727 2015] [auth_digest:notice] [pid 9685] AH01757: generating secret for digest authentication ...
[Mon Mar 16 10:47:00.483539 2015] [lbmethod_heartbeat:notice] [pid 9685] AH02282: No slotmem from mod_heartmonitor
[Mon Mar 16 10:47:00.484720 2015] [ssl:warn] [pid 9685] AH01906: RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Mon Mar 16 10:47:00.484754 2015] [ssl:warn] [pid 9685] AH01909: RSA certificate configured for mackowiak.ddns.net:443 does NOT include an ID which matches the server name
PHP Fatal error: PHP Startup: apc_mmap: mkstemp on /var/lib/php-apc/apc.I4jPHY failed: in Unknown on line 0
PHP Fatal error: PHP Startup: apc_fcntl_create: open(/var/lib/php-apc/.apc.HUmWOZ, O_RDWR|O_CREAT, 0666) failed: in Unknown on line 0
Please help me, becuse my http based OwnCloud is extrimely necessery for me!
[EDIT]
I wanted reinstall httpd but I got VERY strange result:
- Code: Select all
[root@mackowiak ~]# urpme httpd
unknown package: httpd
Last edited by mackowiakp on Mar 17th, ’15, 08:23, edited 1 time in total.
Linux is like wigwam. No Windows, no Gates but Apache inside
WARNING ! The administrator has the right to refuse to install WINDOWS, invoking the conscience clause
- mackowiakp
- Posts: 601
- Joined: May 23rd, ’13, 07:32
- Location: Gdynia, Poland
- Reply with quote
Re: Apache problem
by jkerr82508 » Mar 16th, ’15, 14:08
I’m no expert, but my apache server is still functioning correctly on my 64 bit mga4 system.
I’m not sure that it will help, but try
- Code: Select all
systemctl start httpd
The apache packages are named «apache»
- Code: Select all
$ rpm -qa | grep apache
apache-commons-lang-2.6-11.mga4
apache-doc-2.4.7-5.6.mga4
apache-commons-codec-1.8-1.mga4
apache-mod_userdir-2.4.7-5.6.mga4
apache-2.4.7-5.6.mga4
apache-commons-logging-1.1.3-2.mga4
It should not be necessary and is unlikely to help, but to re-install packages one would use:
- Code: Select all
urpmi --replacepkgs
You might want to check the updates that you have installed since the server was last functioning correctly to see if you can identify one that may have caused the problem:
http://advisories.mageia.org/
Jim
- jkerr82508
- Posts: 946
- Joined: Mar 26th, ’11, 01:34
- Location: Fife, Scotland
- Reply with quote
Re: Apache problem
by mackowiakp » Mar 16th, ’15, 14:15
So my outputs:
- Code: Select all
[root@mackowiak ~]# systemctl start httpd
Job for httpd.service failed. See 'systemctl status httpd.service' and 'journalctl -xn' for details.
- Code: Select all
[root@mackowiak ~]# rpm -qa | grep apache
[root@mackowiak ~]#
Totally strange because physically Apache is installed but not listed from CLI and MCC.
Linux is like wigwam. No Windows, no Gates but Apache inside
WARNING ! The administrator has the right to refuse to install WINDOWS, invoking the conscience clause
- mackowiakp
- Posts: 601
- Joined: May 23rd, ’13, 07:32
- Location: Gdynia, Poland
- Reply with quote
Re: Apache problem
by jkerr82508 » Mar 16th, ’15, 14:57
mackowiakp wrote:
- Code: Select all
[root@mackowiak ~]# rpm -qa | grep apache
[root@mackowiak ~]#Totally strange because physically Apache is installed but not listed from CLI and MCC.
Try rebuilding the rpm data base
- Code: Select all
# rm -f /var/lib/rpm/__db*
# rpm --rebuilddb
Jim
- jkerr82508
- Posts: 946
- Joined: Mar 26th, ’11, 01:34
- Location: Fife, Scotland
- Reply with quote
Re: Apache problem
by mackowiakp » Mar 16th, ’15, 15:42
I try:
- Code: Select all
# rm -f /var/lib/rpm/__db*
# rpm --rebuilddb
and the result is the same:
- Code: Select all
[root@mackowiak ~]# rpm -qa | grep apache
[root@mackowiak ~]#
Linux is like wigwam. No Windows, no Gates but Apache inside
WARNING ! The administrator has the right to refuse to install WINDOWS, invoking the conscience clause
- mackowiakp
- Posts: 601
- Joined: May 23rd, ’13, 07:32
- Location: Gdynia, Poland
- Reply with quote
Re: Apache problem
by jkerr82508 » Mar 16th, ’15, 17:27
Are you sure that apache is still installed? It seems that it may not be.
What is the result of
- Code: Select all
urpmi --test apache
I expect it to report that apache is installable, which would suggest that somehow apache may have been removed. I can’t think of any other explanation. Have you executed «urpme —auto-orphans» recently, or removed any other packages?
At this point re-installing apache may be appropriate, but we really need a more competent troubleshooter than I, to help find out how/why it was removed.
Jim
- jkerr82508
- Posts: 946
- Joined: Mar 26th, ’11, 01:34
- Location: Fife, Scotland
- Reply with quote
Re: Apache problem
by mackowiakp » Mar 16th, ’15, 17:40
Now I know. Problem is with apache-mod_php-3:5.5.22-1.2.mga4.i586. If I urpme this module, http server starts normaly. If I install it — crashes. Any idea why?
Linux is like wigwam. No Windows, no Gates but Apache inside
WARNING ! The administrator has the right to refuse to install WINDOWS, invoking the conscience clause
- mackowiakp
- Posts: 601
- Joined: May 23rd, ’13, 07:32
- Location: Gdynia, Poland
- Reply with quote
Re: Apache problem
by mackowiakp » Mar 16th, ’15, 18:05
Similar but not the same. It is Couldron bug. Is any workaround? How to live without PHP in Apache?
Linux is like wigwam. No Windows, no Gates but Apache inside
WARNING ! The administrator has the right to refuse to install WINDOWS, invoking the conscience clause
- mackowiakp
- Posts: 601
- Joined: May 23rd, ’13, 07:32
- Location: Gdynia, Poland
- Reply with quote
Re: Apache problem
by jkerr82508 » Mar 16th, ’15, 18:26
As stated in the whiteboard it also applies to mga4. Have you tried the work-around described regarding opcache?
Jim
- jkerr82508
- Posts: 946
- Joined: Mar 26th, ’11, 01:34
- Location: Fife, Scotland
- Reply with quote
Re: Apache problem
by mackowiakp » Mar 16th, ’15, 18:30
No. Any link how can I do it? Or is any previously working version of php_mod?
Linux is like wigwam. No Windows, no Gates but Apache inside
WARNING ! The administrator has the right to refuse to install WINDOWS, invoking the conscience clause
- mackowiakp
- Posts: 601
- Joined: May 23rd, ’13, 07:32
- Location: Gdynia, Poland
- Reply with quote
Re: Apache problem
by mackowiakp » Mar 16th, ’15, 18:34
But when I install owncloud, it still wants to install current repo php_mod. So my basic WEB app does not work. Tragedy….
Linux is like wigwam. No Windows, no Gates but Apache inside
WARNING ! The administrator has the right to refuse to install WINDOWS, invoking the conscience clause
- mackowiakp
- Posts: 601
- Joined: May 23rd, ’13, 07:32
- Location: Gdynia, Poland
- Reply with quote
Re: Apache problem
by jkerr82508 » Mar 16th, ’15, 18:41
I missed this line earlier:
mar 16 10:34:41 mackowiak.no-ip.org kernel: httpd[9028]: segfault at f ip b54c71a9 sp bfb5a8f0 error 6 in apc-mmap.so[b54b00
I’m not familiar with php-apc (which installs the file apc-mmap.so) but it seems to be related to caching:
APC was conceived of to provide a way of boosting the performance of PHP on
heavily loaded sites by providing a way for scripts to be cached in a compiled
state, so that the overhead of parsing and compiling can be almost completely
eliminated.
Jim
- jkerr82508
- Posts: 946
- Joined: Mar 26th, ’11, 01:34
- Location: Fife, Scotland
- Reply with quote
Re: Apache problem
by jkerr82508 » Mar 16th, ’15, 18:46
mackowiakp wrote:No. Any link how can I do it? Or is any previously working version of php_mod?
I assume that one would remove php-opcache and install php-fpm.
Jim
- jkerr82508
- Posts: 946
- Joined: Mar 26th, ’11, 01:34
- Location: Fife, Scotland
- Reply with quote
Re: Apache problem
by mackowiakp » Mar 16th, ’15, 18:50
After fresh instalation of Apache with php_mod I got such results in logs:
- Code: Select all
[root@mackowiak ~]# systemctl status httpd.service
httpd.service - The Apache HTTP Server
Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled)
Active: failed (Result: signal) since pon 2015-03-16 17:47:07 CET; 1min 19s ago
Process: 10103 ExecStop=/usr/bin/kill -WINCH ${MAINPID} (code=exited, status=0/SUCCESS)
Process: 10102 ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND (code=killed, signal=SEGV)
Main PID: 10102 (code=killed, signal=SEGV)
Status: "Total requests: 0; Current requests/sec: 0; Current traffic: 0 B/sec"mar 16 17:47:07 mackowiak.no-ip.org systemd[1]: Starting The Apache HTTP Server...
mar 16 17:47:07 mackowiak.no-ip.org systemd[1]: httpd.service: main process exited, code=killed, status=11/SEGV
mar 16 17:47:07 mackowiak.no-ip.org systemd[1]: Failed to start The Apache HTTP Server.
mar 16 17:47:07 mackowiak.no-ip.org systemd[1]: Unit httpd.service entered failed state.
[root@mackowiak ~]# journalctl -xn
-- Logs begin at nie 2015-02-08 08:56:43 CET, end at pon 2015-03-16 17:48:01 CET. --
mar 16 17:46:58 mackowiak.no-ip.org urpmi[10071]: transaction on / (remove=0, install=0, upgrade=1)
mar 16 17:46:59 mackowiak.no-ip.org perl[10071]: [RPM] apache-mod_php-3:5.5.22-1.2.mga4.i586 installed
mar 16 17:47:07 mackowiak.no-ip.org systemd[1]: Starting The Apache HTTP Server...
mar 16 17:47:07 mackowiak.no-ip.org kernel: httpd[10102]: segfault at f ip b553b1a9 sp bfc43e50 error 6 in apc-mma
mar 16 17:47:07 mackowiak.no-ip.org systemd[1]: httpd.service: main process exited, code=killed, status=11/SEGV
mar 16 17:47:07 mackowiak.no-ip.org systemd[1]: Failed to start The Apache HTTP Server.
mar 16 17:47:07 mackowiak.no-ip.org systemd[1]: Unit httpd.service entered failed state.
Any idea to get Apache working on M4?
Linux is like wigwam. No Windows, no Gates but Apache inside
WARNING ! The administrator has the right to refuse to install WINDOWS, invoking the conscience clause
- mackowiakp
- Posts: 601
- Joined: May 23rd, ’13, 07:32
- Location: Gdynia, Poland
- Reply with quote
Re: Apache problem
by lula » Mar 16th, ’15, 20:18
mackowiakp wrote:
- Code: Select all
PHP Fatal error: PHP Startup: apc_mmap: mkstemp on /var/lib/php-apc/apc.I4jPHY failed: in Unknown on line 0
Did you check if the directory/var/lib/php-apc exists and is writable for the webserver?
- lula
- Posts: 12
- Joined: Feb 10th, ’12, 21:32
- Reply with quote
Re: Apache problem
by mackowiakp » Mar 16th, ’15, 20:26
No such dir ….
Linux is like wigwam. No Windows, no Gates but Apache inside
WARNING ! The administrator has the right to refuse to install WINDOWS, invoking the conscience clause
- mackowiakp
- Posts: 601
- Joined: May 23rd, ’13, 07:32
- Location: Gdynia, Poland
- Reply with quote
Re: Apache problem
by lula » Mar 16th, ’15, 20:31
Just create it as root and chown it to the webserver’s user (don’t know by heart on Mageia, might be httpd or wwwrun, not quite sure). And by the way, the package containing the webserver is not httpd but apache.
- lula
- Posts: 12
- Joined: Feb 10th, ’12, 21:32
- Reply with quote
Re: Apache problem
by mackowiakp » Mar 16th, ’15, 20:44
I just urpme/urpmi php-apc
Linux is like wigwam. No Windows, no Gates but Apache inside
WARNING ! The administrator has the right to refuse to install WINDOWS, invoking the conscience clause
- mackowiakp
- Posts: 601
- Joined: May 23rd, ’13, 07:32
- Location: Gdynia, Poland
- Reply with quote
Re: Apache problem
by doktor5000 » Mar 16th, ’15, 21:39
Please mark the thread accordingly by editing the topic of the first post and prefix it by [SOLVED], thanks
-
doktor5000 - Posts: 17196
- Joined: Jun 4th, ’11, 10:10
- Location: Leipzig, Germany
-
- ICQ
- YIM
- Reply with quote
Re: Apache problem
by mackowiakp » Mar 16th, ’15, 21:47
At this moment is not solved yet. Tomorrow I will try to recover my OwnCloud instance. If it will work, the thread will be marked as solved.
Linux is like wigwam. No Windows, no Gates but Apache inside
WARNING ! The administrator has the right to refuse to install WINDOWS, invoking the conscience clause
- mackowiakp
- Posts: 601
- Joined: May 23rd, ’13, 07:32
- Location: Gdynia, Poland
- Reply with quote
Re: Apache problem
by doktor5000 » Mar 16th, ’15, 22:19
That’s a matter for a separate thread — this one is about apache itself not starting due to some PHP modules.
Does your apache start now or not?
-
doktor5000 - Posts: 17196
- Joined: Jun 4th, ’11, 10:10
- Location: Leipzig, Germany
-
- ICQ
- YIM
- Reply with quote
Re: Apache problem
by mackowiakp » Mar 17th, ’15, 08:23
Yep. You are right (as always ). So — SOLVED
Linux is like wigwam. No Windows, no Gates but Apache inside
WARNING ! The administrator has the right to refuse to install WINDOWS, invoking the conscience clause
- mackowiakp
- Posts: 601
- Joined: May 23rd, ’13, 07:32
- Location: Gdynia, Poland
Return to Basic support
Who is online
Users browsing this forum: No registered users and 1 guest
This question is left open because it was historically allowed, but it is not considered a good, on-topic question for this site and would be closed if asked today.
More info: https://unix.stackexchange.com/faq
I saw a t-shirt reading ‘anything you say gets piped to /dev/null’, not incredibly funny but amusing at least.
Does anyone else have any good one-liner *nix jokes?
- untagged
1
-
these are amusing
i love the way us geeks have the rather awesome sense of humour! fsk the win!
– user4806
Feb 16, 2011 at 9:39
Comments disabled on deleted / locked posts / reviews
|
32 Answers
Linux is like a wigwam. No windows, no gates, apache inside!
Linux comes from the community, Windows comes from a box.
View previous topic :: View next topic | |||||||||||||
Author | Message | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Kollin Veteran Joined: 25 Feb 2006 |
|
||||||||||||
Back to top |
|
||||||||||||
sebaro Veteran Joined: 03 Jul 2006 |
|
||||||||||||
Back to top |
|
||||||||||||
Kollin Veteran Joined: 25 Feb 2006 |
|
||||||||||||
Back to top |
|
||||||||||||
sebaro Veteran Joined: 03 Jul 2006 |
|
||||||||||||
Back to top |
|
||||||||||||
dol-sen Developer Joined: 30 Jun 2002 |
|
||||||||||||
Back to top |
|
||||||||||||
Kollin Veteran Joined: 25 Feb 2006 |
|
||||||||||||
Back to top |
|
||||||||||||
dol-sen Developer Joined: 30 Jun 2002 |
|
||||||||||||
Back to top |
|
||||||||||||
Kollin Veteran Joined: 25 Feb 2006 |
|
||||||||||||
Back to top |
|
||||||||||||
dol-sen Developer Joined: 30 Jun 2002 |
|
||||||||||||
Back to top |
|
||||||||||||
Kollin Veteran Joined: 25 Feb 2006 |
|
||||||||||||
Back to top |
|
||||||||||||
dol-sen Developer Joined: 30 Jun 2002 |
|
||||||||||||
Back to top |
|
||||||||||||
Kollin Veteran Joined: 25 Feb 2006 |
|
||||||||||||
Back to top |
|
||||||||||||
dol-sen Developer Joined: 30 Jun 2002 |
|
||||||||||||
Back to top |
|
||||||||||||
Kollin Veteran Joined: 25 Feb 2006 |
|
||||||||||||
Back to top |
|
||||||||||||
dol-sen Developer Joined: 30 Jun 2002 |
|
||||||||||||
Back to top |
|
||||||||||||
Kollin Veteran Joined: 25 Feb 2006 |
|
||||||||||||
Back to top |
|
||||||||||||
dol-sen Developer Joined: 30 Jun 2002 |
|
||||||||||||
Back to top |
|
||||||||||||
Kollin Veteran Joined: 25 Feb 2006 |
|
||||||||||||
Back to top |
|
||||||||||||
dol-sen Developer Joined: 30 Jun 2002 |
|
||||||||||||
Back to top |
|
||||||||||||
Kollin Veteran Joined: 25 Feb 2006 |
|
||||||||||||
Back to top |
|
||||||||||||
|
You cannot post new topics in this forum |