Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-11-2005 09:44 AM
тАО08-11-2005 09:44 AM
MySql
i setup mysql on Ux_hp 11
but when i reboot the machine i ve to start it manual
how i can make it start when the machine rebooted
many thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-11-2005 07:26 PM
тАО08-11-2005 07:26 PM
Re: MySql
does the machine stop at the console prompt or does it not get to multi user state?
greetings,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-17-2005 08:40 PM
тАО08-17-2005 08:40 PM
Re: MySql
http://sunsite.mff.cuni.cz/MIRRORS/ftp.mysql.com/doc/en/Binary_notes-HP-UX.html
on hpux the install should have created init.d and rc2.d entries for you. However it mentions /etc/init.d not /sbin/init.d so I don't know if that's a typo or a problem with the install.
I'd check for the following files: -
/sbin/init.d/mysql
/etc/init.d/mysql
/sbin/rc*.d/*mysql
/etc/rc.config.d/mysql
To see what exists.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-17-2005 09:21 PM
тАО08-17-2005 09:21 PM
Re: MySql
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-08-2006 08:56 PM
тАО10-08-2006 08:56 PM
Re: MySql
Mysql start/stop script will be included in /usr/local/mysql if you installed by default.
copy this file to start/stop script repository:
cp /usr/local/mysql/mysql.server /sbin/init.d/mysql
Then link them to start:
ln -s /sbin/init.d/mysql /sbin/rc3.d/S890mysql
link it to stop:
ln -s /sbin/init.d/mysql /sbin/rc1.d/K100mysql
now check by rebooting.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-08-2006 09:16 PM
тАО10-08-2006 09:16 PM
Re: MySql
You can configure a variable in
/etc/rc.config.d/mysql
MYSQLSTART=0 (no auto start)
MYSQLSTART=1 (do auto start)
Mysql start/stop script will be included in /usr/local/mysql if you installed by default.
copy this file to start/stop script repository:
cp /usr/local/mysql/mysql.server /sbin/init.d/mysql
Then link them to start:
ln -s
/sbin/init.d/mysql /sbin/rc3.d/Sxxxmysql
(The xxx denotes a sequence number , the order in which it starts)
link it to stop:
ln -s
/sbin/init.d/mysql /sbin/rc2.d/Kxxxmysql
(I would start it at runlevel 2 or 3├В┬░
Runlevel 1 is reserved for hardware like
networkcard etc..
now check first by running the script
/sbin/init.d/mysql start
/sbin/init.d/mysql stop
and then by rebooting