0

The following command will load Apache from 64 to 32 bit (Mac OS):

sudo arch -i386 /usr/sbin/httpd

What is the command if I want then to switch back to 64 bit mode?

1 Answers1

0

Just don't use the arch command to specify an architecture:

sudo /usr/sbin/httpd

(This assumes that you've killed off the previously running instance of httpd).

larsks
  • 43,623
  • 14
  • 121
  • 180