Installing mysql:sudo launchctl: command not found


 
Thread Tools Search this Thread
Top Forums Web Development Installing mysql:sudo launchctl: command not found
# 15  
Old 02-24-2014
Hi Again.

This came up again today. ::1.

In my /etc/hosts

Code:
## # Host Database 
# # localhost is used to configure the loopback interface 
# when the system is booting. 
Do not change this entry.
 ## 127.0.0.1 localhost 
255.255.255.255  broadcasthost 
::1 localhost

It says DO NOT CHANGE THIS ENTRY.

The code I am running is checking ip addresses and then blocking one.
The problem is that the language construct die(); does Not Kill the page.
The HTML 'welcome' text still shows.
It is again just a learning exercise so I am echoing and killing the page at certain points to see what shows up on the browser. The following code should die() and not show the word 'welcome' coded between HTML tags but it does show up.


Code:
Index.php

<?php 
require 'conf.inc.php';
foreach($ip_blocked as $ip){
    if ($ip==$ip_address){
     die();
}
}
?>
<h1> welcome</h1>

conf.inc.php

<?php 
$ip_address = $_SERVER['REMOTE_ADDR'];
$ip_blocked = array('127.0.0.1', '100.100.100.100');
?>


I added this code - someone suggested this and I was helpful although I do NOT fully understand how to interpret.


Code:
$ip_address = $_SERVER['REMOTE_ADDR']; 
$ip_blocked = array('100.100.100.100'); 
var_dump($ip_blocked); 
var_dump($ip_address);

Output: I typed this in.
Code:
array(2) { [0]=> string(9)  "127.0.0.1" [ 1] => string(15) "100.100.100.100" } string(3) "::1"  "::1"

see that ::1.... i had that question a while back.
when I use this code....
Code:
foreach($ip_blocked as $ip) { 
echo $ip.'<br>';

i get this output:
Code:
127.0.0.1 100.100.100.100

not ::1

I am confused.
Is this why I am running into trouble with my testing ?

Any clarification will be helpful.
Thanks again.
# 16  
Old 02-24-2014
OK, very short introduction to networking basics:

"IP" is the basis for all internet communication (hence the name, "Internet Protocol"). For some aspects of this protocol it is necessary that a host can communicate with itself, just like it would be another host (like you look at yourself in the mirror). For this there is a special address, which does not belong to a certain host at all, but to each host: 127.0.0.1. This is called the "loopback" address every host can use this to connect internally to itself.

So far, so good. Alas, the classical IP (which, in fact, is "IP v4") is getting to its limits in many ways. One of the aspects where IP (v4) is starting to experience problems is the address room: the classical 4-byte address is simply not providing enough numbering space to accomodate for all the devices needing to access the internet (which needs a unique IP address as a prerequisite). Therefore IP v6 (or "IPng - next generation"; don't ask what happened to v5) provides a much bigger address space. In this new address space "::1" is the new loopback address.

I suppose you need to either deactivate IP v6 somewhere and/or activate "IP v4 only" to get rid of the "::1", because most probably PHP, as a network-aware language, automatically translates "127.0.0.1" to "::1" back and forth.

I know this won't help you in finding the problem directly, but at least you should now know what to look for and why.

I hope this helps.

bakunin
# 17  
Old 02-24-2014
Thanks again bakunin !
Very helpful again.
You clarifications are definitely is filling in some of the pieces to this puzzle for me.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Error installing MySQL 8 on RHEL 7

My yum install command is failing. I first did yum clean all I even tried with localinstall. Below is the error output: yum install mysql-community-server*.rpm Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager This system is not registered with an... (8 Replies)
Discussion started by: mohtashims
8 Replies

2. Red Hat

Problem in installing mysql

Hi i am trying to install mysql rpm package on my linux machine but getting below error : warning: MySQL-embedded-5.5.28-1.rhel5.i386.rpm: V3 DSA signature: NOKEY, key ID 5072e1f5 error: Failed dependencies: MySQL-devel is needed by MySQL-embedded-5.5.28-1.rhel5.i386 ... (9 Replies)
Discussion started by: mukulverma2408
9 Replies

3. UNIX for Dummies Questions & Answers

launchctl loads app with icon (OS X)

We are deploying an app to our students that is running as a daemon. It keeps them from using certain software. The problem is that when we initially deploy it we don't want to require a restart. So we decided to use launchctl to load the daemon manually. When we do it this way, though, the... (4 Replies)
Discussion started by: nextyoyoma
4 Replies

4. Shell Programming and Scripting

ssh foo.com sudo command - Prompts for sudo password as visible text. Help?

I am writing a BASH script to update a webserver and then restart Apache. It looks basically like this: #!/bin/bash rsync /path/on/local/machine/ foo.com:path/on/remote/machine/ ssh foo.com sudo /etc/init.d/apache2 reloadrsync and ssh don't prompt for a password, because I have DSA encryption... (9 Replies)
Discussion started by: fluoborate
9 Replies

5. BSD

Installing FreeBsd. No usb device found

Hello, all. My english is not good. I have a problem installing FreeBsd. I have not CD-Roms, so i use program FlashBoot for convert iso-image to USB Device. After, I was beginning to install FreeBsd (Sorry my english) When it's time to choose an installation media, i select 9 USB:... (3 Replies)
Discussion started by: snet
3 Replies

6. BSD

Installing MySQL package

Hey all I'm having a little trouble installing a MySQL database. This is what I tried... export PKG_PATH=ftp://mirror.planetunix.net/pub/OpenBSD/4.9/packages/`machine -a` pkg_add -v mysql-server mysql-client and this is what I get Unknown element: @rcscript /etc/rc.d/mysqld in... (1 Reply)
Discussion started by: desreguard
1 Replies

7. Solaris

Error in installing the mysql-python-1.2.3.tar.gz

Hi, I followed the step written in README. It got some error message when I type " #python setup.py build" running build running build_py copying MySQLdb/release.py -> build/lib.solaris-2.11-i86pc-2.4/MySQLdb running build_ext building '_mysql' extension /usr/lib/python2.4/pycc -DNDEBUG... (2 Replies)
Discussion started by: AlexCheung
2 Replies

8. UNIX for Dummies Questions & Answers

sh: sudo: not found

As I am trying to log in, when input my user-name (root), when the password prompt, this is what I got (highlighted in red), before i can put in my password. Please tell my why this happened. console login: root Password: sh: sudo: not found Thank you. (0 Replies)
Discussion started by: iamnew2solaris
0 Replies

9. UNIX for Dummies Questions & Answers

Unable to use the Sudo command. "0509-130 Symbol resolution failed for sudo because:"

Hi! I'm very new to unix, so please keep that in mind with the level of language used if you choose to help :D Thanks! When attempting to use sudo on and AIX machine with oslevel 5.1.0.0, I get the following error: exec(): 0509-036 Cannot load program sudo because of the following errors:... (1 Reply)
Discussion started by: Chloe123
1 Replies

10. UNIX for Dummies Questions & Answers

Sudo: command not found

I am totally newbie. I try to login UNIX Solaris 10 through ssh command as user then i use sudo command to login as root: sudo su - but system give me an error sudo: not found. How can i fix this problem and install ssh services for my unix. (1 Reply)
Discussion started by: cthinh
1 Replies
Login or Register to Ask a Question