Table of Contents
Linux adds mysql system environment variable
There are two ways to add environment variables
Modify the mysql environment variable under linux
Home Database Mysql Tutorial How to add mysql system environment variables in Linux

How to add mysql system environment variables in Linux

May 30, 2023 pm 07:55 PM
mysql linux

    Linux adds mysql system environment variable

    After installing mysql yesterday, I added export PATH=/usr/local/ directly in the line above export PATH mysql/bin, and then found that all mysql commands can be used normally, I am very happy.

    I was confused the next day. After the Linux system started, I was always logged in. After entering my account and password, I could not log out. After searching on the Internet, I found that the code I added damaged the profile file, causing the system to fail to start. Entering the command line mode can be achieved by pressing ctrl alt F2, and then you can log in successfully after modification.

    So I still can’t modify the configuration according to the Windows method, I still need to check it.

    When using source code to install software under Linux, you can usually only use the software command in the software installation directory (except for installation using the yum command). This is too troublesome. We hope to use it globally and install the software The path is added to the system environment variables.

    There are two ways to add environment variables

    //1,使用export命令
    export PATH=$PATH:/opt/software/node-v8.9.3-linux-x64/bin/node
    
    //export使用方法为 export PATH=$PATH:路径1:路径2:路径n;$PATH为系统变量,表示之前所有设置的路径,如果不加则之前所有的路径都失效。所以必须加上。
    
    //2,修改配置文件/etc/profile
    vi /etc/profile
    
    在里面加入:export PATH=$PATH:/opt/software/node-v8.9.3-linux-x64/bin/node
    
    //如果是修改用户主目录下的.bash_profile,则添加的环境变量只对该用户有效,修改/etc/profile对所有用户都生效。也可以修改/etc/rc.local文件和/root/.bashrc文件。
    //修改好配置文件后执行source /etc/profile 或者 source /root/.bashrc使配置文件生效
    Copy after login

    After correcting the above problem, I found that the connection to mysql was blocked and there was a sock error.

    It turns out that mysqlserver is closed, so you need to start mysqlserver.

    • Give executable permissions chmod x /etc/init.d/mysqld

    • Add service chkconfig --add mysqld

    • Display service list chkconfig --list

    If you see the mysqld service and 3, 4, and 5 are all "on/open", it will be successful. If it is off/closed, type:

    chkconfig --level 345 mysqld on
    Copy after login

    Modify the mysql environment variable under linux

    Find the mysql execution path under linux

    eipdb2:~ # cd /eipdb2/mysql/bin/
    eipdb2:/eipdb2/mysql/bin # pwd
    /eipdb2/mysql/bin
    Copy after login

    Find /etc/profile

    Add the environment variable at the end

    export PATH=/eipdb2/mysql/bin:$PATH
    "/etc/profile" 419L, 9839C
    Copy after login

    source profile to make the environment variable take effect

    You can enter it in any directory in the future

    mysql -uroot -p password

    Login to mysql successfully

    The above is the detailed content of How to add mysql system environment variables in Linux. For more information, please follow other related articles on the PHP Chinese website!

    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    Video Face Swap

    Video Face Swap

    Swap faces in any video effortlessly with our completely free AI face swap tool!

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    MySQL's Role: Databases in Web Applications MySQL's Role: Databases in Web Applications Apr 17, 2025 am 12:23 AM

    The main role of MySQL in web applications is to store and manage data. 1.MySQL efficiently processes user information, product catalogs, transaction records and other data. 2. Through SQL query, developers can extract information from the database to generate dynamic content. 3.MySQL works based on the client-server model to ensure acceptable query speed.

    How to run java code in notepad How to run java code in notepad Apr 16, 2025 pm 07:39 PM

    Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

    How to switch Chinese mode with vscode How to switch Chinese mode with vscode Apr 15, 2025 pm 11:39 PM

    VS Code To switch Chinese mode: Open the settings interface (Windows/Linux: Ctrl, macOS: Cmd,) Search for "Editor: Language" settings Select "Chinese" in the drop-down menu Save settings and restart VS Code

    What is the main purpose of Linux? What is the main purpose of Linux? Apr 16, 2025 am 12:19 AM

    The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

    How to use VSCode How to use VSCode Apr 15, 2025 pm 11:21 PM

    Visual Studio Code (VSCode) is a cross-platform, open source and free code editor developed by Microsoft. It is known for its lightweight, scalability and support for a wide range of programming languages. To install VSCode, please visit the official website to download and run the installer. When using VSCode, you can create new projects, edit code, debug code, navigate projects, expand VSCode, and manage settings. VSCode is available for Windows, macOS, and Linux, supports multiple programming languages ​​and provides various extensions through Marketplace. Its advantages include lightweight, scalability, extensive language support, rich features and version

    How to type multiple lines of comments in vscode How to type multiple lines of comments in vscode Apr 15, 2025 pm 11:57 PM

    VS Code The methods of multi-line commenting are: 1. Shortcut keys (Ctrl K C or Cmd K C); 2. Manually add comment symbols (/ /); 3. Select menu ("Comment Block"); 4. Use extensions; 5. Recursive comments (/* /) and block comments ({/ and /}). Multi-line comments help improve code readability and maintainability, but overuse should be avoided.

    SQL and MySQL: Understanding the Relationship SQL and MySQL: Understanding the Relationship Apr 16, 2025 am 12:14 AM

    The relationship between SQL and MySQL is the relationship between standard languages ​​and specific implementations. 1.SQL is a standard language used to manage and operate relational databases, allowing data addition, deletion, modification and query. 2.MySQL is a specific database management system that uses SQL as its operating language and provides efficient data storage and management.

    How to set shortcut keys for sublime How to set shortcut keys for sublime Apr 16, 2025 am 09:15 AM

    To set the shortcut keys for Sublime Text, follow these steps: Open the shortcut key settings file Key Bindings - User. Add shortcut key settings using the format { "keys": ["key combination"], "command": "command" }. Save changes. Reload the shortcut key settings for the changes to take effect.

    See all articles