mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Use @HOSTNAME@ instead of hardcoded /bin/hostname.
This commit is contained in:
@ -77,9 +77,7 @@ then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# On IRIX hostname is in /usr/bsd so add this to the path
|
hostname=`@HOSTNAME@` # Install this too in the user table
|
||||||
PATH=$PATH:/usr/bsd
|
|
||||||
hostname=`hostname` # Install this too in the user table
|
|
||||||
|
|
||||||
# Check if hostname is valid
|
# Check if hostname is valid
|
||||||
if test "$IN_RPM" -eq 0 -a $force -eq 0
|
if test "$IN_RPM" -eq 0 -a $force -eq 0
|
||||||
@ -287,7 +285,7 @@ then
|
|||||||
echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !"
|
echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !"
|
||||||
echo "This is done with:"
|
echo "This is done with:"
|
||||||
echo "$bindir/mysqladmin -u root -p password 'new-password'"
|
echo "$bindir/mysqladmin -u root -p password 'new-password'"
|
||||||
echo "$bindir/mysqladmin -u root -h `hostname` -p password 'new-password'"
|
echo "$bindir/mysqladmin -u root -h $hostname -p password 'new-password'"
|
||||||
echo "See the manual for more instructions."
|
echo "See the manual for more instructions."
|
||||||
#
|
#
|
||||||
# Print message about upgrading unless we have created a new db table.
|
# Print message about upgrading unless we have created a new db table.
|
||||||
|
@ -30,10 +30,11 @@ else
|
|||||||
ledir=/usr/local/mysql/libexec
|
ledir=/usr/local/mysql/libexec
|
||||||
fi
|
fi
|
||||||
|
|
||||||
pidfile=$DATADIR/`/bin/hostname`.pid
|
hostname=`@HOSTNAME@`
|
||||||
log=$DATADIR/`/bin/hostname`.log
|
pidfile=$DATADIR/$hostname.pid
|
||||||
err=$DATADIR/`/bin/hostname`.err
|
log=$DATADIR/$hostname.log
|
||||||
lockfile=$DATADIR/`/bin/hostname`.lock
|
err=$DATADIR/$hostname.err
|
||||||
|
lockfile=$DATADIR/$hostname.lock
|
||||||
|
|
||||||
#
|
#
|
||||||
# If there exists an old pid file, check if the demon is already running
|
# If there exists an old pid file, check if the demon is already running
|
||||||
|
@ -56,11 +56,11 @@ else
|
|||||||
ledir=@libexecdir@
|
ledir=@libexecdir@
|
||||||
fi
|
fi
|
||||||
|
|
||||||
pid_file=$DATADIR/`/bin/hostname`.pid
|
pid_file=$DATADIR/`@HOSTNAME@`.pid
|
||||||
MYSQL_UNIX_PORT=@MYSQL_UNIX_ADDR@
|
MYSQL_UNIX_PORT=@MYSQL_UNIX_ADDR@
|
||||||
MYSQL_TCP_PORT=@MYSQL_TCP_PORT@
|
MYSQL_TCP_PORT=@MYSQL_TCP_PORT@
|
||||||
log=$DATADIR/`/bin/hostname`.log
|
log=$DATADIR/`@HOSTNAME@`.log
|
||||||
err_log=$DATADIR/`/bin/hostname`.err
|
err_log=$DATADIR/`@HOSTNAME@`.err
|
||||||
user=@MYSQLD_USER@
|
user=@MYSQLD_USER@
|
||||||
|
|
||||||
# Get first arguments from the my.cfg file, groups [mysqld] and [safe_mysqld]
|
# Get first arguments from the my.cfg file, groups [mysqld] and [safe_mysqld]
|
||||||
|
Reference in New Issue
Block a user